:root {
  --green: #243d2d;
  --green-2: #3f6148;
  --cream: #f7f1e8;
  --paper: #fffdfa;
  --ink: #171714;
  --muted: #6c665f;
  --line: #ded4c6;
  --gold: #746044;
  --wine: #a7070a;
  --wine-dark: #7f0508;
  --leaf: #8cc63e;
  --charcoal: #211d18;
  --shadow: 0 24px 70px rgba(23, 23, 20, 0.13);
  --soft-shadow: 0 14px 42px rgba(23, 23, 20, 0.09);
  --header-height: 62px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(167, 7, 10, 0.16);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wa-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b8f44, #067a38);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(23, 23, 20, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
  z-index: 90;
}

.wa-fab:hover {
  transform: translateY(-1px);
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  display: grid;
  max-width: 100vw;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "brand nav tools"
    "whats whats whats";
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  min-height: var(--header-height);
  padding: 8px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(116, 96, 68, 0.14);
  background: rgba(255, 253, 250, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.03);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.home-page .site-header:hover,
.home-page .site-header:focus-within {
  border-bottom-color: rgba(255, 253, 250, 0.16);
  background: rgba(18, 18, 16, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255, 253, 250, 0.05);
}

.home-page .site-header.is-open {
  border-bottom-color: rgba(116, 96, 68, 0.18);
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.03);
}

.home-page .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -82px;
  height: 96px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(18, 18, 16, 0.72), rgba(18, 18, 16, 0.58) 62%, rgba(18, 18, 16, 0));
  transition: opacity 180ms ease;
  z-index: 0;
}

.home-page .site-header:hover::after,
.home-page .site-header:focus-within::after {
  opacity: 1;
}

.home-page .site-header > * {
  position: relative;
  z-index: 1;
}
.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: clamp(176px, 15vw, 220px);
  height: auto;
}

.brand-logo-light {
  display: none !important;
}

.home-page .site-header:not(.is-open) .brand-logo-default {
  display: none;
}

.home-page .site-header:not(.is-open) .brand-logo-light {
  display: block !important;
  filter: drop-shadow(0 3px 16px rgba(23, 23, 20, 0.42));
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(7px, .9vw, 12px);
  min-width: 0;
  overflow: visible;
  white-space: nowrap;
  padding: 2px 6px;
  font-size: clamp(11px, .88vw, 13px);
  font-weight: 700;
}

/* Cursos profissionalizantes — página premium */
.professional-courses-page {
  background: #fbf6ee;
  color: #211817;
}

.prof-courses-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: end;
  min-height: 560px;
  padding: 150px max(5vw, 56px) 54px;
  background:
    linear-gradient(115deg, rgba(31, 11, 11, .88), rgba(105, 0, 15, .88)),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
  border-bottom: 1px solid rgba(203, 154, 63, .45);
}

.prof-courses-hero__content {
  max-width: 860px;
  padding: 36px 40px 38px;
  border: 1px solid rgba(203, 154, 63, .58);
  border-radius: 30px;
  background: rgba(255, 249, 239, .96);
  box-shadow: 0 24px 70px rgba(42, 16, 10, .22);
}

.prof-courses-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #8b0016;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.prof-courses-eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  background: currentColor;
}

.prof-courses-hero h1,
.prof-courses-section-head h2,
.prof-courses-value h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: #211817;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: .98;
}

.prof-courses-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 5.1vw, 82px);
}

.prof-courses-hero p:not(.prof-courses-eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: #62564d;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.48;
}

.prof-courses-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.prof-courses-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.prof-courses-btn--solid {
  background: #8b0016;
  color: #fff;
}

.prof-courses-btn--ghost {
  border: 1px solid rgba(139, 0, 22, .28);
  color: #8b0016;
  background: rgba(255, 255, 255, .62);
}

.prof-courses-schedule {
  padding: 26px 26px 22px;
  border: 1px solid rgba(203, 154, 63, .52);
  border-radius: 26px;
  background: linear-gradient(160deg, #4d0813, #8b0016 72%, #5f0714);
  color: #fff;
  box-shadow: 0 22px 60px rgba(30, 5, 8, .28);
}

.prof-courses-schedule > span {
  display: block;
  margin-bottom: 14px;
  color: #f2d48b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.prof-courses-schedule article {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.prof-courses-schedule strong,
.prof-courses-schedule small {
  display: block;
}

.prof-courses-schedule strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  line-height: 1.02;
}

.prof-courses-schedule small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.35;
}

.prof-courses-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-bottom: 1px solid rgba(115, 84, 53, .18);
  background: #fffaf2;
}

.prof-courses-proof article {
  min-height: 118px;
  padding: 24px max(2.8vw, 24px);
  border-right: 1px solid rgba(115, 84, 53, .18);
}

.prof-courses-proof article:last-child {
  border-right: 0;
}

.prof-courses-proof span {
  display: block;
  color: #9d7a45;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.prof-courses-proof strong {
  display: block;
  margin-top: 8px;
  color: #8b0016;
  font-size: 16px;
  line-height: 1.2;
}

.prof-courses-paths,
.prof-courses-value {
  padding: 74px max(5vw, 56px);
}

.prof-courses-section-head {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 420px);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.prof-courses-section-head h2,
.prof-courses-value h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.prof-courses-section-head::after {
  content: "Formações completas, práticas e conectadas à realidade da cozinha.";
  color: #62564d;
  font-size: 20px;
  line-height: 1.45;
}

.prof-courses-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 18px;
}

.prof-course-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(139, 0, 22, .16);
  border-radius: 28px;
  background: rgba(255, 252, 247, .86);
  box-shadow: 0 18px 45px rgba(54, 34, 22, .08);
}

.prof-course-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 24px solid rgba(203, 154, 63, .10);
  border-radius: 50%;
}

.prof-course-card--featured {
  min-height: 380px;
  border-color: rgba(203, 154, 63, .48);
  background: linear-gradient(145deg, #fffaf2, #f8ead8);
}

.prof-course-tag {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(139, 0, 22, .08);
  color: #8b0016;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.prof-course-card h3 {
  margin: 0;
  color: #8b0016;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.7vw, 43px);
  line-height: 1;
}

.prof-course-card p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #62564d;
  font-size: 17px;
  line-height: 1.48;
}

.prof-course-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 0, 22, .14);
  position: relative;
  z-index: 1;
}

.prof-course-card footer span {
  color: #7b6c5d;
  font-size: 14px;
  font-weight: 800;
}

.prof-course-card footer a {
  color: #8b0016;
  font-weight: 900;
  text-decoration: none;
}

.prof-courses-value {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  background:
    radial-gradient(circle at 14% 16%, rgba(203, 154, 63, .18), transparent 26%),
    linear-gradient(135deg, #8b0016, #3d0710);
  color: #fff;
}

.prof-courses-value .prof-courses-eyebrow,
.prof-courses-value h2 {
  color: #fff;
}

.prof-courses-value p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.55;
}

.prof-courses-value__items {
  display: grid;
  gap: 14px;
}

.prof-courses-value__items article {
  padding: 22px 24px;
  border: 1px solid rgba(242, 212, 139, .42);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
}

.prof-courses-value__items strong,
.prof-courses-value__items span {
  display: block;
}

.prof-courses-value__items strong {
  color: #f2d48b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.05;
}

.prof-courses-value__items span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .prof-courses-hero {
    grid-template-columns: 1fr;
    padding: 122px 26px 42px;
  }

  .prof-courses-schedule {
    max-width: 620px;
  }

  .prof-courses-grid,
  .prof-courses-value,
  .prof-courses-section-head {
    grid-template-columns: 1fr;
  }

  .prof-courses-section-head::after {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .prof-courses-hero {
    min-height: auto;
    padding: 96px 16px 26px;
  }

  .prof-courses-hero__content {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .prof-courses-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .prof-courses-actions,
  .prof-course-card footer {
    align-items: stretch;
    flex-direction: column;
  }

  .prof-courses-btn {
    width: 100%;
  }

  .prof-courses-proof {
    grid-template-columns: 1fr 1fr;
  }

  .prof-courses-proof article {
    min-height: 104px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(115, 84, 53, .18);
  }

  .prof-courses-paths,
  .prof-courses-value {
    padding: 46px 16px;
  }

  .prof-course-card,
  .prof-course-card--featured {
    min-height: 0;
    padding: 24px 22px;
  }
}

/* Cursos profissionalizantes — refinamento compacto com imagens */
.professional-courses-page {
  background: linear-gradient(180deg, #fbf6ee 0%, #fffaf2 56%, #fbf6ee 100%);
}

.prof-courses-hero {
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: 24px;
  align-items: center;
  min-height: 500px;
  padding: 124px max(5vw, 58px) 46px;
  background:
    radial-gradient(circle at 15% 22%, rgba(203, 154, 63, .20), transparent 24%),
    linear-gradient(120deg, #32070d 0%, #770013 54%, #2b1111 100%);
}

.prof-courses-hero__content {
  max-width: 720px;
  padding: 30px 34px 32px;
  border-radius: 24px;
}

.prof-courses-hero h1 {
  max-width: 660px;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.02;
}

.prof-courses-hero p:not(.prof-courses-eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(15px, 1.1vw, 18px);
}

.prof-courses-actions {
  margin-top: 22px;
}

.prof-courses-btn {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.prof-courses-hero__visual {
  position: relative;
  min-height: 350px;
}

.prof-courses-hero__visual img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 1px solid rgba(242, 212, 139, .58);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(15, 4, 6, .32);
}

.prof-courses-schedule {
  position: absolute;
  right: 18px;
  bottom: -22px;
  width: min(86%, 340px);
  padding: 18px 20px 16px;
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 250, 242, .96), rgba(245, 226, 202, .96));
  color: #221817;
}

.prof-courses-schedule > span {
  color: #8b0016;
  font-size: 11px;
}

.prof-courses-schedule article {
  padding: 11px 0;
  border-top: 1px solid rgba(139, 0, 22, .14);
}

.prof-courses-schedule strong {
  color: #211817;
  font-size: 21px;
}

.prof-courses-schedule small {
  color: #665a50;
  font-size: 13px;
}

.prof-courses-proof article {
  min-height: 88px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.prof-courses-proof span {
  font-size: clamp(26px, 2.3vw, 36px);
}

.prof-courses-proof strong {
  font-size: 14px;
}

.prof-courses-paths,
.prof-courses-value {
  padding: 54px max(5vw, 58px);
}

.prof-courses-section-head {
  grid-template-columns: minmax(0, 620px) minmax(240px, 360px);
  margin-bottom: 24px;
}

.prof-courses-section-head h2,
.prof-courses-value h2 {
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.05;
}

.prof-courses-section-head::after {
  font-size: 17px;
}

.prof-courses-grid {
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
}

.prof-course-card,
.prof-course-card--featured {
  min-height: 0;
  padding: 0;
  border-radius: 24px;
  background: #fffaf3;
}

.prof-course-card figure {
  height: 170px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: #eee0ce;
}

.prof-course-card figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prof-course-card > div {
  padding: 21px 22px 0;
}

.prof-course-tag {
  margin-bottom: 13px;
  padding: 7px 10px;
  background: #8b0016;
  color: #fff;
  font-size: 10px;
}

.prof-course-card h3 {
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.04;
}

.prof-course-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.42;
}

.prof-course-card footer {
  margin: 20px 22px 22px;
  padding-top: 14px;
}

.prof-courses-value {
  grid-template-columns: minmax(280px, 430px) minmax(0, 520px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  background:
    radial-gradient(circle at 88% 16%, rgba(242, 212, 139, .18), transparent 26%),
    linear-gradient(135deg, #3d0710, #8b0016 58%, #351212);
}

.prof-courses-value__photo {
  margin: 0;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(242, 212, 139, .42);
  border-radius: 26px;
}

.prof-courses-value__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prof-courses-value p {
  font-size: 16px;
}

.prof-courses-value__items article {
  padding: 18px 20px;
  border-radius: 18px;
}

.prof-courses-value__items strong {
  color: #fff;
  font-size: 23px;
}

.prof-courses-value__items span {
  font-size: 14px;
}

@media (max-width: 1100px) {
  .prof-courses-hero,
  .prof-courses-value,
  .prof-courses-section-head,
  .prof-courses-grid {
    grid-template-columns: 1fr;
  }

  .prof-courses-hero {
    padding: 110px 24px 38px;
  }

  .prof-courses-schedule {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -48px 18px 0 auto;
  }
}

@media (max-width: 760px) {
  .prof-courses-hero {
    padding: 92px 14px 28px;
  }

  .prof-courses-hero__content {
    padding: 23px 20px;
  }

  .prof-courses-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .prof-courses-hero__visual img {
    height: 280px;
  }

  .prof-courses-schedule {
    margin: -34px 10px 0;
  }

  .prof-courses-proof {
    grid-template-columns: 1fr 1fr;
  }

  .prof-courses-paths,
  .prof-courses-value {
    padding: 38px 14px;
  }

  .prof-course-card figure {
    height: 155px;
  }

  .prof-courses-value__photo {
    min-height: 240px;
  }
}

/* Cursos profissionalizantes — ajuste inspirado na pagina Chef: menos vinho liso, mais imagem real */
.prof-courses-hero {
  background:
    linear-gradient(90deg, rgba(38, 20, 16, .72) 0%, rgba(38, 20, 16, .48) 46%, rgba(251, 246, 238, .94) 100%),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
}

.prof-courses-hero__content {
  background: rgba(255, 250, 242, .97);
}

.prof-courses-hero__visual img {
  filter: saturate(.96) contrast(.98);
}

.prof-courses-proof {
  background: #fbf6ee;
}

.prof-courses-proof article {
  min-height: 78px;
}

.prof-course-card::after {
  display: none;
}

.prof-course-card {
  border-color: rgba(203, 154, 63, .30);
  box-shadow: 0 16px 36px rgba(47, 25, 16, .07);
}

.prof-course-card--featured {
  background: #fff8ed;
}

.prof-course-card figure {
  height: 150px;
}

.prof-course-tag {
  background: rgba(139, 0, 22, .10);
  color: #8b0016;
}

.prof-course-card h3 {
  color: #6f0715;
}

.prof-courses-value {
  background:
    linear-gradient(180deg, rgba(251, 246, 238, .92), rgba(251, 246, 238, .98)),
    url("assets/photos/cozinha-aula.jpg") center/cover;
  color: #211817;
}

.prof-courses-value .prof-courses-eyebrow {
  color: #8b0016;
}

.prof-courses-value h2 {
  color: #211817;
}

.prof-courses-value p {
  color: #5f544d;
}

.prof-courses-value__photo {
  border-color: rgba(203, 154, 63, .42);
  box-shadow: 0 18px 42px rgba(51, 29, 20, .12);
}

.prof-courses-value__items article {
  border-color: rgba(203, 154, 63, .34);
  background: rgba(255, 250, 242, .88);
  box-shadow: 0 14px 32px rgba(51, 29, 20, .08);
}

.prof-courses-value__items strong {
  color: #6f0715;
}

.prof-courses-value__items span {
  color: #5f544d;
}

@media (max-width: 760px) {
  .prof-course-card figure {
    height: 140px;
  }
}

.main-nav a {
  white-space: nowrap;
}

/* (No horizontal scrolling in desktop header; keeps mega-menu visible.) */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-item .nav-link {
  position: relative;
  color: #34352f;
  transition: color 180ms ease;
}

.home-page .nav-item .nav-link {
  color: rgba(255, 253, 250, 0.92);
  text-shadow: 0 1px 18px rgba(23, 23, 20, 0.45);
}

.home-page .site-header.is-open .nav-item .nav-link {
  color: #34352f;
  text-shadow: none;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: min(720px, calc(100vw - 80px));
  padding: 12px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 24px 70px rgba(23, 23, 20, 0.18);
  backdrop-filter: blur(14px);
  display: none;
  z-index: 60;
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  gap: 14px;
}

.mega-lead strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mega-lead span {
  display: block;
  margin-top: 8px;
  color: rgba(52, 53, 47, 0.74);
  font-size: 13.5px;
  line-height: 1.5;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mega-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  min-width: 0;
  border: 1px solid rgba(116, 96, 68, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 241, 232, 0.62));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mega-card:hover {
  transform: translateY(-1px);
  border-color: rgba(116, 96, 68, 0.3);
  box-shadow: 0 16px 40px rgba(23, 23, 20, 0.12);
}

.mega-card .thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  border: 1px solid rgba(255, 253, 250, 0.7);
  outline: 1px solid rgba(255, 253, 250, 0.7);
  outline-offset: -8px;
  background-size: cover;
  background-position: center;
}

.mega-card .title {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 900;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-card .desc {
  display: block;
  margin-top: 4px;
  color: rgba(52, 53, 47, 0.72);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
  min-width: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Show mega menu on hover/focus by default.
   Some laptops report hover:none when a touchscreen exists, even with a mouse.
   We only disable mega menus for coarse pointers (true touch). */
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  display: block;
}

@media (hover: none) and (pointer: coarse) {
  .mega-menu {
    display: none !important;
  }
}

.main-nav a {
  position: relative;
  color: #34352f;
  transition: color 180ms ease;
}

.home-page .main-nav a {
  color: rgba(255, 253, 250, 0.92);
  text-shadow: 0 1px 18px rgba(23, 23, 20, 0.45);
}

.home-page .site-header.is-open .main-nav a {
  color: #34352f;
  text-shadow: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--wine);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.header-tools {
  grid-area: tools;
  justify-content: flex-end;
}

.header-whatsapp {
  grid-area: whats;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.header-whatsapp .solid-btn {
  width: auto;
}

.whatsapp-btn {
  width: 44px;
  min-width: 44px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cert-link {
  white-space: nowrap;
}

@media (max-width: 1480px) and (min-width: 1061px) {
  .home-page .brand img {
    width: 190px;
  }

  .home-page .ghost-btn {
    min-height: 36px;
    padding-inline: 15px;
    font-size: 12px;
  }
}

@media (min-width: 1061px) {
  .home-page .site-header {
    grid-template-areas:
      "brand nav whats"
      "brand nav whats";
  }

  .home-page .header-tools {
    position: absolute;
    top: 82px;
    right: 138px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    transform: none;
  }

  .home-page .header-tools .ghost-btn,
  .home-page .header-tools .portal-toggle {
    min-width: 148px;
    padding-inline: 16px;
    justify-content: center;
    text-align: center;
  }

  .home-page .header-whatsapp {
    position: absolute;
    top: 78px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
  }

  .home-page .header-whatsapp .whatsapp-btn {
    order: 1;
    width: 46px;
    min-width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 253, 250, .34);
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 34px rgba(23, 23, 20, .28);
  }

  .home-page .site-header:not(.is-open) .header-whatsapp .whatsapp-btn,
  .home-page .site-header .header-whatsapp .whatsapp-btn {
    border: 1px solid rgba(255, 253, 250, .34);
    background: #25d366;
    color: #fff;
    box-shadow: 0 14px 34px rgba(23, 23, 20, .28);
  }

  .home-page .header-whatsapp .lang-switch {
    order: 2;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
    border-color: rgba(255, 253, 250, .28);
    background: rgba(23, 23, 20, .18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .home-page .header-whatsapp .lang-link {
    min-width: 32px;
    height: 28px;
    padding: 0 7px;
    color: rgba(255, 253, 250, .86);
  }

  .home-page .header-whatsapp .lang-link.is-active {
    background: rgba(255, 253, 250, .20);
    color: #fff;
  }
}

.site-header .cert-link,
.site-header .student-portal {
  display: none;
}

.home-page .site-header .cert-link {
  display: inline-flex;
}

.home-page .site-header .student-portal {
  display: block;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: rgba(23, 23, 20, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.lang-link:hover {
  color: var(--wine);
}

.lang-link.is-active {
  background: rgba(116, 96, 68, 0.12);
  color: var(--ink);
}

.content-band.dark .lang-switch {
  border-color: rgba(251, 247, 239, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.content-band.dark .lang-link {
  color: rgba(251, 247, 239, 0.76);
}

.content-band.dark .lang-link.is-active {
  background: rgba(251, 247, 239, 0.12);
  color: var(--cream);
}

.student-portal {
  position: relative;
}

.portal-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.student-portal.is-open .portal-panel {
  display: grid;
  gap: 12px;
}

.portal-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 28px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
  transform: rotate(45deg);
}

.portal-panel label,
.portal-panel a,
.portal-panel button {
  position: relative;
}

.portal-panel a {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  padding: 10px 14px;
  color: rgba(23, 23, 20, 0.78);
  font-weight: 850;
}

.solid-btn,
.ghost-btn,
.light-btn,
.text-btn {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.solid-btn,
.ghost-btn,
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 250, 0.08);
}

.solid-btn {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--cream);
  box-shadow: 0 13px 30px rgba(167, 7, 10, 0.18), inset 0 0 0 1px rgba(255, 253, 250, 0.12);
}

.home-page .site-header:not(.is-open) .solid-btn {
  border: 1px solid rgba(255, 253, 250, 0.58);
  background: rgba(23, 23, 20, 0.2);
  color: var(--cream);
  box-shadow: none;
}

.home-page .site-header:not(.is-open) .ghost-btn {
  border-color: rgba(255, 253, 250, 0.48);
  background: rgba(23, 23, 20, 0.12);
  color: var(--cream);
}

.solid-btn:hover {
  background: linear-gradient(135deg, #b40a0e, var(--wine-dark));
  transform: translateY(-1px);
}

.ghost-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
}

.ghost-btn:hover {
  border-color: rgba(167, 7, 10, 0.34);
  background: rgba(167, 7, 10, 0.045);
  color: var(--wine);
}

.light-btn {
  background: var(--cream);
  color: var(--wine);
}

.light-btn:hover {
  background: #fffdfa;
  transform: translateY(-1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(140, 198, 62, 0.42);
  outline-offset: 3px;
}

.large {
  min-height: 48px;
  padding-inline: 22px;
}

.text-btn {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: var(--wine);
  line-height: 1.35;
}

.text-btn::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-btn:hover {
  color: var(--wine-dark);
}

.text-btn:hover::after {
  width: 34px;
}

.is-disabled-link {
  cursor: not-allowed;
  opacity: 0.52;
  filter: grayscale(0.2);
  pointer-events: none;
  user-select: none;
}

.solid-btn.is-disabled-link:hover,
.ghost-btn.is-disabled-link:hover,
.text-btn.is-disabled-link:hover {
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  height: 100svh;
  min-height: min(520px, 100svh);
  max-height: 100svh;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.page-hero {
  display: grid;
  min-height: clamp(400px, 66svh, 560px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(42px, 6vw, 72px);
  background:
    radial-gradient(circle at 82% 14%, rgba(140, 198, 62, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 241, 232, 0.98)),
    var(--cream);
}

.page-hero .eyebrow {
  color: var(--wine);
}

.page-hero p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.page-hero h1 {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.page-hero .balanced-title {
  max-width: 560px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.12;
}

.page-hero-image {
  min-height: clamp(280px, 42svh, 390px);
  border-radius: 6px;
  background: center/cover;
  box-shadow: 0 24px 64px rgba(23, 23, 20, 0.14);
  outline: 1px solid rgba(255, 253, 250, 0.58);
  outline-offset: -10px;
}

.voucher-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(23, 23, 20, 0.14);
  outline: none;
}

.voucher-hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.voucher-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(183, 14, 22, 0.16), transparent 28%),
    linear-gradient(180deg, #fff8ed 0%, #f1ddcb 100%);
}

.voucher-premium-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: center;
  padding-top: clamp(18px, 2.2vw, 28px);
  padding-bottom: clamp(18px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 20% 84%, rgba(151, 4, 12, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 237, 0.98), rgba(242, 224, 207, 0.96));
}

.voucher-premium-top {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(240px, 0.5fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: center;
}

.voucher-premium-copy {
  max-width: 620px;
}

.voucher-premium-copy .eyebrow,
.voucher-premium-section .eyebrow {
  color: var(--wine);
}

.voucher-premium-copy h1 {
  max-width: 610px;
  margin-top: 10px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.voucher-premium-copy p {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
}

.voucher-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.voucher-premium-note {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(16px, 2vw, 22px);
  color: #fffdfa;
  background:
    linear-gradient(135deg, rgba(30, 14, 10, 0.76), rgba(126, 11, 18, 0.82)),
    radial-gradient(circle at 95% 12%, rgba(214, 164, 77, 0.28), transparent 26%);
  box-shadow: 0 16px 42px rgba(35, 20, 16, 0.14);
}

.voucher-premium-note::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f3cf85;
}

.voucher-premium-note span {
  display: block;
  margin-bottom: 8px;
  color: #f7d690;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voucher-premium-note strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.08;
}

.voucher-experience-wall {
  display: grid;
  grid-template-columns: minmax(130px, 0.52fr) minmax(520px, 1.9fr) minmax(130px, 0.52fr);
  gap: clamp(12px, 1.6vw, 18px);
  align-items: center;
  margin-top: clamp(18px, 2.2vw, 28px);
}

.voucher-tile {
  position: relative;
  min-height: clamp(140px, 16vw, 190px);
  overflow: hidden;
  border-radius: 22px;
  padding: clamp(14px, 1.6vw, 20px);
  color: #fffdfa;
  background:
    linear-gradient(180deg, rgba(35, 20, 16, 0.05), rgba(35, 20, 16, 0.74)),
    radial-gradient(circle at 70% 18%, rgba(244, 208, 133, 0.34), transparent 22%),
    linear-gradient(135deg, #960912, #2a0f0c);
  box-shadow: 0 12px 32px rgba(35, 20, 16, 0.1);
  opacity: 0.86;
}

.voucher-tile::after {
  content: "";
  position: absolute;
  inset: auto -12% -24% auto;
  width: 120px;
  height: 120px;
  border: 24px solid rgba(255, 244, 221, 0.1);
  border-radius: 50%;
}

.voucher-tile-small {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.voucher-tile-dark {
  background:
    linear-gradient(180deg, rgba(35, 20, 16, 0.05), rgba(35, 20, 16, 0.76)),
    radial-gradient(circle at 36% 18%, rgba(214, 164, 77, 0.34), transparent 24%),
    linear-gradient(135deg, #66411f, #1d0c09);
}

.voucher-tile span,
.voucher-tile figcaption span {
  position: relative;
  z-index: 1;
  display: block;
  color: #f7d690;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.voucher-tile strong,
.voucher-tile figcaption strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1;
}

.voucher-tile p {
  position: relative;
  z-index: 1;
  max-width: 230px;
  margin-top: 10px;
  color: rgba(255, 253, 250, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.voucher-tile-main {
  height: clamp(360px, 42svh, 500px);
  min-height: 0;
  margin: 0;
  padding: 0;
  background: #4a120f;
  opacity: 1;
  box-shadow: 0 30px 70px rgba(35, 20, 16, 0.24);
}

.voucher-tile-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(23, 10, 8, 0), rgba(23, 10, 8, 0.46));
}

.voucher-tile-main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transform: scale(1.01);
}

.voucher-tile-main figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 2.4vw, 30px);
  right: clamp(20px, 2.4vw, 30px);
  bottom: clamp(18px, 2.4vw, 28px);
}

.voucher-premium-section {
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(34px, 4vw, 54px);
  background: rgba(255, 248, 237, 0.78);
}

.voucher-grid-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  margin-bottom: 26px;
}

.voucher-grid-heading h2 {
  max-width: 720px;
  margin-top: 12px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.voucher-grid-heading > p {
  max-width: 340px;
  margin: 50px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
}

.voucher-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.voucher-steps article {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 18px;
  padding: 24px 22px;
  background:
    radial-gradient(circle at 92% 100%, rgba(116, 96, 68, 0.08) 0 26%, transparent 27%),
    rgba(255, 253, 250, 0.82);
  border: 1px solid rgba(142, 17, 23, 0.13);
  border-left: 5px solid var(--wine);
  box-shadow: none;
}

.voucher-steps article:nth-child(even) {
  border-left-color: #746044;
}

.voucher-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: #fff;
  background: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.voucher-steps article:nth-child(even) span {
  background: #b07d1a;
}

.voucher-steps h3 {
  margin-bottom: 8px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1;
}

.voucher-steps p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.page-hero-video-demo {
  position: relative;
  min-height: clamp(280px, 42svh, 390px);
  overflow: hidden;
  border-radius: 6px;
  background: #171714;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(255, 253, 250, 0.58);
  outline-offset: -10px;
}

.page-hero-video-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 33, 28, 0.02), rgba(24, 33, 28, 0.48)),
    radial-gradient(circle at 70% 20%, rgba(141, 198, 63, 0.14), transparent 26%);
}

.page-hero-video-demo span {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroReel 15s infinite;
}

.page-hero-video-demo span:nth-child(2) {
  animation-delay: 3s;
}

.page-hero-video-demo span:nth-child(3) {
  animation-delay: 6s;
}

.page-hero-video-demo span:nth-child(4) {
  animation-delay: 9s;
}

.page-hero-video-demo span:nth-child(5) {
  animation-delay: 12s;
}

.hero-video-label {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(255, 253, 250, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  background: rgba(24, 33, 28, 0.72);
  color: var(--cream);
}

.hero-video-label strong,
.hero-video-label small {
  display: block;
}

.hero-video-label strong {
  font-size: 14px;
}

.hero-video-label small {
  color: rgba(251, 247, 239, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.page-nav.stacked-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  align-items: center;
  gap: 16px 26px;
  max-width: 760px;
}

.page-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(127, 5, 8, 0.78);
  border-radius: 12px;
  padding: 8px 18px 13px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.9));
  box-shadow: 0 7px 18px rgba(23, 23, 20, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.page-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%);
}

.page-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--wine);
  background: rgba(167, 7, 10, 0.06);
  color: var(--wine);
  box-shadow: 0 11px 24px rgba(23, 23, 20, 0.1);
}

.page-nav a:focus-visible {
  outline: 3px solid rgba(167, 7, 10, 0.2);
  outline-offset: 3px;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: start;
}

.detail-section > div:first-child {
  max-width: 560px;
}

.detail-image {
  grid-column: 1 / 2;
  width: min(100%, 520px);
  margin: -10px 0 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(23, 23, 20, 0.11);
  outline: 1px solid rgba(255, 253, 250, 0.75);
  outline-offset: -10px;
}

.detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thematic-experience > div:first-child {
  display: grid;
  align-content: start;
}

.thematic-experience > div:first-child p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.thematic-experience .detail-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.thematic-experience .detail-image img {
  aspect-ratio: 5 / 4;
}

.career-training-image {
  margin-top: 22px;
}

.kids-learning .kids-learning-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.kids-learning .kids-learning-image img {
  aspect-ratio: 16 / 10;
}

.b2b-objectives .b2b-objectives-image {
  width: min(100%, 440px);
  margin-top: 26px;
}

.b2b-objectives .b2b-objectives-image img {
  aspect-ratio: 16 / 10;
}

.detail-list {
  display: grid;
  gap: 16px;
}

.detail-item {
  display: grid;
  gap: 9px;
  padding: clamp(22px, 2.8vw, 28px);
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.62)),
    var(--paper);
  box-shadow: 0 9px 24px rgba(23, 23, 20, 0.045);
}

.detail-item h3 {
  color: var(--ink);
}

.detail-item p {
  color: var(--muted);
  line-height: 1.66;
}

.method-section {
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 34px);
}

.method-section > div:first-child {
  position: static;
  max-width: 920px;
}

.method-section .detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-section .detail-item {
  min-height: 196px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 18px 18px;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(24, 33, 28, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: rgba(116, 96, 68, 0.8);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
}

.questions-page main {
  background: linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
}

.questions-hero {
  min-height: 520px;
}

.questions-page .questions-hero .page-hero-image {
  min-height: 420px;
  border-radius: 18px;
}

.questions-overview,
.questions-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.questions-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.questions-overview article {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(127, 5, 8, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 50px rgba(45, 22, 14, .09);
}

.questions-overview span,
.questions-panel .faq-item summary::before {
  display: inline-grid;
  width: 36px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #99090f;
  color: #fffaf2;
  font-weight: 900;
  font-size: .78rem;
}

.questions-overview h2 {
  margin: 18px 0 8px;
  color: #2f1d16;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.questions-overview p {
  margin: 0;
  color: #66564d;
  line-height: 1.62;
}

.questions-section {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.45fr);
  gap: 34px;
  padding: 58px 0;
}

.questions-section + .questions-section {
  border-top: 1px solid rgba(127, 5, 8, .1);
}

.questions-section-muted {
  width: 100%;
  max-width: none;
  padding: 58px max(24px, calc((100% - 1180px) / 2));
  background: rgba(255, 255, 255, .52);
  border-top: 1px solid rgba(127, 5, 8, .08);
  border-bottom: 1px solid rgba(127, 5, 8, .08);
}

.questions-section-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.questions-section-heading h2 {
  margin: 12px 0 10px;
  color: #2f1d16;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: .98;
}

.questions-section-heading p:not(.eyebrow) {
  margin: 0;
  color: #66564d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.questions-panel {
  display: grid;
  gap: 12px;
}

.questions-panel .faq-item {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(127, 5, 8, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 40px rgba(45, 22, 14, .07);
}

.questions-panel .faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  color: #2f1d16;
  font-size: 1.05rem;
}

.questions-panel .faq-item summary::before {
  content: "?";
  flex: 0 0 auto;
}

.questions-panel .faq-item summary::after {
  content: "+";
  float: none;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(127, 5, 8, .16);
  border-radius: 999px;
  color: #99090f;
  font-size: 1.1rem;
}

.questions-panel .faq-item[open] summary {
  border-bottom: 1px solid rgba(127, 5, 8, .1);
}

.questions-panel .faq-item[open] summary::after {
  content: "-";
  background: #99090f;
  color: #fffaf2;
}

.questions-panel .faq-item p {
  margin: 0;
  padding: 18px 22px 22px 72px;
  color: #5c514c;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .questions-overview,
  .questions-section {
    width: min(100% - 28px, 680px);
  }

  .questions-overview {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .questions-overview article {
    min-height: 0;
  }

  .questions-section,
  .questions-section-muted {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 38px 14px;
  }

  .questions-section {
    padding-left: 0;
    padding-right: 0;
  }

  .questions-section-heading {
    position: static;
  }

  .questions-section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .questions-panel .faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 18px 16px;
  }

  .questions-panel .faq-item p {
    padding: 16px 16px 20px;
  }
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.info-strip span {
  position: relative;
  display: grid;
  min-height: 78px;
  align-content: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(127, 5, 8, 0.78);
  border-radius: 14px;
  padding: 27px 14px 13px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(247, 241, 232, 0.94));
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.2;
  box-shadow:
    inset 0 0 0 3px rgba(255, 253, 250, 0.94),
    inset 0 0 0 4px rgba(127, 5, 8, 0.28),
    0 12px 28px rgba(23, 23, 20, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-strip span::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--wine);
  transform: translateX(-50%);
}

.info-strip span:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow:
    inset 0 0 0 3px rgba(255, 253, 250, 0.96),
    inset 0 0 0 4px rgba(127, 5, 8, 0.36),
    0 17px 34px rgba(23, 23, 20, 0.11);
}

.page-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(33, 29, 24, 0.98), rgba(36, 61, 45, 0.96)),
    var(--charcoal);
  color: var(--cream);
}

.page-form-section p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(251, 247, 239, 0.74);
  font-size: 18px;
}

.course-path {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(245, 238, 227, 0.98), rgba(255, 253, 250, 0.96)),
    var(--cream);
}

.course-path-copy {
  display: grid;
  align-content: center;
}

.course-path-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.course-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.course-path-grid article {
  display: grid;
  gap: 10px;
  min-height: 176px;
  padding: clamp(22px, 2.5vw, 28px);
  border: 1px solid rgba(116, 96, 68, 0.22);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 12px 34px rgba(24, 33, 28, 0.065);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-path-grid article:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 18px 46px rgba(24, 33, 28, 0.09);
  transform: translateY(-2px);
}

.course-path-grid span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
}

.course-path-grid h3,
.course-path-grid p {
  margin: 0;
}

.course-path-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.portal-hero {
  background: var(--charcoal);
  color: var(--cream);
}

.portal-hero p:not(.eyebrow) {
  color: rgba(251, 247, 239, 0.74);
}

.portal-summary {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: center;
  border: 1px solid rgba(251, 247, 239, 0.16);
  border-radius: 6px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(rgba(24, 33, 28, 0.78), rgba(24, 33, 28, 0.78)),
    url("assets/photos/cozinha-qf.png") center/cover;
  box-shadow: var(--shadow);
}

.portal-summary h2 {
  color: var(--cream);
}

.portal-action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.portal-shell {
  display: grid;
  gap: 20px;
}

.portal-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shortcut-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.shortcut-pill:hover {
  border-color: rgba(116, 96, 68, 0.34);
  background: var(--paper);
  transform: translateY(-1px);
}

.shortcut-pill.is-whatsapp {
  background: #1d6b4f;
  border-color: #1d6b4f;
  color: var(--cream);
}

.portal-frame-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 18px 46px rgba(24, 33, 28, 0.08);
}

.portal-frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.portal-frame-head h3 {
  margin: 0;
}

.portal-sync-frame {
  width: 100%;
  min-height: 1800px;
  border: 1px solid rgba(116, 96, 68, 0.16);
  border-radius: 6px;
  background: #fffdfa;
}

.portal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.security-note {
  margin-top: 14px !important;
  padding: 13px 15px;
  border-left: 3px solid var(--leaf);
  background: rgba(251, 247, 239, 0.08);
  color: var(--cream) !important;
  font-size: 15px !important;
  font-weight: 800;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, 0.5fr) auto auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(24, 33, 28, 0.08);
}

.admin-toolbar strong,
.admin-toolbar span {
  display: block;
}

.admin-toolbar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.admin-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(24, 33, 28, 0.08);
}

.comparison-table {
  border-color: rgba(116, 96, 68, 0.18);
  box-shadow: 0 16px 42px rgba(24, 33, 28, 0.055);
  background: rgba(255, 253, 250, 0.94);
}

.comparison-table .admin-row {
  grid-template-columns: minmax(120px, 0.9fr) minmax(140px, 1fr) minmax(180px, 1.25fr) minmax(180px, 1.25fr) minmax(90px, 0.55fr);
}

.comparison-table .admin-row:not(:has(span:nth-child(5))) {
  grid-template-columns: minmax(130px, 0.9fr) minmax(180px, 1fr) minmax(220px, 1.25fr) minmax(120px, 0.7fr);
}

.comparison-table .admin-head {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.98), rgba(239, 228, 215, 0.98));
  color: var(--gold);
  border-bottom: 1px solid rgba(116, 96, 68, 0.18);
}

.comparison-table .admin-row:not(.admin-head) span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(180px, 1.35fr) minmax(120px, 0.9fr) minmax(100px, 0.7fr) minmax(100px, 0.7fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-row:has(input[type="checkbox"]) {
  grid-template-columns: 42px minmax(180px, 1.45fr) minmax(130px, 0.9fr) minmax(110px, 0.72fr) minmax(100px, 0.68fr);
}

.admin-row a {
  color: var(--wine);
  font-weight: 900;
}

.admin-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.admin-row:last-child {
  border-bottom: 0;
}

.admin-head {
  background: var(--charcoal);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

main > .content-band .admin-row:not(.admin-head) {
  background: rgba(255, 253, 250, 0.88);
}

main > .content-band .admin-row:not(.admin-head):hover {
  background: rgba(247, 241, 232, 0.76);
}

.admin-row span:first-child {
  overflow-wrap: anywhere;
}

.status-ok,
.status-review,
.status-error {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.status-ok {
  background: rgba(140, 198, 62, 0.18);
  color: var(--green);
}

.status-review {
  background: rgba(111, 90, 63, 0.16);
  color: var(--gold);
}

.status-error {
  background: rgba(167, 7, 10, 0.12);
  color: var(--wine);
}

.permission-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(4, minmax(120px, 0.55fr));
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}

.permission-grid > * {
  min-height: 56px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.permission-grid > *:nth-child(5n) {
  border-right: 0;
}

.permission-head {
  background: var(--charcoal);
  color: var(--cream);
}

.permission-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.permission-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.profile-grid article {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.profile-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(24, 33, 28, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid article > div {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.media-grid article:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.12);
  transform: translateY(-2px);
}

.media-grid p {
  color: var(--muted);
  font-size: 14px;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 18px;
}

.search-preview,
.share-preview {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.search-preview {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.search-preview span,
.share-preview span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.search-preview h3 {
  color: #1a0dab;
}

.search-preview p,
.share-preview p {
  color: var(--muted);
  font-size: 14px;
}

.share-preview {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.share-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.share-preview div {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.metric-grid,
.report-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-grid article,
.report-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 247, 239, 0.66)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.metric-grid article {
  padding: 24px;
}

.metric-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  line-height: 0.95;
}

.metric-grid p,
.report-card p {
  color: var(--muted);
  font-size: 14px;
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 76px) clamp(20px, 3vw, 34px);
  background: linear-gradient(180deg, #fffdfa, #f7f1e8);
}

.signature-strip article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 136px;
  padding: clamp(20px, 2.6vw, 30px);
  background: rgba(255, 253, 250, 0.96);
  border: 2px solid rgba(120, 33, 36, 0.66);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(23, 23, 20, 0.05);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.signature-strip article:hover {
  background: var(--paper);
  border-color: rgba(120, 33, 36, 0.9);
  box-shadow: 0 20px 42px rgba(23, 23, 20, 0.09);
  transform: translateY(-2px);
}

.signature-strip span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
}

.signature-strip strong {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.06;
}

.signature-strip p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.signature-strip.six-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.signature-strip.six-up article {
  min-height: 178px;
  border-width: 2px;
  text-align: center;
  justify-items: center;
}

.signature-strip.six-up h3,
.signature-strip.six-up strong,
.signature-strip.six-up p {
  max-width: 92%;
}

.signature-strip small {
  display: block;
  margin-top: 8px;
  color: rgba(91, 82, 71, 0.74);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.report-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-card {
  padding: 26px;
}

.bar-list {
  display: grid;
  gap: 16px;
}

.bar-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
}

.bar-list span {
  color: var(--muted);
  font-weight: 800;
}

.bar-list strong {
  color: var(--gold);
}

.bar-list i {
  grid-column: 1 / -1;
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--cream);
}

.bar-list i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wine), var(--leaf));
}

.message-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.message-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.message-grid p {
  color: var(--muted);
  font-size: 14px;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1.2fr);
  padding: clamp(20px, 5vw, 70px);
  gap: 24px;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(24, 33, 28, 0.94), rgba(24, 33, 28, 0.74)),
    url("assets/photos/fachada.png") center/cover;
}

.admin-login-card,
.admin-login-aside {
  display: grid;
  align-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
}

.admin-login-card {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
}

.admin-login-card p:not(.eyebrow) {
  color: var(--muted);
}

.admin-login-card form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.login-brand img {
  width: min(260px, 70vw);
}

.admin-login-aside {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 247, 239, 0.18);
}

.admin-login-aside h2 {
  color: var(--cream);
}

.admin-login-aside .detail-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 247, 239, 0.18);
}

.admin-login-aside .detail-item p {
  color: rgba(251, 247, 239, 0.72);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 23, 20, 0.92), rgba(36, 61, 45, 0.64), rgba(167, 7, 10, 0.1));
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  backdrop-filter: saturate(0.92) blur(0.6px);
  background:
    radial-gradient(circle at 72% 42%, rgba(167, 7, 10, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(23, 23, 20, 0.82) 0%, rgba(23, 23, 20, 0.54) 42%, rgba(23, 23, 20, 0.18) 100%),
    linear-gradient(180deg, rgba(23, 23, 20, 0.24), rgba(23, 23, 20, 0.58));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url("assets/photos/chef-fogo.jpg") center/cover;
  z-index: 1;
  pointer-events: none;
  /* Fill the whole hero width. This may crop vertically, but avoids "vertical video" look. */
  object-fit: cover;
  object-position: 50% 28%;
}

/* (Intentionally no blurred background layer; video occupies full width.) */

.hero-demo-reel,
.hero-demo-reel span {
  position: absolute;
  inset: 0;
}

.hero-demo-reel {
  z-index: 0;
  overflow: hidden;
  background: #171714;
}

.hero-demo-reel span {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroReel 25s infinite;
}

.hero-demo-reel span:nth-child(2) {
  animation-delay: 5s;
}

.hero-demo-reel span:nth-child(3) {
  animation-delay: 10s;
}

.hero-demo-reel span:nth-child(4) {
  animation-delay: 15s;
}

.hero-demo-reel span:nth-child(5) {
  animation-delay: 20s;
}

html.hero-video-ready .hero-demo-reel {
  display: none;
}

@keyframes heroReel {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  5% {
    opacity: 1;
  }

  24% {
    opacity: 1;
  }

  30% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(34px, 5vw, 68px)) clamp(20px, 7vw, 88px) clamp(42px, 7vw, 82px);
  color: var(--cream);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: rgba(251, 247, 239, 0.86);
  text-shadow: 0 2px 18px rgba(23, 23, 20, 0.44);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  max-width: 740px;
  font-size: clamp(40px, 4.7vw, 64px);
}

.hero-content h1 {
  max-width: 820px;
  text-shadow: 0 18px 44px rgba(23, 23, 20, 0.45);
}

.hero-statement {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1180px, 92vw);
  min-height: clamp(180px, 25vw, 330px);
  margin-top: 0;
}

.hero-line,
.hero-words span {
  grid-area: 1 / 1;
  margin: 0;
  color: rgba(255, 253, 250, 0.94);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 14px 36px rgba(23, 23, 20, 0.38);
  will-change: opacity, filter, transform, letter-spacing;
}

.hero-words {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  width: 100%;
}

.hero-words span {
  grid-area: 1 / 1;
  display: block;
  max-width: 1120px;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(48px, 6.8vw, 104px);
  opacity: 0;
}

.hero-words span:nth-child(1) {
  animation: heroWordOne 28s infinite both;
}

.hero-words span:nth-child(2) {
  animation: heroWordTwo 28s infinite both;
}

.hero-words span:nth-child(3) {
  animation: heroWordThree 28s infinite both;
}

.hero-line-secondary {
  max-width: 980px;
  color: rgba(255, 253, 250, 0.88);
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.12;
  animation: heroSecondaryPhrase 28s infinite both;
}

.hero-line-final {
  display: grid;
  gap: 8px;
  max-width: 980px;
  color: rgba(255, 253, 250, 0.84);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.1;
  animation: heroFinalPhrase 28s infinite both;
}

.hero-line-final span {
  display: block;
}

@keyframes heroWordOne {
  0%,
  10% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(10px) scale(0.995);
  }

  15%,
  23% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  30%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroWordTwo {
  0%,
  32% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px) scale(0.995);
  }

  38%,
  47% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  54%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroWordThree {
  0%,
  56% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px) scale(0.995);
  }

  62%,
  70% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0;
    transform: translateY(0) scale(1);
  }

  76%,
  100% {
    opacity: 0;
    filter: blur(0);
    letter-spacing: 0.01em;
    transform: translateY(-12px) scale(0.995);
  }
}

@keyframes heroSecondaryPhrase {
  0%,
  76% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(10px);
  }

  80%,
  86% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  89%,
  100% {
    opacity: 0;
    filter: blur(0);
    transform: translateY(-10px);
  }
}

@keyframes heroFinalPhrase {
  0%,
  90% {
    opacity: 0;
    transform: translateY(10px);
  }

  94%,
  99.5% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

h2 {
  max-width: 820px;
  font-size: clamp(29px, 3vw, 40px);
}

h3 {
  margin: 0;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.24;
  font-weight: 800;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.hero-content > p:not(.eyebrow):not(.hero-line-secondary) {
  max-width: 620px;
  margin: 20px 0 30px;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.68;
  color: rgba(251, 247, 239, 0.86);
  text-shadow: 0 10px 28px rgba(23, 23, 20, 0.42);
}

section {
  padding: clamp(58px, 8vw, 98px) clamp(20px, 6vw, 76px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.section-heading.split {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.section-heading.split > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 560px;
}

.legal-note {
  margin-top: 14px;
  max-width: 560px;
  color: rgba(108, 102, 95, 0.82);
  font-size: 13.5px;
  line-height: 1.6;
}

.section-heading.split > .section-callout {
  max-width: clamp(320px, 30vw, 380px);
  padding: 20px 22px;
  border-left: 3px solid var(--wine);
  border-radius: 0 6px 6px 0;
  background: rgba(167, 7, 10, 0.055);
  color: var(--wine);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 850;
  line-height: 1.6;
  text-align: left;
  text-align-last: auto;
  hyphens: none;
}

.section-heading > p:not(.eyebrow),
.section-heading.split > p,
.course-path-copy p:not(.eyebrow),
.detail-section > div:first-child p:not(.eyebrow),
.page-form-section p:not(.eyebrow) {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.intent-section {
  background:
    linear-gradient(180deg, #fffdfa 0%, #f5eee3 100%);
}

.intent-grid,
.card-grid,
.trio-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.intent-card,
.course-card,
.trio-grid article,
.card-grid.compact article,
.job-card,
.outline-card {
  min-height: 210px;
  padding: clamp(22px, 2.6vw, 28px);
  border: 2px solid rgba(120, 33, 36, 0.66);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.97);
  box-shadow: 0 14px 34px rgba(24, 33, 28, 0.05);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

/* Smaller cards + company logo placeholder for the career grid. */
.job-card {
  position: relative;
  min-height: 118px;
  padding: 16px;
}

.job-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.92), rgba(247, 241, 232, 0.62));
  box-shadow: 0 10px 24px rgba(23, 23, 20, 0.06);
}

.intent-card {
  position: relative;
  overflow: hidden;
}

.intent-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--leaf));
  opacity: 0.86;
}

.course-card,
.trio-grid article,
.card-grid.compact article,
.job-card {
  align-content: start;
  background: rgba(255, 253, 250, 0.97);
}

.intent-card:hover,
.course-card:hover,
.trio-grid article:hover,
.card-grid.compact article:hover,
.job-card:hover,
.outline-card:hover {
  border-color: rgba(120, 33, 36, 0.88);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.09);
  transform: translateY(-2px);
}

.intent-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intent-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.intent-card p,
.course-card p,
.trio-grid p,
.card-grid.compact p,
.job-card p {
  color: var(--muted);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.job-card h3,
.job-card p {
  max-width: calc(100% - 66px);
}

.job-card .tag {
  margin-top: 6px;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
}

.job-card h3 {
  font-size: 17px;
  line-height: 1.22;
}

.job-card p {
  font-size: 13.5px;
  line-height: 1.5;
}

.course-card .course-start {
  margin-top: 4px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.intent-card h3,
.course-card h3,
.trio-grid h3,
.card-grid.compact h3,
.job-card h3 {
  max-width: 92%;
  overflow-wrap: anywhere;
}

.content-band {
  background: var(--paper);
}

.content-band.light {
  background: #f5eee3;
}

.content-band.dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(140, 198, 62, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(33, 29, 24, 0.98), rgba(36, 61, 45, 0.94)),
    var(--charcoal);
  color: var(--cream);
}

.content-band.dark .section-heading p,
.content-band.dark article p {
  color: rgba(251, 247, 239, 0.76);
}

.content-band.dark article {
  border-color: rgba(251, 247, 239, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.content-band.dark .tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--leaf);
}

.content-band.dark .text-btn {
  color: var(--leaf);
}

.content-band.dark .text-btn:hover {
  color: var(--cream);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.content-band.dark .section-cta {
  justify-content: flex-start;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.compact {
  gap: 16px;
  margin-bottom: 30px;
}

.card-grid.compact article {
  display: grid;
  align-content: start;
  gap: 16px;
}

.card-grid.compact h3 {
  margin-top: 0;
}

.course-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-card .text-btn,
.card-grid.compact .text-btn,
.trio-grid .text-btn,
.job-card .text-btn {
  margin-top: auto;
}

.kids-agenda-grid .course-card {
  display: grid;
  grid-template-rows: auto auto minmax(54px, auto) 24px 1fr auto;
  align-content: stretch;
}

.kids-agenda-grid .course-start {
  align-self: start;
  margin-top: 0;
  color: var(--wine);
}

.kids-agenda-grid .course-start.is-empty {
  visibility: hidden;
}

.kids-agenda-grid .text-btn {
  align-self: end;
  margin-top: 0;
}

.tag {
  width: fit-content;
  min-height: 28px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(116, 96, 68, 0.12);
  background: rgba(116, 96, 68, 0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.tag.accent {
  border-color: rgba(167, 7, 10, 0.14);
  background: rgba(167, 7, 10, 0.08);
  color: var(--wine);
}

.tag.hot {
  border-color: rgba(167, 7, 10, 0.18);
  background: rgba(167, 7, 10, 0.06);
  color: rgba(167, 7, 10, 0.92);
}

.tag.premium {
  border-color: rgba(167, 7, 10, 0.26);
  background: linear-gradient(135deg, rgba(24, 33, 28, 0.96), rgba(36, 30, 26, 0.92));
  color: rgba(255, 253, 250, 0.94);
  box-shadow: 0 10px 24px rgba(23, 23, 20, 0.12), inset 0 0 0 1px rgba(255, 253, 250, 0.08);
}

.course-card.is-premium {
  border-color: rgba(167, 7, 10, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.86)),
    radial-gradient(circle at 84% 10%, rgba(141, 198, 63, 0.14), transparent 36%);
  box-shadow: 0 28px 72px rgba(24, 33, 28, 0.16);
  position: relative;
  overflow: hidden;
}

.course-card.is-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 7, 10, 0.96), rgba(141, 198, 63, 0.72));
  opacity: 0.9;
}

.course-card.is-premium h3 {
  color: var(--wine);
}

.course-highlight {
  display: block;
  margin-top: -4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.course-demand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(141, 198, 63, 0.3);
  background: rgba(141, 198, 63, 0.14);
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.trio-grid article {
  display: grid;
  gap: 14px;
}

.feature-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 5vw, 58px);
  align-items: start;
  background:
    linear-gradient(rgba(255, 253, 250, 0.96), rgba(255, 253, 250, 0.95)),
    url("assets/photos/mesa-pratos.jpg") center/cover;
}

.feature-copy {
  position: sticky;
  top: 118px;
}

.feature-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.agenda-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: stretch;
  background: var(--paper);
}

.agenda-feature-card {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(33, 29, 24, 0.96), rgba(36, 61, 45, 0.94)),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.agenda-feature-card .tag {
  border-color: rgba(251, 247, 239, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.agenda-feature-card .tag.accent {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.agenda-feature-card h2 {
  color: var(--cream);
}

.agenda-feature-card p {
  color: rgba(251, 247, 239, 0.76);
}

.agenda-meta,
.agenda-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agenda-meta span,
.agenda-filters span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.agenda-feature-card .agenda-meta span {
  border-color: rgba(251, 247, 239, 0.22);
  color: rgba(251, 247, 239, 0.82);
}

.agenda-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.agenda-calendar div {
  display: grid;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
  box-shadow: 0 12px 30px rgba(24, 33, 28, 0.06);
}

.agenda-calendar strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  line-height: 0.95;
}

.agenda-calendar span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-calendar small,
.agenda-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.agenda-card .tag {
  margin-bottom: 4px;
}

.agenda-card p {
  color: var(--muted);
  font-weight: 700;
}

.agenda-card .class-price {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.agenda-filters {
  margin-bottom: 22px;
}

.agenda-filters .is-active {
  border-color: var(--wine);
  background: rgba(167, 7, 10, 0.08);
  color: var(--wine);
}

.certificate-band {
  background: var(--cream);
}

.certificate-preview {
  display: grid;
  gap: 20px;
  max-width: 900px;
  min-height: 520px;
  margin: 0 auto;
  padding: 56px;
  border: 12px solid rgba(111, 90, 63, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.94)),
    url("assets/photos/cozinha-bancadas.jpg") center/cover;
  box-shadow: var(--shadow);
  text-align: center;
}

.certificate-preview img {
  max-width: 260px;
  margin: 0 auto 20px;
}

.certificate-preview h2 {
  color: var(--wine);
  font-size: clamp(42px, 6vw, 82px);
}

.certificate-preview p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.certificate-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  color: var(--gold);
  font-weight: 900;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.flow-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.flow-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 900;
}

.flow-grid p {
  color: var(--muted);
}

.agenda-list {
  display: grid;
  gap: 16px;
}

.agenda-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 150px;
  padding: 28px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(251, 247, 239, 0.76)),
    var(--paper);
  box-shadow: 0 14px 38px rgba(23, 23, 20, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.agenda-card h3 {
  margin: 12px 0 6px;
}

.agenda-card:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 22px 52px rgba(24, 33, 28, 0.1);
  transform: translateY(-2px);
}

.school-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: center;
}

.home-page .school-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.94));
}

.login-panel,
.contact-form,
.modal-card {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(247, 241, 232, 0.7)),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(23, 23, 20, 0.1);
}

label {
  display: grid;
  gap: 9px;
  color: #34352f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(116, 96, 68, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(108, 102, 95, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: rgba(167, 7, 10, 0.58);
  box-shadow: 0 0 0 3px rgba(167, 7, 10, 0.1);
  background: #fffdfa;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.human-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid rgba(116, 96, 68, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.human-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--wine);
}

.spam-trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.content-protected main,
.content-protected header,
.content-protected footer {
  -webkit-user-select: none;
  user-select: none;
}

.content-protected input,
.content-protected textarea,
.content-protected select {
  -webkit-user-select: text;
  user-select: text;
}

@media print {
  .content-protected main,
  .content-protected header,
  .content-protected footer {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .party-quote {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .quote-result {
    grid-column: 1;
  }

  .quote-result {
    position: static;
    grid-row: auto;
  }

  .quote-grid,
  .quote-options {
    grid-template-columns: 1fr;
  }
}

.class-detail-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.72);
}

.class-detail-box h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.class-detail-box p,
.class-detail-box small {
  color: var(--muted);
  line-height: 1.6;
}

.class-detail-box small {
  font-weight: 800;
}

.login-panel a {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.jobs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outline-card {
  display: grid;
  align-content: center;
  justify-items: start;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

.outline-card::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--wine);
}

.school-image {
  min-height: 520px;
  border-radius: 6px;
  background:
    linear-gradient(rgba(22, 59, 43, 0.1), rgba(22, 59, 43, 0.1)),
    url("assets/photos/cozinha-qf.png") center/cover;
}

.gallery-section {
  background:
    linear-gradient(rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.95)),
    url("assets/photos/fachada.png") center/cover;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: clamp(210px, 20vw, 270px);
  gap: 16px;
  margin-top: 38px;
}

.photo-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.14);
}

.photo-gallery figure:first-child {
  grid-row: span 2;
}

.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease, filter 420ms ease;
}

.photo-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.02);
}

.photo-gallery figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 11px 13px;
  border-radius: 6px;
  background: rgba(24, 33, 28, 0.78);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
}

.video-option-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 18px;
  margin-top: 36px;
}

.video-option {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(116, 96, 68, 0.15);
  border-radius: 6px;
  padding: 14px;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.1);
}

.video-option.recommended {
  background: #fffdfa;
}

.video-frame {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 33, 28, 0.08), rgba(24, 33, 28, 0.42));
}

.video-frame-wide {
  min-height: 290px;
}

.play-badge,
.duration-badge {
  position: absolute;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #fffdfa;
  font-weight: 900;
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  background: rgba(161, 24, 31, 0.9);
  box-shadow: 0 16px 34px rgba(24, 33, 28, 0.24);
}

.duration-badge {
  right: 12px;
  bottom: 12px;
  min-height: 30px;
  padding: 0 11px;
  background: rgba(24, 33, 28, 0.72);
  font-size: 12px;
}

.video-option h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
}

.video-option p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.school-section p:not(.eyebrow) {
  margin: 22px 0;
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--leaf);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-section {
  background: var(--cream);
}

.contact-section p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(4, minmax(150px, 0.55fr));
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(48px, 6vw, 76px) clamp(20px, 6vw, 80px);
  background:
    radial-gradient(circle at 12% 0%, rgba(140, 198, 62, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(116, 96, 68, 0.2), transparent 30%),
    linear-gradient(135deg, #171714, #211d18 54%, #16251c);
  color: var(--cream);
}

.site-footer img {
  display: block;
  width: min(280px, 60vw);
  height: auto;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer span {
  color: rgba(251, 247, 239, 0.68);
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav span {
  color: rgba(251, 247, 239, 0.68);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.footer-optin {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-optin label {
  display: grid;
  gap: 8px;
  color: rgba(251, 247, 239, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-optin input[type="tel"] {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(251, 247, 239, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font: inherit;
}

.footer-optin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.footer-optin-row .solid-btn {
  min-height: 44px;
  align-self: end;
}

.footer-optin input[type="tel"]::placeholder {
  color: rgba(251, 247, 239, 0.5);
}

.footer-consent {
  grid-auto-flow: column;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(251, 247, 239, 0.64);
  font-size: 12.5px;
  font-weight: 600;
}

.footer-consent input {
  margin-top: 2px;
}

.footer-optin .solid-btn {
  width: auto;
  justify-self: start;
  padding: 10px 14px;
  font-size: 13px;
}

.footer-optin-feedback {
  margin: 0;
  color: rgba(140, 198, 62, 0.9);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.4;
}

.site-footer a {
  color: rgba(251, 247, 239, 0.76);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer a.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer a.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: rgba(251, 247, 239, 0.78);
}

.site-footer a.social-link span {
  color: rgba(251, 247, 239, 0.76);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
}

.site-footer a:hover {
  color: var(--leaf);
  transform: translateX(2px);
}

.footer-brand {
  max-width: 420px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  border-top: 1px solid rgba(251, 247, 239, 0.16);
}

.modal {
  width: min(680px, calc(100vw - 32px));
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(24, 33, 28, 0.6);
  backdrop-filter: blur(4px);
}

.modal-card {
  position: relative;
  max-height: 88vh;
  overflow: auto;
}

.modal-card h2 {
  font-size: 38px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
}

.acceptance {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
}

.acceptance input {
  width: auto;
  margin-top: 4px;
}

.success-message {
  padding: 14px;
  border-radius: 6px;
  background: rgba(22, 59, 43, 0.1);
  color: var(--green);
  font-weight: 700;
}

.form-feedback {
  margin: 0;
  padding: 14px;
  border-radius: 6px;
  background: rgba(140, 198, 62, 0.14);
  color: var(--green);
  font-weight: 800;
}

.validation-result {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(140, 198, 62, 0.45);
  border-radius: 6px;
  background: rgba(140, 198, 62, 0.12);
}

.validation-result h3,
.validation-result p {
  margin: 0;
}

.validation-result[hidden] {
  display: none !important;
}

.certificate-validation-page {
  background:
    radial-gradient(circle at 84% 6%, rgba(201, 154, 69, 0.16), transparent 28%),
    linear-gradient(135deg, #211b17 0%, #430611 34%, var(--wine) 100%);
}

.certificate-validation-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
  min-height: calc(100vh - var(--header-height));
  padding: calc(var(--header-height) + 24px) clamp(22px, 6vw, 82px) 58px;
}

.certificate-validation-copy {
  color: var(--cream);
}

.certificate-validation-copy .eyebrow {
  color: #fffdf7 !important;
}

.certificate-card-head .eyebrow {
  color: #f1cd7e;
}

.certificate-validation-copy .eyebrow::before,
.certificate-card-head .eyebrow::before {
  background: currentColor;
}

.certificate-validation-copy h1 {
  max-width: 680px;
  color: var(--cream);
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 0.96;
}

.certificate-validation-copy > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(251, 247, 239, 0.86);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.52;
}

.certificate-validation-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(201, 154, 69, 0.52);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 69, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.99), rgba(251, 247, 239, 0.95));
  box-shadow: 0 28px 80px rgba(20, 6, 10, 0.28);
}

.certificate-validation-card::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 154, 69, 0.24);
  border-radius: 21px;
  content: "";
  pointer-events: none;
}

.certificate-validation-card > * {
  position: relative;
  z-index: 1;
}

.certificate-card-head {
  display: grid;
  gap: 6px;
}

.certificate-card-head h2 {
  color: var(--wine);
  font-size: clamp(27px, 2.6vw, 34px);
  line-height: 1;
}

.certificate-card-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.certificate-validation-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.certificate-validation-card input {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(116, 19, 38, 0.18);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.certificate-validation-card .solid-btn {
  min-height: 52px;
}

.certificate-lgpd-note {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(201, 154, 69, 0.11);
  color: #62554d;
  font-size: 12.5px;
  line-height: 1.4;
}

.certificate-lgpd-note strong {
  color: var(--wine);
}

.validation-result.certificate-result {
  gap: 12px;
  margin-top: 4px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.certificate-result.is-valid {
  border-color: rgba(22, 98, 58, 0.32);
}

.certificate-result.is-missing {
  border-color: rgba(116, 19, 38, 0.26);
}

.certificate-status {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-result.is-valid .certificate-status {
  background: rgba(22, 98, 58, 0.12);
  color: var(--green);
}

.certificate-result.is-missing .certificate-status {
  background: rgba(116, 19, 38, 0.1);
  color: var(--wine);
}

.certificate-result h3 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
}

.certificate-result dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.certificate-result dl div {
  padding: 12px;
  border: 1px solid rgba(116, 19, 38, 0.09);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.82);
}

.certificate-result dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.certificate-result dd {
  margin: 0;
  color: var(--wine);
  font-weight: 900;
}

.certificate-result.is-missing p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.certificate-whatsapp {
  width: fit-content;
  padding: 11px 15px;
  border-radius: 999px;
  background: #138c46;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .certificate-validation-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .certificate-validation-card {
    max-width: 620px;
  }
}

.party-quote {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 18px;
  align-items: start;
}

.quote-panel,
.quote-result {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.68)),
    var(--paper);
  box-shadow: 0 16px 40px rgba(23, 23, 20, 0.08);
}

.quote-panel {
  grid-column: 1;
}

.quote-result {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  grid-column: 2;
  grid-row: 1 / span 7;
  background: var(--charcoal);
  color: var(--cream);
}

.quote-result h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(34px, 5vw, 58px);
}

.quote-result p {
  margin: 0;
}

.quote-section-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.quote-section-heading > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.quote-section-heading h3,
.quote-section-heading p,
.quote-subgroup h4 {
  margin: 0;
}

.quote-section-heading p,
.quote-help {
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quote-grid-contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-grid-contact label:last-child {
  grid-column: 1 / -1;
}

.quote-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quote-options label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 96, 68, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.quote-options-cards label {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.quote-options-cards label:hover {
  transform: translateY(-2px);
  border-color: rgba(131, 36, 51, 0.35);
  box-shadow: 0 14px 24px rgba(23, 23, 20, 0.08);
}

.quote-options-cards label:has(input:checked) {
  border-color: rgba(131, 36, 51, 0.5);
  background: rgba(131, 36, 51, 0.08);
  box-shadow: 0 14px 24px rgba(131, 36, 51, 0.14);
}

.quote-options input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--wine);
}

.quote-subgroup {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.quote-subgroup.is-disabled {
  display: none;
}

.quote-help {
  font-size: 12px;
  font-weight: 800;
}

.quote-help.is-error {
  color: var(--wine);
}

.quote-lines {
  display: grid;
  gap: 10px;
}

.quote-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quote-meta article,
.quote-contact-preview {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.06);
}

.quote-meta strong,
.quote-contact-preview strong {
  color: var(--cream);
  font-size: 14px;
}

.quote-meta span,
.quote-contact-preview p {
  margin: 0;
  color: rgba(255, 253, 250, 0.72);
  font-size: 12px;
}

.quote-note {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 253, 250, 0.12);
  border-radius: 6px;
  background: rgba(255, 253, 250, 0.06);
}

.quote-note strong,
.quote-note p {
  margin: 0;
}

.quote-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 253, 250, 0.16);
  color: rgba(255, 253, 250, 0.82);
  font-size: 13px;
}

.quote-line strong {
  color: var(--cream);
  white-space: nowrap;
}

.quote-actions {
  display: grid;
  gap: 12px;
}

.quote-actions .human-check {
  background: rgba(255, 253, 250, 0.08);
  border-color: rgba(255, 253, 250, 0.18);
  color: var(--cream);
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(251, 247, 239, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: rgba(24, 33, 28, 0.96);
  color: var(--cream);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
}

.cookie-notice p {
  margin: 0;
  color: rgba(251, 247, 239, 0.72);
}

.cookie-notice a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1380px) {
  .site-header {
    column-gap: 12px;
    row-gap: 8px;
    padding-inline: clamp(14px, 2.6vw, 34px);
  }

  .main-nav {
    gap: 8px;
    font-size: 12.25px;
  }

  .brand img {
    width: clamp(152px, 11.2vw, 194px);
  }

  .header-actions {
    gap: 7px;
  }
}

@media (max-width: 1200px) {
  .site-header {
    column-gap: 10px;
    padding-inline: clamp(12px, 2.2vw, 26px);
  }

  .main-nav {
    gap: 7px;
    font-size: 11.75px;
    overflow: visible;
  }

  .brand img {
    width: clamp(148px, 10.6vw, 186px);
  }

  .lang-switch {
    padding: 4px;
  }

  .lang-link {
    min-width: 30px;
    height: 26px;
    padding: 0 8px;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 58px;
  }

  body:not(.home-page) {
    padding-bottom: 80px;
  }

  .site-header {
    column-gap: 12px;
    row-gap: 8px;
  }

  .brand img {
    width: clamp(166px, 28vw, 208px);
  }

  .header-tools {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: tools;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    width: auto;
  }

  .main-nav {
    display: none;
  }

  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "brand tools"
      "whats whats"
      "nav nav";
    row-gap: 10px;
    background: rgba(255, 253, 250, 0.96);
    border-bottom-color: rgba(116, 96, 68, 0.18);
  }

  .site-header.is-open .header-tools {
    display: none !important;
  }

  .site-header.is-open .main-nav {
    display: flex;
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
    overflow: visible;
    white-space: normal;
  }

  .main-nav a::after {
    bottom: -4px;
  }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .student-portal {
    width: auto;
  }

  /* Mobile/tablet: keep WhatsApp as a fixed bottom bar, never overlaying the header. */
  body:not(.home-page) .header-whatsapp {
    position: fixed !important;
    left: 12px;
    right: 12px;
    bottom: 12px !important;
    top: auto !important;
    width: auto;
    z-index: 80;
    padding: 10px;
    border: 1px solid rgba(116, 96, 68, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(23, 23, 20, 0.16);
  }

  body:not(.home-page) .header-whatsapp .solid-btn {
    width: 100%;
    justify-content: center;
  }

  body:not(.home-page) .header-whatsapp .lang-switch {
    display: none;
  }

  .portal-panel {
    right: 0;
  }

  .portal-panel::before {
    display: none;
  }

  .intent-grid,
  .signature-strip,
  .card-grid,
  .trio-grid,
  .media-grid,
  .video-option-grid,
  .metric-grid,
  .report-grid,
  .message-grid,
  .flow-grid,
  .jobs-grid,
  .section-heading.split,
  .page-hero,
  .detail-section,
  .page-form-section,
  .course-path,
  .agenda-feature,
  .feature-section,
  .school-section,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr 1fr;
  }

  .signature-strip {
    padding-inline: 18px;
    gap: 12px;
    background: #f7f1e8;
  }

  .signature-strip article,
  .signature-strip article:last-child {
    border: 1px solid rgba(116, 96, 68, 0.16);
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }

  .method-section {
    grid-template-columns: 1fr;
  }

  .method-section > div:first-child {
    max-width: 760px;
  }

  .method-section .detail-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .page-hero {
    grid-template-columns: 1fr;
  }

  .enterprise-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .brand-partnership-page .enterprise-hero,
  .media-production-page .enterprise-hero {
    grid-template-columns: 1fr;
  }

  .enterprise-hero-copy {
    max-width: 760px;
  }

  .enterprise-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-metrics article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(167, 7, 10, .16);
    border-left: 0;
  }

  .enterprise-hero-photo {
    min-height: 340px;
  }

  .enterprise-hub-page .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .enterprise-hub-page .page-hero-image {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 56px;
  }

  body:not(.home-page) {
    padding-bottom: 80px;
  }

  section {
    padding-inline: 18px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto;
    grid-template-areas: "brand tools";
    row-gap: 0;
    column-gap: 10px;
    padding: 10px calc(12px + env(safe-area-inset-right)) 10px calc(12px + env(safe-area-inset-left));
    overflow: visible;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: min(148px, 44vw);
    max-width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
    grid-area: tools;
    justify-self: end;
    min-width: 0;
    border-color: rgba(255, 253, 250, 0.3);
    background: linear-gradient(135deg, var(--wine), var(--wine-dark));
    color: var(--cream);
    box-shadow: 0 14px 34px rgba(167, 7, 10, 0.22), inset 0 0 0 1px rgba(255, 253, 250, 0.14);
    margin-right: env(safe-area-inset-right);
    padding: 9px 12px;
    line-height: 1;
  }

  .header-tools {
    display: none !important;
  }

  .header-whatsapp {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(116, 96, 68, 0.16);
    border-radius: 999px;
    background: rgba(255, 253, 250, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 44px rgba(23, 23, 20, 0.16);
    z-index: 80;
  }

  .header-whatsapp .lang-switch {
    display: none;
  }

  .header-whatsapp .solid-btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 12px;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Home mobile: WhatsApp as a floating icon without the pill container. */
  body.home-page .header-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: auto;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  body.home-page .header-whatsapp .whatsapp-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 253, 250, 0.22);
    background: linear-gradient(135deg, #25d366, #1aa84f);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(23, 23, 20, 0.28), inset 0 0 0 1px rgba(255, 253, 250, 0.14);
  }

  /* Home mobile: WhatsApp stays as a compact icon button on the right. */
  body.home-page .header-whatsapp {
    justify-content: flex-end;
  }

  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    row-gap: 10px;
  }

  .site-header.is-open .brand img {
    width: min(190px, 68vw);
  }

  .site-header.is-open .header-tools {
    display: none !important;
  }

  .site-header.is-open .main-nav {
    display: flex;
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 0;
    overflow: visible;
    white-space: normal;
  }

  .main-nav {
    display: none;
  }

  .main-nav a,
  .nav-item {
    width: 100%;
  }

  .nav-item .nav-link {
    width: 100%;
  }

  .main-nav {
    gap: 12px;
    font-size: 11.5px;
  }

  .hero {
    height: 100svh;
    min-height: min(560px, 100svh);
    max-height: 100svh;
  }

  /* Mobile: keep the same hero video, but shift framing to reduce face/head cropping. */
  .hero-video {
    object-position: 50% 16%;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(24, 33, 28, 0.62), rgba(111, 90, 63, 0.32)),
      url("assets/photos/aluno-na-cozinha.png") center/cover;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 23, 20, 0.62) 0%, rgba(23, 23, 20, 0.32) 52%, rgba(23, 23, 20, 0.55) 100%);
  }

  /* Mobile: use a still image instead of video for smoother performance. */
  body.home-page .hero-video {
    display: none;
  }

  /* Mobile: avoid flashing the old fallback reel images before styles settle. */
  body.home-page .hero-demo-reel {
    display: none;
  }

  .hero-actions,
  .agenda-card,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-content {
    padding: 74px 18px 38px;
  }

  h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .page-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 54px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .page-hero .info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-hero .info-strip span {
    min-height: 64px;
    padding: 23px 12px 11px;
    font-size: 14px;
  }

  .page-hero .info-strip span::before {
    top: 14px;
    width: 28px;
  }

  .page-nav.stacked-nav {
    grid-template-columns: 1fr;
    justify-content: stretch;
    max-width: none;
  }

  .page-nav.stacked-nav a {
    justify-content: center;
  }

  .page-hero-image,
  .page-hero-video-demo {
    min-height: 280px;
  }

  .solid-btn,
  .ghost-btn,
  .light-btn {
    width: 100%;
  }

  /* Keep header actions on a single line on mobile. */
  .site-header .header-actions .solid-btn,
  .site-header .header-actions .ghost-btn,
  .site-header .header-actions .light-btn {
    width: auto;
  }

  .site-header .header-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .simple-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 10px 16px;
  }

  .simple-site-header .brand img {
    width: 154px;
  }

  .simple-site-header .simple-header-actions {
    width: auto;
    gap: 7px;
  }

  .simple-site-header .simple-header-actions .ghost-btn,
  .simple-site-header .simple-header-actions .solid-btn {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 10.5px;
  }

  .enterprise-hub-page .page-hero {
    padding-top: 44px;
  }

  .enterprise-hub-page .page-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .enterprise-hub-page .page-hero-image {
    min-height: 300px;
    border-radius: 24px;
  }

  .enterprise-hub-page .signature-strip {
    margin-top: 0;
    box-shadow: none;
  }

  .enterprise-hero {
    padding: 36px 20px 42px;
  }

  .enterprise-hero h1 {
    font-size: clamp(36px, 10.8vw, 52px);
    letter-spacing: -0.045em;
  }

  .enterprise-actions,
  .enterprise-actions .solid-btn,
  .enterprise-actions .ghost-btn {
    width: 100%;
  }

  .enterprise-actions {
    flex-direction: column;
  }

  .enterprise-actions .solid-btn,
  .enterprise-actions .ghost-btn {
    justify-content: center;
  }

  .enterprise-metrics {
    grid-template-columns: 1fr;
  }

  .enterprise-metrics article,
  .enterprise-metrics article:nth-child(3) {
    min-height: 0;
    border-left: 0;
  }

  .enterprise-metrics article + article {
    border-top: 1px solid rgba(167, 7, 10, .16);
    border-left: 0;
  }

  .enterprise-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-quick-nav a {
    min-width: 0;
    padding-inline: 10px;
  }

  .enterprise-hero-photo {
    min-height: 270px;
    border-radius: 22px;
  }

  .enterprise-hero-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    border-radius: 16px;
    text-align: center;
    white-space: normal;
  }

  /* But when the mobile menu is open, stack header actions so nothing overflows. */
  .site-header.is-open .header-actions {
    flex-wrap: wrap;
  }

  .site-header.is-open .header-actions .solid-btn,
  .site-header.is-open .header-actions .ghost-btn,
  .site-header.is-open .header-actions .light-btn {
    width: 100%;
  }

  /* Safer text wrapping on narrow screens (prevents clipping). */
  h1,
  h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .intent-grid,
  .signature-strip,
  .card-grid,
  .trio-grid,
  .media-grid,
  .video-option-grid,
  .metric-grid,
  .report-grid,
  .message-grid,
  .flow-grid,
  .jobs-grid,
  .section-heading.split,
  .page-hero,
  .detail-section,
  .page-form-section,
  .course-path,
  .agenda-feature,
  .feature-section,
  .school-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .party-quote,
  .quote-grid,
  .quote-grid-contact,
  .quote-options,
  .quote-meta {
    grid-template-columns: 1fr;
  }

  .quote-result {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }

  /* On mobile, stack the 6-up signature cards (Cursos page) to avoid narrow columns and text overflow. */
  .signature-strip.six-up {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .signature-strip.six-up article {
    min-height: 0;
    text-align: left;
    justify-items: start;
  }

  .signature-strip.six-up h3,
  .signature-strip.six-up strong,
  .signature-strip.six-up p {
    max-width: 100%;
  }

  .admin-row {
    grid-template-columns: 1fr;
  }

  .method-section .detail-list {
    grid-template-columns: 1fr;
  }

  .method-section .detail-item {
    min-height: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table .admin-row,
  .comparison-table .admin-row:not(:has(span:nth-child(5))) {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .permission-grid {
    grid-template-columns: 1fr;
  }

  .course-path-grid {
    grid-template-columns: 1fr;
  }

  .permission-grid > * {
    border-right: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

  .preview-grid,
  .share-preview {
    grid-template-columns: 1fr;
  }

  .agenda-calendar {
    grid-template-columns: 1fr;
  }

  .certificate-preview {
    padding: 28px;
  }

  .certificate-footer {
    display: grid;
    justify-content: center;
  }

  .admin-login-page {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .admin-login-card,
  .admin-login-aside {
    padding: 24px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .photo-gallery figure:first-child {
    grid-row: span 1;
  }

  .feature-copy {
    position: static;
  }

  .school-image {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  .header-whatsapp .solid-btn {
    padding: 9px 10px;
    font-size: 11.5px;
  }

  .menu-toggle {
    padding: 8px 11px;
    font-size: 12px;
  }
}

body.theme-enterprise {
  background:
    radial-gradient(circle at top left, rgba(167, 7, 10, 0.05), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(140, 198, 62, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f4ede1 100%);
}

body.theme-enterprise .site-header {
  background: rgba(255, 253, 250, 0.98);
  border-bottom-color: rgba(167, 7, 10, 0.12);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.03), 0 14px 30px rgba(23, 23, 20, 0.04);
}

body.theme-enterprise .site-header .nav-link,
body.theme-enterprise .site-header .main-nav a,
body.theme-enterprise .site-header .lang-link,
body.theme-enterprise .site-header .header-tools a {
  color: var(--charcoal);
}

body.theme-enterprise .site-header .nav-link:hover,
body.theme-enterprise .site-header .main-nav a:hover,
body.theme-enterprise .site-header .lang-link:hover,
body.theme-enterprise .site-header .header-tools a:hover {
  color: var(--wine);
}

body.theme-enterprise .site-header .solid-btn {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(167, 7, 10, 0.18);
}

body.theme-enterprise .site-header .ghost-btn,
body.theme-enterprise .site-header .light-btn {
  border-color: rgba(167, 7, 10, 0.16);
  color: var(--wine);
  background: rgba(255, 253, 250, 0.9);
}

.simple-site-header {
  position: sticky;
  top: 0;
  grid-template-columns: auto auto;
  grid-template-areas: "brand tools";
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding-block: 12px;
}

.simple-site-header .brand img {
  width: clamp(174px, 16vw, 218px);
}

.simple-site-header .simple-header-actions {
  grid-area: tools;
  justify-content: flex-end;
  gap: 10px;
}

.enterprise-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .5fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  max-width: 1480px;
  min-height: min(640px, calc(100svh - var(--header-height)));
  margin-inline: auto;
  padding: clamp(26px, 3.4vw, 46px) clamp(24px, 4vw, 56px) clamp(30px, 3.8vw, 52px);
}

.enterprise-hero-copy {
  max-width: 820px;
}

.enterprise-hero .eyebrow {
  color: var(--wine);
}

.enterprise-hero h1 {
  max-width: 800px;
  margin: 10px 0 0;
  color: #271914;
  font-size: clamp(28px, 2.65vw, 40px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.enterprise-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #66584d;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.52;
}

.enterprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.enterprise-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border-top: 5px solid #9f0009;
  border-bottom: 1px solid rgba(167, 7, 10, .16);
  background: linear-gradient(90deg, rgba(255, 253, 250, .96), rgba(255, 248, 242, .9));
  box-shadow: 0 18px 46px rgba(57, 33, 20, .08);
}

.enterprise-metrics article {
  min-width: 0;
  min-height: 92px;
  padding: clamp(12px, 1.25vw, 16px);
}

.enterprise-metrics article + article {
  border-left: 1px solid rgba(167, 7, 10, .16);
}

.enterprise-metrics strong {
  display: block;
  margin-bottom: 5px;
  color: #80613c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -0.05em;
}

.enterprise-metrics h2 {
  margin: 0 0 3px;
  color: #a4000b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.enterprise-metrics p {
  margin: 0;
  color: #6a5d52;
  font-size: clamp(12px, .82vw, 13px);
  line-height: 1.3;
}

.enterprise-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.enterprise-quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(167, 7, 10, .16);
  border-radius: 999px;
  background: rgba(255, 253, 250, .72);
  color: var(--wine-dark);
  font-size: 11.5px;
  font-weight: 850;
}

.enterprise-hero-photo {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--charcoal);
  box-shadow: 0 20px 52px rgba(23, 23, 20, .16);
}

.enterprise-hero-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 23, 20, .02), rgba(23, 23, 20, .46));
  content: "";
}

.enterprise-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.enterprise-hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 250, .88);
  color: var(--wine-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.enterprise-hub-page .page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(230px, .42fr);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: center;
  min-height: 500px;
  padding-top: clamp(52px, 6vw, 74px);
  padding-bottom: clamp(48px, 5.8vw, 70px);
}

.enterprise-hub-page .page-hero > div:first-child {
  align-self: center;
  max-width: 900px;
}

.enterprise-hub-page .page-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 4.15vw, 64px);
  line-height: 1;
}

.enterprise-hub-page .page-hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(16px, 1.2vw, 19px);
}

.enterprise-hub-page .page-hero-image {
  min-height: 260px;
  max-height: 320px;
  border-radius: 24px;
  background-position: center;
  box-shadow: 0 22px 58px rgba(23, 23, 20, .22);
}

.enterprise-hub-page .signature-strip {
  margin-top: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(167, 7, 10, .12);
  background: rgba(255, 253, 250, .92);
  box-shadow: 0 24px 70px rgba(23, 23, 20, .08);
}

.enterprise-hub-page .signature-strip article {
  border-color: rgba(167, 7, 10, .13);
  background: linear-gradient(180deg, rgba(255,253,250,.98), rgba(248,242,233,.94));
}

.enterprise-hub-page .content-band.dark {
  padding-top: clamp(62px, 7vw, 86px);
}

.enterprise-hub-page .content-band.dark .card-grid.compact article {
  border-color: rgba(255, 248, 238, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .13), rgba(255, 253, 250, .075));
  box-shadow: 0 18px 46px rgba(17, 10, 8, .2);
}

.enterprise-hub-page .content-band.dark .card-grid.compact article:hover {
  border-color: rgba(255, 248, 238, .32);
  background: rgba(255, 253, 250, .12);
}

.enterprise-hub-page .content-band.dark .card-grid.compact h3,
.enterprise-hub-page .content-band.dark .card-grid.compact p {
  color: rgba(255, 248, 238, .92);
}

body.theme-enterprise .page-hero {
  background:
    radial-gradient(circle at 86% 8%, rgba(140, 198, 62, 0.14), transparent 25%),
    radial-gradient(circle at 14% 18%, rgba(167, 7, 10, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(41, 22, 18, 0.98), rgba(81, 28, 22, 0.95));
  color: var(--cream);
}

body.theme-enterprise .page-hero .eyebrow,
body.theme-enterprise .page-hero .info-strip span,
body.theme-enterprise .page-hero .page-nav a {
  color: rgba(255, 248, 238, 0.96);
}

body.theme-enterprise .page-hero .eyebrow {
  border-color: rgba(255, 248, 238, 0.24);
  background: rgba(255, 248, 238, 0.08);
}

body.theme-enterprise .page-hero h1,
body.theme-enterprise .page-hero .balanced-title {
  color: #ffffff;
  text-shadow: 0 10px 28px rgba(19, 12, 9, 0.22);
}

body.theme-enterprise .page-hero p:not(.eyebrow) {
  color: rgba(255, 248, 238, 0.84);
}

body.theme-enterprise .page-hero .page-nav a {
  border-color: rgba(255, 248, 238, 0.34);
  background: rgba(255, 248, 238, 0.08);
}

body.theme-enterprise .page-hero .page-nav a::after {
  background: rgba(255, 248, 238, 0.82);
}

body.theme-enterprise .page-hero .info-strip span {
  border-color: rgba(255, 248, 238, 0.42);
  background: rgba(255, 248, 238, 0.1);
  box-shadow:
    inset 0 0 0 3px rgba(60, 25, 21, 0.62),
    inset 0 0 0 4px rgba(255, 248, 238, 0.18),
    0 16px 34px rgba(19, 12, 9, 0.18);
}

body.theme-enterprise .page-hero .info-strip span::before {
  background: rgba(255, 248, 238, 0.82);
}

body.theme-enterprise .page-hero .page-nav a:hover {
  color: #ffffff;
  border-color: rgba(255, 248, 238, 0.34);
  background: rgba(255, 248, 238, 0.16);
}

body.theme-enterprise .page-hero-image,
body.theme-enterprise .page-hero-video-demo {
  box-shadow: 0 28px 70px rgba(23, 23, 20, 0.22);
  outline-color: rgba(255, 248, 238, 0.18);
}

body.theme-enterprise .content-band {
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.96), rgba(247, 240, 231, 0.98));
}

body.theme-enterprise .content-band.light {
  background:
    radial-gradient(circle at top right, rgba(167, 7, 10, 0.04), transparent 20%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(246, 239, 228, 0.98));
}

body.theme-enterprise .content-band.dark {
  background:
    radial-gradient(circle at 84% 14%, rgba(141, 198, 63, 0.14), transparent 25%),
    radial-gradient(circle at 14% 16%, rgba(167, 7, 10, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(34, 24, 20, 0.99), rgba(69, 25, 21, 0.96));
}

body.theme-enterprise .content-band.dark .tag {
  color: rgba(255, 248, 238, 0.95);
  border-color: rgba(255, 248, 238, 0.18);
  background: rgba(255, 248, 238, 0.08);
}

body.theme-enterprise .content-band.dark .text-btn {
  color: #f2e5c8;
}

body.theme-enterprise .section-heading h2,
body.theme-enterprise .detail-section h2,
body.theme-enterprise .card-grid h3 {
  color: var(--wine-dark);
}

body.theme-enterprise .section-heading p,
body.theme-enterprise .detail-section p,
body.theme-enterprise .content-band p {
  color: #51473f;
}

body.theme-enterprise .card-grid article,
body.theme-enterprise .detail-item,
body.theme-enterprise .intent-card,
body.theme-enterprise .course-card,
body.theme-enterprise .job-card {
  border-color: rgba(167, 7, 10, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 233, 0.96));
  box-shadow: 0 18px 44px rgba(23, 23, 20, 0.08);
}

body.theme-enterprise .detail-item:hover,
body.theme-enterprise .card-grid article:hover,
body.theme-enterprise .intent-card:hover,
body.theme-enterprise .course-card:hover,
body.theme-enterprise .job-card:hover {
  border-color: rgba(167, 7, 10, 0.24);
  box-shadow: 0 24px 58px rgba(23, 23, 20, 0.12);
}

body.theme-enterprise .tag.accent,
body.theme-enterprise .tag.hot {
  background: rgba(167, 7, 10, 0.08);
  border-color: rgba(167, 7, 10, 0.18);
}

body.theme-enterprise .section-cta .solid-btn {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--paper);
}

body.theme-enterprise.enterprise-hub-page .page-hero {
  overflow: hidden;
}

body.theme-enterprise.enterprise-hub-page .page-hero .info-strip {
  max-width: 720px;
  gap: 12px;
}

body.theme-enterprise.enterprise-hub-page .page-hero .info-strip span {
  min-height: 48px;
  padding: 12px 18px;
  border-color: rgba(255, 248, 238, .26);
  border-radius: 14px;
  background: rgba(255, 248, 238, .09);
  box-shadow: none;
  font-size: 13px;
}

body.theme-enterprise.enterprise-hub-page .page-hero .info-strip span::before {
  display: none;
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .section-heading h2,
body.theme-enterprise.enterprise-hub-page .content-band.dark .section-heading p,
body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact h3,
body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact p {
  color: rgba(255, 248, 238, .94);
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .section-heading p,
body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact p {
  color: rgba(255, 248, 238, .74);
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact article {
  border-color: rgba(255, 248, 238, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .13), rgba(255, 253, 250, .075));
  box-shadow: 0 18px 46px rgba(17, 10, 8, .2);
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact article:hover {
  border-color: rgba(255, 248, 238, .3);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .17), rgba(255, 253, 250, .1));
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact .text-btn {
  color: #f6dfad;
}


/* Historia: alinha a foto ao primeiro card lateral */
#historia .detail-image {
  margin-top: 0;
}

/* Historia: cards editoriais com tarja lateral */
#historia .detail-list {
  gap: 14px;
}

#historia .detail-item {
  position: relative;
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 6px;
  overflow: hidden;
  padding: 18px 24px 18px clamp(132px, 10vw, 148px);
  border: 2px solid rgba(127, 5, 8, 0.82);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(247, 241, 232, 0.92));
  box-shadow: 0 14px 34px rgba(23, 23, 20, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

#historia .detail-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(108px, 8vw, 124px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(145deg, var(--wine-dark), #8f171b);
  color: rgba(255, 253, 250, 0.96);
  font-family: Inter, Arial, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  box-shadow: inset -1px 0 rgba(255, 253, 250, 0.14);
}

#historia .detail-item:nth-child(1)::before {
  content: "APRENDER";
}

#historia .detail-item:nth-child(2)::before {
  content: "VIVER";
}

#historia .detail-item:nth-child(3)::before {
  content: "CONECTAR";
}

#historia .detail-item h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 1.7vw, 27px);
  font-weight: 700;
  line-height: 1.1;
}

#historia .detail-item p {
  margin: 0;
  color: #5b5048;
  font-size: 15px;
  line-height: 1.5;
}

#historia .detail-item:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow: 0 20px 44px rgba(23, 23, 20, 0.12);
}

@media (max-width: 720px) {
  #historia .detail-list {
    gap: 14px;
  }

  #historia .detail-item {
    min-height: 0;
    padding: 62px 18px 18px;
  }

  #historia .detail-item::before {
    inset: 0 0 auto;
    width: 100%;
    height: 44px;
    border-radius: 12px 12px 0 0;
    box-shadow: inset 0 -1px rgba(255, 253, 250, 0.14);
  }

  #historia .detail-item h3 {
    font-size: 23px;
  }
}


/* Card-grid premium: opcao 1 com tarja superior */
.card-grid.compact article:has(> .tag:first-child) {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 66px clamp(22px, 2.4vw, 28px) 22px;
  border: 2px solid rgba(127, 5, 8, 0.88);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(248, 242, 233, 0.94));
  box-shadow:
    0 16px 38px rgba(23, 23, 20, 0.08),
    inset 0 0 0 1px rgba(255, 253, 250, 0.76);
  gap: 10px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.card-grid.compact article > .tag:first-child,
.card-grid.compact article > .tag.accent:first-child,
.card-grid.compact article > .tag.hot:first-child,
.card-grid.compact article > .tag.premium:first-child {
  position: absolute;
  inset: 0 0 auto;
  width: auto;
  min-height: 46px;
  margin: 0;
  padding: 12px clamp(22px, 2.4vw, 28px);
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--wine-dark), #94161a);
  color: rgba(255, 253, 250, 0.97);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow:
    inset 0 -1px rgba(255, 253, 250, 0.18),
    0 8px 18px rgba(127, 5, 8, 0.12);
}

.card-grid.compact article:has(> .tag:first-child) h3 {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 1.65vw, 26px);
  font-weight: 700;
  line-height: 1.14;
}

.card-grid.compact article:has(> .tag:first-child) p {
  margin: 0;
  color: #5b5048;
  font-size: 15px;
  line-height: 1.55;
}

.card-grid.compact article:has(> .tag:first-child) .text-btn {
  align-self: end;
  margin-top: auto;
  color: var(--wine);
}

.card-grid.compact article:has(> .tag:first-child):hover,
.card-grid.compact article:has(> .tag:first-child):focus-within {
  transform: translateY(-3px);
  border-color: var(--wine);
  box-shadow:
    0 24px 52px rgba(23, 23, 20, 0.13),
    inset 0 0 0 1px rgba(255, 253, 250, 0.82);
}

.content-band.dark .card-grid.compact article:has(> .tag:first-child) {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(248, 242, 233, 0.96));
}

.content-band.dark .card-grid.compact article:has(> .tag:first-child) h3 {
  color: var(--ink);
}

.content-band.dark .card-grid.compact article:has(> .tag:first-child) p {
  color: #5b5048;
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact article:has(> .tag:first-child) {
  border-color: rgba(255, 248, 238, .18);
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .13), rgba(255, 253, 250, .075));
  box-shadow: 0 18px 46px rgba(17, 10, 8, .2);
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact article:has(> .tag:first-child) h3 {
  color: rgba(255, 248, 238, .94);
}

body.theme-enterprise.enterprise-hub-page .content-band.dark .card-grid.compact article:has(> .tag:first-child) p {
  color: rgba(255, 248, 238, .74);
}

.team-building-page .enterprise-hero {
  padding-bottom: clamp(22px, 3vw, 38px);
}

.team-building-cards-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(18px, 2.6vw, 34px) clamp(24px, 4vw, 56px) clamp(26px, 3.4vw, 44px);
}

.team-building-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.team-building-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-building-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: end;
  margin-bottom: 16px;
}

.team-building-section-heading .eyebrow {
  margin: 0;
  color: var(--wine);
}

.team-building-section-heading h2 {
  max-width: 680px;
  margin: 0;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.035em;
}

.team-building-section-heading p:not(.eyebrow) {
  max-width: 700px;
  margin: 12px 0 0;
  color: #6b5c55;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.48;
}

.team-building-card-grid article {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  padding: 17px 18px;
  border: 1px solid rgba(116, 19, 38, .15);
  border-left: 4px solid var(--wine);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fbf5ed);
  box-shadow: 0 10px 26px rgba(61, 7, 18, .055);
}

.team-building-card-grid article::after {
  position: absolute;
  right: -40px;
  bottom: -42px;
  width: 88px;
  height: 88px;
  border: 16px solid rgba(116, 96, 68, .08);
  border-radius: 50%;
  content: "";
}

.team-building-card-grid article:nth-child(2n) {
  border-left-color: #966c28;
}

.team-building-card-grid span {
  display: inline-flex;
  min-width: 34px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
}

.team-building-card-grid article:nth-child(2n) span {
  background: #966c28;
}

.team-building-card-grid h3 {
  position: relative;
  z-index: 1;
  margin: 13px 0 6px;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.45vw, 23px);
  font-weight: 700;
  line-height: 1.1;
}

.team-building-card-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f5049;
  font-size: 13px;
  line-height: 1.42;
}

.team-building-consultor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 16px 18px 16px 22px;
  border-radius: 16px;
  background: #efe4d6;
}

.team-building-consultor p {
  margin: 0;
  color: #574842;
  font-size: 13px;
  font-weight: 750;
}

.franchise-page main {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, .96), rgba(247, 239, 229, .86));
}

.franchise-snapshot,
.franchise-model-section,
.franchise-operations-section,
.franchise-profile-section {
  max-width: 1480px;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 56px);
}

.franchise-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.franchise-snapshot article,
.franchise-feature-grid article,
.franchise-system-grid article,
.franchise-profile-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 19, 38, .14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(251, 245, 237, .94));
  box-shadow: 0 12px 30px rgba(61, 7, 18, .055);
}

.franchise-snapshot article {
  min-height: 176px;
  padding: 18px;
}

.franchise-snapshot article::after,
.franchise-feature-grid article::after,
.franchise-profile-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 98px;
  height: 98px;
  border: 17px solid rgba(116, 96, 68, .08);
  border-radius: 999px;
  content: "";
}

.franchise-snapshot span,
.franchise-feature-grid span,
.franchise-profile-grid span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.franchise-snapshot article:nth-child(2n) span,
.franchise-feature-grid article:nth-child(2n) span,
.franchise-profile-grid article:nth-child(2n) span {
  background: #966c28;
}

.franchise-snapshot h2,
.franchise-feature-grid h3,
.franchise-system-grid strong,
.franchise-profile-grid h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 7px;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 1.55vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.franchise-snapshot p,
.franchise-feature-grid p,
.franchise-system-grid p,
.franchise-profile-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #5f5049;
  font-size: 13.5px;
  line-height: 1.45;
}

.franchise-model-section,
.franchise-operations-section,
.franchise-profile-section {
  padding-top: clamp(44px, 6vw, 74px);
  padding-bottom: clamp(44px, 6vw, 74px);
}

.franchise-section-heading {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(320px, 1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: end;
  margin-bottom: 18px;
}

.franchise-section-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--wine);
}

.franchise-section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(31px, 3.45vw, 52px);
  line-height: .98;
  letter-spacing: -0.04em;
}

.franchise-section-heading > p {
  max-width: 720px;
  margin: 0;
  color: #6a5b53;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.franchise-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.franchise-feature-grid article {
  min-height: 194px;
  padding: 18px;
}

.franchise-operations-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(140, 198, 62, .12), transparent 28%),
    linear-gradient(135deg, #351b16, #561f19);
  color: #fff8ee;
}

.franchise-operations-section .section-heading h2,
.franchise-operations-section .section-heading p,
.franchise-operations-section .eyebrow {
  color: #fff8ee;
}

.franchise-page .franchise-operations-section .section-heading .eyebrow,
.franchise-page .franchise-operations-section .section-heading h2,
.franchise-page .franchise-operations-section .section-heading > p,
.franchise-page .franchise-operations-section .section-heading.split > p {
  color: #fff8ee;
}

.franchise-page .franchise-operations-section .section-heading .eyebrow::before {
  background: rgba(255, 248, 238, .78);
}

.franchise-system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.franchise-system-grid article {
  min-height: 156px;
  padding: 18px;
  border-color: rgba(255, 248, 238, .18);
  background: rgba(255, 253, 250, .1);
  box-shadow: 0 18px 44px rgba(16, 8, 5, .18);
}

.franchise-system-grid strong {
  display: block;
  margin: 0 0 8px;
  color: #fff8ee;
}

.franchise-system-grid p {
  color: rgba(255, 248, 238, .78);
}

.franchise-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.franchise-profile-grid article {
  min-height: 166px;
  padding: 18px;
  border-left: 4px solid var(--wine);
}

.franchise-profile-grid article:nth-child(2) {
  border-left-color: #966c28;
}

.franchise-path {
  max-width: 1480px;
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 56px);
}

@media (max-width: 980px) {
  .franchise-snapshot,
  .franchise-feature-grid,
  .franchise-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .franchise-section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .franchise-snapshot,
  .franchise-model-section,
  .franchise-operations-section,
  .franchise-profile-section,
  .franchise-path {
    padding-inline: 20px;
  }

  .franchise-snapshot,
  .franchise-feature-grid,
  .franchise-system-grid,
  .franchise-profile-grid {
    grid-template-columns: 1fr;
  }

  .franchise-snapshot article,
  .franchise-feature-grid article,
  .franchise-system-grid article,
  .franchise-profile-grid article {
    min-height: 0;
  }
}

.brand-partnership-page .enterprise-hero {
  grid-template-columns: minmax(0, .95fr) minmax(380px, .72fr);
}

.brand-partnership-page .enterprise-hero-photo {
  aspect-ratio: 2.05 / 1;
  background: #251713;
}

.brand-partnership-page .enterprise-hero-photo img {
  object-fit: contain;
  object-position: center;
}

.brand-access-card {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.brand-access-card article {
  min-height: 0;
}

.brand-access-card .text-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 12px;
}

.media-production-page .enterprise-hero {
  grid-template-columns: minmax(0, .82fr) minmax(420px, .85fr);
}

.media-production-page .media-hero-photo {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-production-page .media-hero-photo::after {
  display: none;
}

.media-production-page .media-hero-photo img {
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  object-position: center;
  background: #251713;
  box-shadow: 0 20px 52px rgba(23, 23, 20, .16);
}

.media-production-page .media-hero-photo figcaption {
  position: static;
  align-self: flex-end;
  max-width: none;
  margin-top: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #76655a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: none;
}

.media-gallery-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px) clamp(24px, 4vw, 56px);
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.media-gallery-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 19, 38, .14);
  border-radius: 20px;
  background: #fffaf4;
  box-shadow: 0 16px 38px rgba(57, 33, 20, .08);
}

.media-gallery-card-wide {
  grid-column: span 2;
}

.media-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #f4eadc;
}

.media-gallery-card-wide img {
  background: #f4eadc;
}

.team-building-page .content-band,
.team-building-page .team-building-benefits-section,
.team-building-page .team-building-route-section,
.brand-partnership-page .content-band,
.brand-partnership-page .team-building-benefits-section,
.brand-partnership-page .team-building-route-section,
.media-production-page .content-band,
.media-production-page .team-building-benefits-section,
.team-building-page .page-form-section {
  padding-top: clamp(30px, 4vw, 52px);
  padding-bottom: clamp(30px, 4vw, 52px);
}

.team-building-page .team-building-benefits-section,
.team-building-page .team-building-route-section,
.brand-partnership-page .team-building-benefits-section,
.brand-partnership-page .team-building-route-section,
.media-production-page .team-building-benefits-section {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
}

.career-portal-page {
  background: #f6f1ea;
}

.career-portal-page main {
  color: #241a16;
}

.career-system-shell {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 48px) 18px;
}

.career-system-sidebar,
.career-system-board,
.career-access-note {
  border: 1px solid rgba(116, 19, 38, .12);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 12px 30px rgba(57, 33, 20, .055);
}

.career-system-sidebar {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 22px;
}

.career-system-sidebar .eyebrow,
.career-system-toolbar .eyebrow {
  color: var(--wine);
}

.career-system-sidebar h1 {
  margin: 10px 0 0;
  color: #2a1713;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1;
}

.career-system-sidebar > p {
  margin: 14px 0 0;
  color: #62544c;
  font-size: 15px;
  line-height: 1.5;
}

.career-system-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.career-flow-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.career-flow-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(116, 19, 38, .1);
  border-radius: 14px;
  background: #fbf6ef;
}

.career-flow-list span {
  grid-row: span 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.career-flow-list strong {
  color: #241a16;
  font-size: 14px;
}

.career-flow-list small {
  color: #75665d;
  font-size: 12px;
  line-height: 1.3;
}

.career-system-board {
  padding: 18px;
}

.career-system-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.career-system-toolbar h2 {
  margin: 6px 0 0;
  color: #2a1713;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1;
}

.career-job-company {
  display: flex;
  align-items: center;
  gap: 10px;
}

.career-company-logo {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(116, 19, 38, .16);
  border-radius: 12px;
  background: #fbf6ef;
  color: var(--wine);
  font-weight: 900;
}

.career-job-company strong {
  display: block;
  color: #241a16;
  font-size: 14px;
  line-height: 1.2;
}

.career-job-company small {
  color: #75665d;
  font-size: 12px;
  font-weight: 750;
}

.career-portal-page .career-job-card {
  min-height: 0;
  gap: 11px;
  padding: 16px;
  border-radius: 16px;
}

.career-portal-page .career-job-card h3 {
  font-size: clamp(20px, 1.35vw, 24px);
}

.career-portal-page .career-job-card p {
  font-size: 14px;
}

.career-access-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 14px 16px;
  background: #f8f2e9;
}

.career-access-note strong {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: 14px;
}

.career-access-note p {
  margin: 0;
  color: #67574f;
  font-size: 13px;
  line-height: 1.4;
}

.career-portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: clamp(22px, 3vw, 40px);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) clamp(24px, 4vw, 56px) clamp(24px, 3vw, 42px);
}

.career-hero-copy {
  max-width: 820px;
}

.career-portal-hero .eyebrow,
.career-board-header .eyebrow,
.career-company-section .eyebrow {
  color: var(--wine);
}

.career-portal-hero h1 {
  max-width: 860px;
  margin: 10px 0 0;
  color: #2a1713;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -0.045em;
}

.career-hero-copy > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #62544c;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.career-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.career-status-panel {
  display: grid;
  gap: 12px;
  align-self: stretch;
  padding: 18px;
  border: 1px solid rgba(116, 19, 38, .13);
  border-radius: 22px;
  background: rgba(255, 253, 250, .78);
  box-shadow: 0 18px 45px rgba(57, 33, 20, .08);
}

.career-status-panel div {
  display: grid;
  align-content: center;
  min-height: 100px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fbf5ed);
}

.career-status-panel span {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  line-height: .9;
}

.career-status-panel p {
  margin: 8px 0 0;
  color: #6b5c55;
  font-size: 13px;
  font-weight: 800;
}

.career-audience-section,
.career-board-section,
.career-company-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 48px) clamp(24px, 4vw, 56px);
}

.career-audience-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.career-audience-section article,
.career-company-card {
  border: 1px solid rgba(116, 19, 38, .14);
  border-left: 5px solid var(--wine);
  border-radius: 20px;
  background: #fffdfa;
  box-shadow: 0 14px 34px rgba(57, 33, 20, .06);
}

.career-audience-section article {
  padding: clamp(22px, 2.8vw, 32px);
}

.career-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.career-audience-section h2,
.career-company-card h3 {
  margin: 18px 0 8px;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
}

.career-audience-section p,
.career-company-section p {
  color: #67574f;
  line-height: 1.55;
}

.career-board-section {
  padding-top: clamp(30px, 4vw, 56px);
}

.career-board-header {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.career-board-header h2,
.career-company-section h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--wine-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -0.035em;
}

.career-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.career-filter-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(116, 19, 38, .14);
  border-radius: 999px;
  padding: 7px 13px;
  background: #fffdfa;
  color: #5e5049;
  font-size: 12px;
  font-weight: 850;
}

.career-job-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.career-job-card {
  display: grid;
  gap: 13px;
  min-height: 292px;
  padding: 20px;
  border: 1px solid rgba(116, 19, 38, .14);
  border-radius: 18px;
  background: #fffdfa;
  box-shadow: 0 14px 34px rgba(57, 33, 20, .055);
}

.career-job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.career-job-top span,
.career-job-top strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 900;
}

.career-job-top span {
  background: #9d0711;
  color: #fff;
}

.career-job-top strong {
  background: #efe4d6;
  color: #6a4d23;
}

.career-job-card h3 {
  margin: 0;
  color: #1f1512;
  font-size: clamp(21px, 1.6vw, 27px);
  line-height: 1.1;
}

.career-job-card p {
  margin: 0;
  color: #6c5c54;
  line-height: 1.45;
}

.career-job-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #514640;
  font-size: 14px;
  line-height: 1.4;
}

.career-job-card .solid-btn {
  align-self: end;
  justify-self: start;
}

.career-legal-note {
  max-width: 940px;
  margin: 18px 0 0;
  color: #77675f;
  font-size: 13px;
  line-height: 1.5;
}

.career-company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding-bottom: clamp(46px, 6vw, 78px);
}

.career-company-card {
  padding: clamp(22px, 2.8vw, 32px);
  border-left-color: #966c28;
}

.career-company-card ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 20px;
  color: #5d4f48;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .enterprise-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .team-building-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-building-section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .media-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-gallery-card-wide {
    grid-column: span 2;
  }

  .career-portal-hero,
  .career-system-shell,
  .career-board-header,
  .career-company-section {
    grid-template-columns: 1fr;
  }

  .career-system-sidebar {
    min-height: 0;
  }

  .career-flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .career-system-toolbar,
  .career-access-note {
    align-items: start;
    flex-direction: column;
  }

  .career-status-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-filter-row {
    justify-content: flex-start;
  }

  .career-job-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-hero-copy {
    max-width: 760px;
  }

  .enterprise-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-metrics article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(167, 7, 10, .16);
    border-left: 0;
  }

  .enterprise-hero-photo {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .enterprise-hero {
    padding: 28px 20px 34px;
  }

  .team-building-cards-section {
    padding: 18px 20px 30px;
  }

  .team-building-card-grid {
    grid-template-columns: 1fr;
  }

  .career-portal-hero,
  .career-system-shell,
  .career-audience-section,
  .career-board-section,
  .career-company-section {
    padding-inline: 20px;
  }

  .career-system-shell {
    padding-top: 20px;
  }

  .career-system-sidebar,
  .career-system-board {
    padding: 16px;
    border-radius: 16px;
  }

  .career-flow-list {
    grid-template-columns: 1fr;
  }

  .career-system-actions .solid-btn,
  .career-system-actions .ghost-btn {
    width: 100%;
  }

  .career-portal-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1;
  }

  .career-hero-actions,
  .career-hero-actions .solid-btn,
  .career-hero-actions .ghost-btn,
  .career-company-card .solid-btn {
    width: 100%;
  }

  .career-status-panel,
  .career-audience-section,
  .career-job-grid {
    grid-template-columns: 1fr;
  }

  .career-status-panel div {
    min-height: 0;
  }

  .career-board-header h2,
  .career-company-section h2 {
    font-size: clamp(30px, 8.4vw, 40px);
  }

  .career-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .career-filter-row span {
    justify-content: center;
  }

  .career-job-card {
    min-height: 0;
  }

  .media-gallery-section {
    padding: 24px 20px 34px;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 16px;
  }

  .media-gallery-card-wide {
    grid-column: auto;
  }

  .media-gallery-card,
  .media-gallery-card img {
    border-radius: 16px;
  }

  .team-building-section-heading {
    margin-bottom: 14px;
  }

  .team-building-section-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.03;
  }

  .team-building-section-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .team-building-card-grid article {
    min-height: 0;
    padding: 19px 20px;
  }

  .team-building-card-grid h3 {
    font-size: 22px;
  }

  .team-building-card-grid p {
    font-size: 14px;
    line-height: 1.5;
  }

  .team-building-consultor {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 17px;
  }

  .team-building-consultor .solid-btn {
    width: 100%;
  }

  .enterprise-hero h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    letter-spacing: -0.035em;
  }

  .enterprise-actions,
  .enterprise-actions .solid-btn,
  .enterprise-actions .ghost-btn {
    width: 100%;
  }

  .enterprise-actions {
    flex-direction: column;
  }

  .enterprise-actions .solid-btn,
  .enterprise-actions .ghost-btn {
    justify-content: center;
  }

  .enterprise-metrics {
    grid-template-columns: 1fr;
  }

  .enterprise-metrics article,
  .enterprise-metrics article:nth-child(3) {
    min-height: 0;
    padding: 13px 15px;
    border-left: 0;
  }

  .enterprise-metrics article + article {
    border-top: 1px solid rgba(167, 7, 10, .16);
    border-left: 0;
  }

  .enterprise-quick-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-quick-nav a {
    min-width: 0;
    padding-inline: 10px;
  }

  .enterprise-hero-photo {
    min-height: 0;
    border-radius: 20px;
  }

  .enterprise-hero-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
    border-radius: 16px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .card-grid.compact article:has(> .tag:first-child) {
    min-height: 0;
    padding: 62px 20px 20px;
  }

  .card-grid.compact article > .tag:first-child,
  .card-grid.compact article > .tag.accent:first-child,
  .card-grid.compact article > .tag.hot:first-child,
  .card-grid.compact article > .tag.premium:first-child {
    min-height: 44px;
    padding: 12px 20px;
  }

  .card-grid.compact article:has(> .tag:first-child) h3 {
    font-size: 23px;
  }
}


/* Cloudflare Turnstile: verificacao real dos formularios */
.turnstile-check {
  width: 100%;
  min-width: 0;
  min-height: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}

.turnstile-check > div {
  width: 100% !important;
  max-width: 100%;
}

.turnstile-check iframe {
  max-width: 100%;
}

.footer-optin .turnstile-check {
  margin: 4px 0 2px;
}

.contact-form .turnstile-check,
.modal-card .turnstile-check,
.quote-actions .turnstile-check {
  margin-top: 2px;
}

@media (max-width: 520px) {
  .footer-optin-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .footer-optin-row .solid-btn {
    width: 100%;
    justify-content: center;
  }
}


/* Titulos de secao: linha editorial global */
main section:not(.hero):not(.page-hero) .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--wine-dark);
  font-size: clamp(15px, 1.05vw, 17px);
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

main section:not(.hero):not(.page-hero) .eyebrow::before {
  content: "";
  width: clamp(38px, 3.4vw, 54px);
  height: 2px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--wine-dark);
}

main .content-band.dark .eyebrow,
main .page-form-section .eyebrow,
main .portal-hero .eyebrow {
  color: rgba(255, 248, 238, 0.96);
}

main .content-band.dark .eyebrow::before,
main .page-form-section .eyebrow::before,
main .portal-hero .eyebrow::before {
  background: rgba(255, 248, 238, 0.82);
}

@media (max-width: 720px) {
  main section:not(.hero):not(.page-hero) .eyebrow {
    gap: 10px;
    margin-bottom: 13px;
    font-size: 14px;
    letter-spacing: 0.09em;
  }

  main section:not(.hero):not(.page-hero) .eyebrow::before {
    width: 30px;
  }
}


/* Visita: composicao hibrida com foto e formulario compacto */
.page-form-section.visit-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  gap: clamp(36px, 4.5vw, 68px);
  align-items: stretch;
}

.visit-section .visit-intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

main .page-form-section.visit-section .eyebrow {
  color: #ffffff;
}

main .page-form-section.visit-section .eyebrow::before {
  background: var(--wine);
}

.visit-section h2 {
  max-width: 720px;
  color: var(--cream);
}

.visit-section .visit-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.65;
  text-align: left;
  hyphens: none;
}

.visit-photo {
  position: relative;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 10px;
  background: rgba(255, 253, 250, 0.06);
  box-shadow: 0 22px 54px rgba(10, 13, 10, 0.28);
}

.visit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 8px rgba(255, 253, 250, 0.08);
}

.visit-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
  object-position: center;
}

.visit-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 17px;
  color: rgba(255, 248, 238, 0.84);
}

.visit-facts span {
  display: flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(167, 7, 10, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.visit-facts span:first-child {
  padding-left: 0;
}

.visit-facts span:last-child {
  border-right: 0;
  padding-right: 0;
}

.visit-contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 14px 16px;
  padding: clamp(24px, 2.4vw, 30px);
  border-radius: 10px;
}

.visit-contact-form label {
  min-width: 0;
  gap: 7px;
}

.visit-contact-form label:nth-of-type(5) {
  grid-column: 1 / -1;
}

.visit-contact-form input,
.visit-contact-form select {
  min-height: 46px;
}

.visit-contact-form textarea {
  min-height: 108px;
}

.visit-contact-form .turnstile-check {
  grid-column: 1 / -1;
  width: 100%;
  align-self: center;
  margin: 0;
  overflow: visible;
}

.visit-contact-form > .solid-btn {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 54px;
  align-self: center;
}

.visit-contact-form .form-feedback {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 1050px) {
  .page-form-section.visit-section {
    grid-template-columns: 1fr;
  }

  .visit-photo img {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 720px) {
  .page-form-section.visit-section {
    gap: 30px;
  }

  .visit-photo {
    margin-top: 22px;
  }

  .visit-photo img {
    aspect-ratio: 4 / 3;
  }

  .visit-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-facts span,
  .visit-facts span:first-child,
  .visit-facts span:last-child {
    min-height: 38px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(167, 7, 10, 0.5);
  }

  .visit-facts span:last-child {
    border-bottom: 0;
  }

  .visit-contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .visit-contact-form label:nth-of-type(5),
  .visit-contact-form .turnstile-check,
  .visit-contact-form > .solid-btn,
  .visit-contact-form .form-feedback {
    grid-column: 1;
  }
}


/* Aulas tematicas: catalogo completo conectado a agenda */
.feature-section.thematic-showcase {
  display: block;
  background:
    radial-gradient(circle at 8% 12%, rgba(167, 7, 10, 0.045), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.92)),
    var(--cream);
}

.thematic-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.thematic-heading > div:first-child {
  max-width: 860px;
}

.thematic-heading h2 {
  max-width: 760px;
}

.thematic-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.thematic-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.thematic-filters button {
  position: relative;
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.thematic-filters button:hover,
.thematic-filters button.is-active {
  border-bottom-color: var(--wine);
  color: var(--wine);
}

.thematic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
}

.thematic-empty {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(127, 5, 8, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.74);
  color: var(--muted);
  text-align: center;
}

.agenda-feature-card > .thematic-empty {
  align-self: center;
  border-color: rgba(251, 247, 239, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(251, 247, 239, 0.82);
}

.thematic-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(127, 5, 8, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(248, 242, 233, 0.94)),
    var(--paper);
  box-shadow: 0 16px 38px rgba(23, 23, 20, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.thematic-card:hover,
.thematic-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(127, 5, 8, 0.72);
  box-shadow: 0 24px 52px rgba(23, 23, 20, 0.13);
}

.thematic-card[hidden] {
  display: none;
}

.thematic-card-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.thematic-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 300ms ease;
}

.thematic-card:hover .thematic-card-image img {
  transform: scale(1.025);
}

.thematic-status {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(255, 253, 250, 0.38);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(127, 5, 8, 0.92);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.thematic-status.is-urgent {
  background: rgba(167, 7, 10, 0.96);
}

.thematic-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.1vw, 26px);
}

.thematic-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 1.8vw, 29px);
  line-height: 1.15;
}

.thematic-card-body > p {
  margin: 10px 0 0;
  color: #5b5048;
  font-size: 14.5px;
  line-height: 1.55;
}

.thematic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 16px;
  color: var(--wine-dark);
  font-size: 12.5px;
  font-weight: 850;
}

.thematic-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  border-right: 1px solid rgba(127, 5, 8, 0.28);
}

.thematic-meta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thematic-meta span:first-child {
  padding-left: 0;
}

.thematic-meta span:last-child {
  border-right: 0;
}

.thematic-preparations {
  display: grid;
  gap: 5px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid rgba(116, 96, 68, 0.18);
}

.thematic-preparations strong {
  color: var(--wine-dark);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.thematic-preparations span {
  color: #51473f;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
}

.thematic-includes {
  display: flex;
  gap: 5px;
  align-items: baseline;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(104, 125, 32, 0.24);
  border-radius: 10px;
  background: #f5f8e9;
  color: #4d5f19;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.45;
}

.thematic-includes strong,
.thematic-includes span {
  font-family: inherit;
}

.thematic-card-footer {
  display: grid;
  grid-template-columns: minmax(88px, auto) minmax(150px, 1fr);
  gap: 14px;
  align-items: end;
  margin-top: auto;
  padding-top: 20px;
}

.thematic-price {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.05;
}

.thematic-price small {
  margin-top: 4px;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.thematic-price:has(.thematic-installments) {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.thematic-price .thematic-installments {
  max-width: 190px;
  color: #8b1b20;
  font-size: 11px;
  line-height: 1.35;
  text-transform: none;
}

.thematic-price .thematic-pix-price {
  color: #176b45;
  display: block;
  font-family: inherit;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.thematic-card-footer .solid-btn {
  width: 100%;
  min-height: 46px;
  padding-inline: 14px;
}

.thematic-all-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 28px auto 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.thematic-all-link::before,
.thematic-all-link::after {
  content: "";
  width: 54px;
  height: 1px;
  background: rgba(127, 5, 8, 0.42);
}

@media (max-width: 1050px) {
  .thematic-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .thematic-filters {
    justify-content: flex-start;
  }

  .thematic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .thematic-heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .thematic-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .thematic-filters button {
    border: 1px solid rgba(116, 96, 68, 0.18);
    border-radius: 999px;
  }

  .thematic-filters button:hover,
  .thematic-filters button.is-active {
    border-color: var(--wine);
    background: rgba(167, 7, 10, 0.05);
  }

  .thematic-grid {
    grid-template-columns: 1fr;
  }

  .thematic-card-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .thematic-price {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .thematic-price small {
    margin: 0;
  }

  .thematic-all-link::before,
  .thematic-all-link::after {
    width: 28px;
  }
}


/* Criancas e escolas: composicao editorial assimetrica */
.kids-showcase {
  background:
    radial-gradient(circle at 90% 8%, rgba(140, 198, 62, 0.06), transparent 23%),
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(247, 241, 232, 0.94)),
    var(--cream);
}

.kids-showcase-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.kids-showcase-heading h2 {
  max-width: 820px;
}

.kids-showcase-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.kids-editorial-grid {
  display: grid;
  min-height: 540px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.kids-editorial-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kids-editorial-card {
  position: relative;
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
  border: 1px solid rgba(127, 5, 8, 0.54);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.99), rgba(248, 242, 233, 0.94)),
    var(--paper);
  box-shadow: 0 16px 38px rgba(23, 23, 20, 0.09);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kids-editorial-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--wine-dark), #94161a);
  box-shadow: inset -1px 0 rgba(255, 253, 250, 0.16);
}

.kids-editorial-card:hover,
.kids-editorial-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--wine);
  box-shadow: 0 24px 52px rgba(23, 23, 20, 0.14);
}

.kids-editorial-card figure {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.kids-editorial-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 320ms ease;
}

.kids-editorial-card:hover img {
  transform: scale(1.025);
}

.kids-editorial-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.6vw, 34px);
}

.kids-editorial-category {
  display: block;
  width: fit-content;
  color: var(--wine-dark);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}

.kids-editorial-category::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 11px;
  border-radius: 999px;
  background: var(--wine);
}

.kids-editorial-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 700;
  line-height: 1.12;
}

.kids-editorial-card p {
  margin: 16px 0 0;
  color: #51473f;
  font-size: 14.5px;
  line-height: 1.58;
}

.kids-editorial-card .solid-btn {
  width: fit-content;
  min-width: 172px;
  margin-top: 24px;
  padding-inline: 22px;
}

.kids-editorial-card-featured {
  grid-template-columns: minmax(0, 1.16fr) minmax(270px, 0.84fr);
}

.kids-editorial-card-featured img {
  min-height: 540px;
}

.kids-editorial-card-featured .kids-editorial-body {
  padding: clamp(26px, 3vw, 40px);
}

.kids-editorial-stack .kids-editorial-card {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
}

.kids-editorial-stack .kids-editorial-card img {
  min-height: 256px;
}

.kids-editorial-stack .kids-editorial-body {
  padding: clamp(20px, 2vw, 28px);
}

.kids-editorial-stack .kids-editorial-card h3 {
  font-size: clamp(22px, 1.65vw, 28px);
}

.kids-editorial-stack .kids-editorial-card p {
  margin-top: 11px;
  font-size: 13.5px;
  line-height: 1.48;
}

.kids-editorial-stack .kids-editorial-card .solid-btn {
  min-width: 154px;
  min-height: 40px;
  margin-top: 17px;
}

@media (max-width: 1180px) {
  .kids-editorial-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .kids-editorial-card-featured img {
    min-height: 430px;
  }

  .kids-editorial-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .kids-editorial-stack .kids-editorial-card {
    grid-template-columns: 1fr;
  }

  .kids-editorial-stack .kids-editorial-card img {
    height: 250px;
  }
}

@media (max-width: 720px) {
  .kids-showcase-heading {
    margin-bottom: 24px;
  }

  .kids-editorial-card,
  .kids-editorial-card-featured,
  .kids-editorial-stack .kids-editorial-card {
    grid-template-columns: 1fr;
  }

  .kids-editorial-stack {
    grid-template-columns: 1fr;
  }

  .kids-editorial-card-featured img,
  .kids-editorial-stack .kids-editorial-card img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .kids-editorial-body,
  .kids-editorial-card-featured .kids-editorial-body,
  .kids-editorial-stack .kids-editorial-body {
    padding: 24px;
  }

  .kids-editorial-card .solid-btn,
  .kids-editorial-stack .kids-editorial-card .solid-btn {
    width: 100%;
  }
}


/* Criancas e escolas: corrige altura dos paineis no desktop */
@media (min-width: 1181px) {
  .kids-editorial-grid,
  .kids-editorial-stack {
    height: 560px;
    min-height: 0;
  }

  .kids-editorial-card,
  .kids-editorial-card-featured,
  .kids-editorial-stack .kids-editorial-card {
    height: 100%;
    min-height: 0;
  }

  .kids-editorial-card figure,
  .kids-editorial-card img,
  .kids-editorial-card-featured img,
  .kids-editorial-stack .kids-editorial-card img {
    height: 100%;
    min-height: 0;
  }

  .kids-editorial-stack .kids-editorial-body {
    padding: 18px 24px;
  }

  .kids-editorial-stack .kids-editorial-card h3 {
    margin-top: 12px;
    font-size: clamp(21px, 1.45vw, 25px);
  }

  .kids-editorial-stack .kids-editorial-card p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.42;
  }

  .kids-editorial-stack .kids-editorial-card .solid-btn {
    min-height: 38px;
    margin-top: 13px;
  }

  .kids-editorial-stack .kids-editorial-category::after {
    margin-top: 8px;
  }
}


/* Criancas e escolas: versao compacta para caber na viewport */
@media (min-width: 1181px) {
  .kids-showcase-heading {
    max-width: 820px;
    margin-bottom: 20px;
  }

  .kids-showcase-heading h2 {
    max-width: 760px;
    font-size: clamp(32px, 2.65vw, 43px);
    line-height: 1.06;
  }

  .kids-showcase-heading > p:not(.eyebrow) {
    max-width: 680px;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.48;
  }

  .kids-editorial-grid,
  .kids-editorial-stack {
    height: 440px;
  }

  .kids-editorial-card-featured .kids-editorial-body {
    padding: 22px 28px;
  }

  .kids-editorial-card-featured h3 {
    margin-top: 12px;
    font-size: clamp(25px, 1.8vw, 30px);
  }

  .kids-editorial-card-featured p {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.48;
  }

  .kids-editorial-card-featured .solid-btn {
    min-height: 38px;
    margin-top: 17px;
  }

  .kids-editorial-stack {
    gap: 18px;
  }

  .kids-editorial-stack .kids-editorial-body {
    padding: 12px 18px;
  }

  .kids-editorial-stack .kids-editorial-category {
    font-size: 9.5px;
    letter-spacing: 0.055em;
  }

  .kids-editorial-stack .kids-editorial-category::after {
    width: 28px;
    margin-top: 6px;
  }

  .kids-editorial-stack .kids-editorial-card h3 {
    margin-top: 8px;
    font-size: clamp(18px, 1.25vw, 22px);
    line-height: 1.08;
  }

  .kids-editorial-stack .kids-editorial-card p {
    margin-top: 6px;
    font-size: 11.8px;
    line-height: 1.34;
  }

  .kids-editorial-stack .kids-editorial-card .solid-btn {
    min-width: 138px;
    min-height: 34px;
    margin-top: 9px;
    padding-inline: 16px;
    font-size: 11.5px;
  }
}


/* Home: empresas com fotos e carreira editorial vinho (2026-07-22) */
.home-page #empresas.enterprise-showcase .enterprise-photo-grid {
  align-items: stretch;
}

.home-page #empresas.enterprise-showcase .enterprise-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255, 255, 255, 0.045);
}

.home-page #empresas.enterprise-showcase .enterprise-card figure {
  height: clamp(150px, 14vw, 220px);
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-page #empresas.enterprise-showcase .enterprise-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease;
}

.home-page #empresas.enterprise-showcase .enterprise-card:hover figure img {
  transform: scale(1.025);
}

.home-page #empresas.enterprise-showcase .enterprise-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2vw, 32px);
}

.home-page #empresas.enterprise-showcase .enterprise-card-body h3 {
  margin-top: 0;
}

.home-page #empresas.enterprise-showcase .enterprise-card-body .text-btn {
  margin-top: auto;
}

.home-page .career-showcase {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: clamp(390px, 34vw, 520px);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(112deg, #651019 0%, #500b13 68%, #3f080e 100%);
  color: #fffaf2;
  border-top: 10px solid #f7f0e5;
}

.home-page .career-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 52% 52% 0 / 0 100% 100% 0;
}

.home-page .career-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 15, 10, 0.08), rgba(18, 15, 10, 0));
  pointer-events: none;
}

.home-page .career-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(390px, 34vw, 520px);
  display: block;
  object-fit: cover;
  object-position: center;
}

.home-page .career-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(48px, 5vw, 88px) clamp(44px, 6vw, 108px);
}

.home-page .career-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  color: #d6af66;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .career-kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(214, 175, 102, 0.75);
}

.home-page .career-content h2 {
  max-width: 680px;
  margin: 0 0 20px;
  color: #fffaf2;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.home-page .career-content > p:not(.career-kicker):not(.career-note) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.65;
}

.home-page .career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-page .career-actions .career-primary,
.home-page .career-actions .career-secondary {
  min-width: 210px;
  justify-content: center;
}

.home-page .career-actions .career-primary {
  background: #f7f0e5;
  color: #5d0d16;
  border-color: #f7f0e5;
}

.home-page .career-actions .career-primary:hover {
  background: #fffaf2;
}

.home-page .career-actions .career-secondary {
  border-color: rgba(247, 240, 229, 0.8);
  color: #fffaf2;
  background: transparent;
}

.home-page .career-actions .career-secondary:hover {
  border-color: #fffaf2;
  background: rgba(255, 255, 255, 0.08);
}

.home-page .career-note {
  margin: 24px 0 0;
  color: #d6af66;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .home-page .career-showcase {
    grid-template-columns: 1fr;
  }

  .home-page .career-media {
    min-height: 330px;
    border-radius: 0 0 50% 50% / 0 0 18% 18%;
  }

  .home-page .career-media img {
    min-height: 330px;
  }

  .home-page .career-content {
    max-width: none;
    padding: 48px 6vw 58px;
  }
}

@media (max-width: 640px) {
  .home-page #empresas.enterprise-showcase .enterprise-card figure {
    height: 210px;
  }

  .home-page .career-media,
  .home-page .career-media img {
    min-height: 270px;
  }

  .home-page .career-content h2 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .home-page .career-actions {
    flex-direction: column;
  }

  .home-page .career-actions .career-primary,
  .home-page .career-actions .career-secondary {
    width: 100%;
  }
}


/* Ajuste compacto da faixa de carreira (2026-07-22) */
.home-page .career-media {
  margin: 0;
}

.home-page .career-content {
  padding: clamp(34px, 3.2vw, 54px) clamp(40px, 4.5vw, 78px);
}

.home-page .career-content h2 {
  margin-bottom: 14px;
  font-size: clamp(2.45rem, 3.25vw, 3.75rem);
  line-height: 1;
}

.home-page .career-kicker {
  margin-bottom: 16px;
}

.home-page .career-content > p:not(.career-kicker):not(.career-note) {
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  line-height: 1.5;
}

.home-page .career-actions {
  margin-top: 22px;
}

.home-page .career-note {
  margin-top: 17px;
}

@media (min-width: 901px) {
  .home-page .career-showcase {
    height: clamp(360px, 24vw, 440px);
    min-height: 0;
  }

  .home-page .career-media {
    height: 100%;
    min-height: 0;
  }

  .home-page .career-media img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .home-page .career-showcase {
    height: auto;
    min-height: 0;
  }

  .home-page .career-media {
    height: 300px;
    min-height: 0;
  }

  .home-page .career-media img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .home-page .career-media {
    height: 240px;
  }

  .home-page .career-content {
    padding: 38px 6vw 44px;
  }
}


/* Exibir vídeo principal também no celular (2026-07-22) */
@media (max-width: 720px) {
  body.home-page .hero-video {
    display: block !important;
    visibility: visible;
    opacity: 1;
  }

  body.home-page .hero-demo-reel {
    display: block !important;
  }

  html.hero-video-ready body.home-page .hero-demo-reel {
    display: none !important;
  }
}


/* Teste de abertura mais nítida e leve (2026-07-22) */
.hero-media::after {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background:
    radial-gradient(circle at 72% 42%, rgba(167, 7, 10, 0.07), transparent 30%),
    linear-gradient(90deg, rgba(23, 23, 20, 0.7) 0%, rgba(23, 23, 20, 0.42) 42%, rgba(23, 23, 20, 0.12) 100%),
    linear-gradient(180deg, rgba(23, 23, 20, 0.12), rgba(23, 23, 20, 0.38));
}

.hero-mobile-links {
  display: none;
}

@media (max-width: 720px) {
  body.home-page .hero-media::after {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background:
      linear-gradient(180deg, rgba(23, 23, 20, 0.52) 0%, rgba(23, 23, 20, 0.2) 50%, rgba(23, 23, 20, 0.45) 100%);
  }

  body.home-page .hero-actions > :nth-child(n + 3) {
    display: none;
  }

  body.home-page .hero-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 5vw;
    background: #f7f0e5;
    border-bottom: 1px solid rgba(111, 90, 63, 0.18);
  }

  body.home-page .hero-mobile-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(104, 14, 22, 0.32);
    border-radius: 999px;
    color: #680e16;
    background: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    font-weight: 800;
    text-align: center;
  }
}

@media (max-width: 430px) {
  body.home-page .hero-mobile-links {
    grid-template-columns: 1fr;
  }
}

/* Home: ritmo vertical mais compacto entre os blocos */
.home-page main#home > section:not(.hero):not(.career-showcase) {
  padding-top: clamp(36px, 4.5vw, 58px);
  padding-bottom: clamp(36px, 4.5vw, 58px);
}

.home-page .section-heading,
.home-page .thematic-heading,
.home-page .kids-showcase-heading,
.home-page .home-pathways-heading {
  margin-bottom: clamp(20px, 2vw, 26px);
}

.home-page .section-cta,
.home-page .thematic-all-link,
.home-page .home-pathways-all {
  margin-top: 22px;
}

.home-page .photo-gallery {
  margin-top: 26px;
}

.home-page main#home .content-band.dark .eyebrow {
  color: rgba(255, 250, 242, 0.96);
}

.home-page main#home .content-band.dark .eyebrow::before {
  background: rgba(255, 250, 242, 0.82);
}

@media (max-width: 720px) {
  .home-page main#home > section:not(.hero):not(.career-showcase) {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-page .section-heading,
  .home-page .thematic-heading,
  .home-page .kids-showcase-heading,
  .home-page .home-pathways-heading {
    margin-bottom: 20px;
  }
}


/* Menu Crianças e Escolas */
.kids-nav-item .kids-mega-menu {
  width: min(470px, calc(100vw - 48px));
  padding: 18px;
}

.kids-menu-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 2px 2px 13px;
  border-bottom: 1px solid rgba(116, 96, 68, 0.16);
}

.kids-menu-heading strong {
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.kids-menu-heading span {
  color: rgba(52, 53, 47, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.kids-menu-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.kids-menu-links > a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 96, 68, 0.14);
  border-radius: 10px;
  background: linear-gradient(180deg, #fffdfa, #f9f3eb);
  color: var(--ink) !important;
  text-shadow: none !important;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.kids-menu-links > a::after {
  display: none;
}

.kids-menu-links > a:hover {
  transform: translateX(3px);
  border-color: rgba(167, 7, 10, 0.34);
  background: #ffffff;
}

.kids-menu-links strong {
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
}

.kids-menu-links span {
  color: rgba(52, 53, 47, 0.7);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 1060px) {
  .site-header.is-open .kids-nav-item {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .kids-nav-item > .nav-link {
    width: fit-content;
  }

  .kids-nav-item .kids-mega-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    box-shadow: none;
  }

  .kids-nav-item.is-open .kids-mega-menu {
    display: block !important;
  }

  .kids-menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .kids-nav-item.is-open .kids-mega-menu {
    display: block !important;
  }
}


/* Festa infantil: vídeo vertical no hero */
.party-video-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.party-vertical-video-shell {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  max-height: 540px;
  justify-self: center;
  overflow: hidden;
  border-radius: 24px;
  background: #171714 url("assets/photos/cozinha-aula.jpg") center/cover no-repeat;
  box-shadow: 0 28px 70px rgba(23, 23, 20, 0.2);
  outline: 1px solid rgba(255, 253, 250, 0.72);
  outline-offset: -10px;
}

.party-vertical-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 20, 17, 0.64) 100%);
}

.party-vertical-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.party-video-caption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 253, 250, 0.24);
  border-radius: 12px;
  background: rgba(24, 33, 28, 0.72);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.party-video-caption strong {
  font-size: 14px;
  font-weight: 900;
}

.party-video-caption small {
  color: rgba(251, 247, 239, 0.76);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1060px) {
  .party-video-hero {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.62fr);
  }

  .party-vertical-video-shell {
    width: min(100%, 310px);
    max-height: 500px;
  }
}

@media (max-width: 720px) {
  .party-video-hero {
    grid-template-columns: 1fr;
  }

  .party-vertical-video-shell {
    width: min(86vw, 340px);
    max-height: none;
    margin-top: 12px;
  }
}

/* Festa infantil: composição editorial aprovada */
.party-video-hero {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
  gap: clamp(34px, 4vw, 64px);
  padding-top: clamp(34px, 3.5vw, 52px);
  padding-bottom: clamp(34px, 3.5vw, 52px);
}

.party-hero-copy {
  min-width: 0;
  max-width: 920px;
}

.party-video-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 3.45vw, 56px);
  line-height: 1.1;
}

.party-video-hero .party-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.58;
}

.party-section-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(22px, 2.2vw, 30px);
  border-bottom: 1px solid rgba(90, 72, 58, 0.18);
}

.party-section-nav a {
  position: relative;
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 8px 13px;
  color: #302b27;
  font-size: 15px;
  font-weight: 650;
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.party-section-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  transition: background 180ms ease;
}

.party-section-nav a:hover,
.party-section-nav a:focus-visible,
.party-section-nav a.is-active {
  color: var(--wine);
}

.party-section-nav a:hover::after,
.party-section-nav a:focus-visible::after,
.party-section-nav a.is-active::after {
  background: var(--wine);
}

.party-section-nav a:focus-visible {
  outline: 3px solid rgba(167, 7, 10, 0.16);
  outline-offset: -3px;
}

.party-experience-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(138, 100, 56, 0.24);
  border-top: 4px solid var(--wine);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 42px rgba(62, 38, 23, 0.08);
}

.party-experience-panel > span,
.party-experience-panel > a {
  display: grid;
  min-width: 0;
  min-height: 104px;
  align-content: center;
  justify-items: center;
  gap: 13px;
  padding: 16px 12px;
  color: var(--ink);
  text-align: center;
}

.party-experience-panel > * + * {
  border-left: 1px solid rgba(138, 100, 56, 0.24);
}

.party-experience-panel small {
  position: relative;
  color: #b1833e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.party-experience-panel small::after {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  width: 34px;
  height: 1px;
  background: #c99a4b;
  transform: translateX(-50%);
}

.party-experience-panel strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.2;
}

.party-experience-panel > a {
  background: linear-gradient(145deg, rgba(167, 7, 10, 0.035), rgba(167, 7, 10, 0.09));
  color: var(--wine);
  transition: background 180ms ease;
}

.party-experience-panel > a:hover,
.party-experience-panel > a:focus-visible {
  background: rgba(167, 7, 10, 0.13);
}

.party-experience-panel > a:focus-visible {
  outline: 3px solid rgba(167, 7, 10, 0.22);
  outline-offset: -4px;
}

.party-vertical-video-shell {
  width: min(100%, 294px);
  max-height: 478px;
  border: 1px solid rgba(176, 124, 49, 0.5);
  border-radius: 22px;
  outline: 0;
}

.party-video-caption {
  right: auto;
  bottom: 22px;
  left: 50%;
  display: block;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 10px 22px;
  border: 1px solid rgba(255, 253, 250, 0.32);
  border-radius: 999px;
  background: rgba(111, 8, 17, 0.82);
  text-align: center;
  transform: translateX(-50%);
}

.party-video-caption strong {
  font-size: 12px;
  letter-spacing: 0.11em;
}

@media (max-width: 1060px) {
  .party-video-hero {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.4fr);
    gap: 34px;
  }

  .party-vertical-video-shell {
    width: min(100%, 270px);
    max-height: 450px;
  }

  .party-section-nav a {
    font-size: 13px;
  }

  .party-experience-panel > span,
  .party-experience-panel > a {
    min-height: 100px;
    padding-inline: 10px;
  }
}

@media (max-width: 720px) {
  .party-video-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .party-video-hero h1 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .party-section-nav {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .party-section-nav a {
    min-width: max-content;
    padding-inline: 16px;
  }

  .party-experience-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .party-experience-panel > :nth-child(3) {
    border-top: 1px solid rgba(138, 100, 56, 0.24);
    border-left: 0;
  }

  .party-experience-panel > :nth-child(4) {
    border-top: 1px solid rgba(138, 100, 56, 0.24);
  }

  .party-vertical-video-shell {
    width: min(82vw, 330px);
    max-height: none;
  }
}

@media (max-width: 430px) {
  .party-experience-panel {
    grid-template-columns: 1fr;
  }

  .party-experience-panel > * + * {
    border-top: 1px solid rgba(138, 100, 56, 0.24);
    border-left: 0;
  }

  .party-experience-panel > span,
  .party-experience-panel > a {
    min-height: 112px;
  }
}

/* Home 2026: abertura editorial, diferenciais e números institucionais */
body.home-page .home-editorial-hero {
  position: relative;
  display: block;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: var(--wine-dark);
}

body.home-page .home-editorial-hero .hero-media {
  position: relative;
  inset: auto;
  min-height: clamp(470px, 64svh, 590px);
  background-color: var(--charcoal);
}

body.home-page .home-editorial-hero .hero-media::after {
  background:
    linear-gradient(180deg, rgba(23, 23, 20, 0.05), rgba(23, 23, 20, 0.28)),
    linear-gradient(90deg, rgba(23, 23, 20, 0.14), transparent 46%, rgba(23, 23, 20, 0.08));
}

body.home-page .home-editorial-hero .hero-video {
  object-position: 50% 28%;
}

.home-hero-lower {
  position: relative;
  padding: 0 clamp(28px, 6vw, 92px) 12px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.home-hero-desktop-card {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.38fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: end;
  width: min(1240px, 100%);
  margin: -8px auto 18px;
  padding: 12px clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(187, 143, 68, 0.72);
  border-radius: 20px;
  background: rgba(251, 247, 239, 0.98);
  box-shadow: 0 24px 60px rgba(49, 8, 18, 0.3);
}

.home-hero-desktop-copy {
  min-width: 0;
}

.home-hero-kicker {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-desktop-card h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(28px, 2.35vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-shadow: none;
}

.home-hero-desktop-card [data-cms-hero-description] {
  max-width: 820px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.home-hero-desktop-card .home-hero-kicker {
  margin-bottom: 6px;
}

.home-hero-desktop-card .hero-actions {
  display: grid;
  width: 100%;
  gap: 6px;
}

.home-hero-desktop-card .hero-actions .solid-btn,
.home-hero-desktop-card .hero-actions .light-btn {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 11px;
  letter-spacing: 0.045em;
  text-align: center;
  text-transform: uppercase;
}

.home-hero-desktop-card .hero-actions .light-btn {
  border: 1px solid rgba(116, 19, 38, 0.28);
  background: transparent;
  color: var(--wine);
}

.home-hero-mobile-card {
  display: none;
}

.home-hero-feature-cards {
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  margin: 0 auto;
}

.home-hero-feature-cards article {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: clamp(10px, 1.4vw, 14px);
  padding: 8px clamp(14px, 1.8vw, 18px);
  border: 1px solid rgba(187, 143, 68, 0.9);
  border-radius: 18px;
  color: var(--cream);
}

.home-hero-feature-cards article > span {
  display: flex;
  height: 30px;
  flex: 0 0 auto;
  gap: 4px;
  align-items: stretch;
}

.home-hero-feature-cards article > span i {
  display: block;
  width: 3px;
  background: var(--gold);
}

.home-hero-feature-cards strong {
  max-width: 420px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
  text-transform: uppercase;
}

.home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 7px solid #9f0009;
  border-bottom: 1px solid rgba(116, 19, 38, 0.16);
  background: linear-gradient(180deg, #fffdf8 0%, #fff9f0 100%);
  box-shadow: 0 14px 34px rgba(50, 22, 14, 0.06);
}

.home-hero-metrics article {
  display: grid;
  min-height: 104px;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
  padding: 14px clamp(24px, 3vw, 46px);
}

.home-hero-metrics article + article {
  border-left: 1px solid rgba(116, 19, 38, 0.16);
}

.home-hero-metrics article > strong {
  display: block;
  white-space: nowrap;
  color: #80613c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-hero-metrics h2 {
  margin-top: 0;
  color: #a4000b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.85vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
}

.home-hero-metrics p {
  max-width: 390px;
  margin-top: 2px;
  color: #4f4a49;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.25;
}

@media (max-width: 900px) and (min-width: 721px) {
  .home-hero-desktop-card {
    grid-template-columns: minmax(0, 1fr) minmax(185px, 0.38fr);
    gap: 18px;
    padding: 16px 18px;
  }

  .home-hero-desktop-card h1 {
    font-size: clamp(29px, 4vw, 34px);
  }

  .home-hero-feature-cards strong {
    font-size: clamp(17px, 2.8vw, 22px);
  }
}

@media (max-width: 720px) {
  body.home-page .home-editorial-hero .hero-media {
    min-height: clamp(370px, 112vw, 500px);
  }

  body.home-page .home-editorial-hero .hero-media::after {
    background:
      linear-gradient(180deg, rgba(23, 23, 20, 0.03) 0%, rgba(23, 23, 20, 0.11) 58%, rgba(54, 7, 18, 0.48) 100%);
  }

  body.home-page .home-editorial-hero .hero-video {
    object-position: 50% 24%;
  }

  .home-hero-lower {
    padding: 0 12px 14px;
  }

  .home-hero-desktop-card {
    display: none;
  }

  .home-hero-mobile-card {
    position: relative;
    z-index: 4;
    display: block;
    margin: -64px 0 14px;
    padding: 18px 18px 18px;
    border: 1px solid rgba(187, 143, 68, 0.76);
    border-radius: 20px;
    background: var(--cream);
    box-shadow: 0 20px 44px rgba(44, 7, 16, 0.34);
  }

  .home-hero-mobile-label {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(116, 19, 38, 0.09);
    color: var(--wine);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .home-hero-mobile-card .home-hero-kicker {
    margin-bottom: 7px;
  }

  .home-hero-mobile-card h1 {
    max-width: none;
    color: var(--ink);
    font-size: clamp(30px, 8.7vw, 36px);
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .home-hero-mobile-card [data-cms-hero-mobile-description] {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.42;
  }

  .home-hero-mobile-card .solid-btn {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border-radius: 7px;
    font-size: 11px;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
  }

  .home-hero-feature-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-hero-feature-cards article {
    min-height: 54px;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 14px;
  }

  .home-hero-feature-cards article > span {
    height: 30px;
    gap: 3px;
  }

  .home-hero-feature-cards article > span i {
    width: 2px;
  }

  .home-hero-feature-cards strong {
    min-width: 0;
    font-size: clamp(18px, 5.8vw, 22px);
    overflow-wrap: normal;
  }

  .home-hero-metrics {
    grid-template-columns: 1fr;
    border-top-width: 6px;
  }

  .home-hero-metrics article {
    display: grid;
    min-height: 98px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 18px 22px;
  }

  .home-hero-metrics article + article {
    border-top: 1px solid rgba(116, 19, 38, 0.18);
    border-left: 0;
  }

  .home-hero-metrics article > strong {
    font-size: 34px;
  }

  .home-hero-metrics h2 {
    margin-top: 0;
    font-size: 22px;
  }

  .home-hero-metrics p {
    margin-top: 5px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .home-hero-lower {
    padding-right: 12px;
    padding-left: 12px;
  }

  .home-hero-mobile-card {
    padding: 16px 15px 16px;
  }

  .home-hero-mobile-card h1 {
    font-size: 30px;
  }

  .home-hero-feature-cards article {
    padding: 8px 12px;
  }

  .home-hero-feature-cards strong {
    font-size: 18px;
  }
}

/* Chef Profissional: pagina editorial inspirada na landing aprovada */
.chef-course-page main > section:not(.chef-course-hero):not(.chef-course-proof):not(.chef-course-section):not(.chef-course-gallery) {
  display: none;
}

.chef-course-page main {
  background: var(--paper);
}

.chef-course-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(430px, 56vh, 540px);
  padding: clamp(96px, 13vw, 160px) clamp(24px, 5vw, 72px) 0;
  background:
    linear-gradient(180deg, rgba(28, 19, 15, 0.16), rgba(28, 19, 15, 0.54)),
    url("assets/photos/cozinha-bancadas.jpg") center 42% / cover;
}

.chef-course-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(28, 19, 15, 0.16), rgba(28, 19, 15, 0.56)),
    linear-gradient(90deg, rgba(28, 19, 15, 0.16), transparent 48%, rgba(28, 19, 15, 0.18));
}

.chef-course-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.chef-course-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  min-height: clamp(310px, 38vh, 380px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: end;
  margin: 0 auto;
}

.chef-course-card {
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
  padding: clamp(13px, 1.55vw, 18px) clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(187, 143, 68, 0.84);
  border-radius: 18px;
  background: rgba(251, 247, 239, 0.98);
  box-shadow: 0 28px 70px rgba(54, 7, 18, 0.28);
}

.chef-course-kicker,
.chef-course-page .eyebrow {
  margin: 0 0 6px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-course-card h1,
.chef-course-dates h2,
.chef-course-section h2,
.chef-course-gallery h2 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.chef-course-card h1 {
  max-width: 640px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1;
}

.chef-course-card p:last-child {
  max-width: 640px;
  margin-top: 8px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.35;
}

.chef-course-dates {
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
  padding: clamp(15px, 1.7vw, 20px);
  border: 1px solid rgba(244, 209, 123, 0.82);
  background:
    linear-gradient(145deg, rgba(139, 0, 21, 0.96), rgba(96, 0, 18, 0.96)),
    var(--wine);
  color: var(--cream);
  box-shadow: 0 24px 60px rgba(54, 7, 18, 0.32);
}

.chef-course-dates h2 {
  color: var(--cream);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1;
}

.chef-course-dates article {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid rgba(244, 209, 123, 0.28);
}

.chef-course-dates strong,
.chef-course-proof strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
}

.chef-course-dates strong {
  color: #f4d17b;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.08;
}

.chef-course-dates span {
  display: block;
  margin-top: 5px;
  color: rgba(251, 247, 239, 0.9);
  font-size: 12px;
  line-height: 1.3;
}

.chef-course-proof {
  padding: 22px clamp(24px, 5vw, 72px) 26px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.chef-course-proof-grid {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  margin: 0 auto;
}

.chef-course-proof article {
  min-height: 66px;
  padding: 11px 15px;
  border: 1px solid rgba(187, 143, 68, 0.92);
  color: var(--cream);
}

.chef-course-proof span {
  display: block;
  color: rgba(251, 247, 239, 0.86);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-course-proof strong {
  margin-top: 5px;
  color: var(--cream);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.02;
}

.chef-course-section,
.chef-course-gallery {
  padding: clamp(30px, 3.8vw, 48px) clamp(24px, 5vw, 72px);
}

.chef-course-section > *,
.chef-course-gallery > * {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.chef-course-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.chef-course-heading h2,
.chef-course-gallery h2,
.chef-course-final h2 {
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.08;
}

.chef-course-heading > p:not(.eyebrow),
.chef-course-two-cols > p,
.chef-course-gallery-copy p:not(.eyebrow),
.chef-course-final p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
}

.chef-course-two-cols {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  margin-top: 28px;
  align-items: start;
}

.chef-course-profile-grid,
.chef-course-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.chef-course-profile-grid article,
.chef-course-topic-grid article {
  padding: 16px;
  border: 1px solid rgba(116, 19, 38, 0.16);
  background: rgba(255, 253, 249, 0.72);
}

.chef-course-profile-grid h3 {
  color: var(--wine);
  font-size: 18px;
  line-height: 1.18;
}

.chef-course-profile-grid p,
.chef-course-topic-grid p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.chef-course-program {
  background: var(--cream);
}

.chef-course-topic-grid {
  margin-top: 26px;
}

.chef-course-topic-grid article {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.chef-course-topic-grid span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chef-course-topic-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.14;
}

.chef-course-gallery {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.chef-course-gallery > * {
  width: auto;
}

.chef-course-gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.chef-course-gallery-grid figure {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background: var(--wine-dark);
}

.chef-course-gallery-grid figure:first-child {
  grid-row: span 2;
  min-height: 394px;
}

.chef-course-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-course-gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(251, 247, 239, 0.48);
  color: var(--cream);
  font-weight: 800;
  text-transform: uppercase;
}

.chef-course-final {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.chef-course-final > * {
  width: auto;
}

.chef-course-final .eyebrow,
.chef-course-final h2,
.chef-course-final p {
  color: var(--cream);
}

.chef-course-final .contact-form {
  background: var(--cream);
}

@media (max-width: 980px) {
  .chef-course-hero-inner,
  .chef-course-heading,
  .chef-course-two-cols,
  .chef-course-gallery,
  .chef-course-final {
    grid-template-columns: 1fr;
  }

  .chef-course-dates {
    margin-top: 28px;
    margin-bottom: 0;
  }

  .chef-course-proof {
    padding-top: 20px;
  }

  .chef-course-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .chef-course-hero {
    min-height: 760px;
    padding: 250px 14px 0;
  }

  .chef-course-hero-video {
    height: 58%;
    object-position: 50% 24%;
  }

  .chef-course-hero-inner {
    min-height: auto;
    align-items: start;
    gap: 12px;
  }

  .chef-course-card {
    margin-bottom: 0;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .chef-course-card h1 {
    font-size: clamp(25px, 7.5vw, 30px);
    line-height: 1.02;
  }

  .chef-course-card p:last-child {
    font-size: 13px;
    line-height: 1.32;
  }

  .chef-course-dates {
    margin-top: 0;
    padding: 13px 15px;
  }

  .chef-course-dates h2 {
    font-size: 22px;
  }

  .chef-course-dates article {
    margin-top: 8px;
    padding-top: 8px;
  }

  .chef-course-dates strong {
    font-size: 18px;
  }

  .chef-course-dates span {
    font-size: 11.5px;
  }

  .chef-course-proof {
    padding: 22px 14px 22px;
    margin-top: 0;
  }

  .chef-course-proof-grid,
  .chef-course-profile-grid,
  .chef-course-topic-grid,
  .chef-course-gallery-grid {
    grid-template-columns: 1fr;
  }

  .chef-course-proof article {
    min-height: 52px;
    padding: 10px 13px;
  }

  .chef-course-proof strong {
    font-size: 18px;
  }

  .chef-course-gallery-grid figure,
  .chef-course-gallery-grid figure:first-child {
    min-height: 260px;
  }

  .chef-course-section,
  .chef-course-gallery {
    padding: 34px 18px;
  }
}

/* Chef Profissional: miolo refinado para paginas profissionalizantes */
.chef-course-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
  background:
    radial-gradient(circle at 78% 20%, rgba(187, 143, 68, 0.13), transparent 34%),
    var(--cream);
}

.chef-course-story > *,
.chef-course-exchange > * {
  width: auto;
}

.chef-course-story figure,
.chef-course-exchange figure {
  position: relative;
  min-height: 0;
  height: clamp(240px, 26vw, 330px);
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--wine-dark);
  box-shadow: 0 12px 34px rgba(54, 7, 18, 0.1);
}

.chef-course-story img,
.chef-course-exchange img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-course-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  margin-left: 0;
  padding: clamp(22px, 3vw, 36px);
  border-top: 1px solid rgba(116, 19, 38, 0.16);
  border-bottom: 1px solid rgba(116, 19, 38, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chef-course-story-copy h2,
.chef-course-results h2,
.chef-course-program-panel h2,
.chef-course-exchange-copy h2 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.65vw, 38px);
  line-height: 1.06;
}

.chef-course-story-copy p:not(.eyebrow),
.chef-course-results .chef-course-heading > p:not(.eyebrow),
.chef-course-program-panel p:not(.eyebrow),
.chef-course-exchange-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.5;
}

.chef-course-results {
  background:
    linear-gradient(180deg, var(--cream), var(--paper));
}

.chef-course-result-list {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  border-top: 1px solid rgba(116, 19, 38, 0.13);
}

.chef-course-result-list article {
  display: grid;
  grid-template-columns: 132px minmax(220px, 0.33fr) minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 34px);
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(116, 19, 38, 0.13);
}

.chef-course-result-list article:hover {
  background: transparent;
}

.chef-course-result-list span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chef-course-result-list strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.35vw, 34px);
  line-height: 1;
}

.chef-course-result-list p {
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.42;
}

.chef-course-program {
  background: var(--cream);
}

.chef-course-program-panel {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(22px, 3.2vw, 40px);
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 38px);
  border-top: 1px solid rgba(187, 143, 68, 0.36);
  border-bottom: 1px solid rgba(116, 19, 38, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chef-course-menu-list {
  border-top: 1px solid rgba(116, 19, 38, 0.13);
}

.chef-course-menu-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(116, 19, 38, 0.13);
}

.chef-course-menu-list span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.chef-course-menu-list strong {
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.25;
}

.chef-course-exchange {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 2.6vw, 34px);
  align-items: stretch;
  background:
    radial-gradient(circle at 22% 24%, rgba(187, 143, 68, 0.12), transparent 34%),
    var(--paper);
}

.chef-course-exchange-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  margin-right: 0;
  padding: clamp(22px, 3vw, 36px);
  border-top: 1px solid rgba(116, 19, 38, 0.16);
  border-bottom: 1px solid rgba(116, 19, 38, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chef-course-exchange-copy .text-btn {
  width: fit-content;
  margin-top: 20px;
}

.chef-course-exchange figure {
  height: clamp(230px, 24vw, 310px);
}

.chef-course-exchange figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(187, 143, 68, 0.68);
  border-radius: 14px;
  background: rgba(91, 0, 18, 0.82);
  color: var(--cream);
  font-weight: 800;
  line-height: 1.26;
}

.chef-course-final {
  background: linear-gradient(180deg, var(--cream), var(--paper));
}

.chef-course-final .eyebrow {
  color: var(--wine);
}

.chef-course-final h2 {
  color: var(--ink);
}

.chef-course-final p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .chef-course-story,
  .chef-course-program-panel,
  .chef-course-exchange {
    grid-template-columns: 1fr;
  }

  .chef-course-story-copy,
  .chef-course-exchange-copy {
    margin-right: 0;
    margin-left: 0;
  }

  .chef-course-result-list article {
    grid-template-columns: 120px minmax(190px, 0.36fr) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .chef-course-story figure,
  .chef-course-exchange figure {
    min-height: 260px;
    border-radius: 20px;
  }

  .chef-course-story-copy,
  .chef-course-program-panel,
  .chef-course-exchange-copy {
    padding: 22px 20px;
    border-radius: 20px;
  }

  .chef-course-story-copy h2,
  .chef-course-results h2,
  .chef-course-program-panel h2,
  .chef-course-exchange-copy h2 {
    font-size: clamp(29px, 9vw, 36px);
  }

  .chef-course-result-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .chef-course-menu-list article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }
}

/* Chef Profissional: secoes inspiradas na landing quatrofolhascursos.com */
.chef-lp-content {
  background: var(--cream);
}

.chef-lp-heading {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 0.56fr) minmax(260px, 0.32fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  margin: 0 auto 28px;
}

.chef-lp-heading h2 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.chef-lp-heading > p {
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.chef-lp-card-grid {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.chef-lp-card-grid article {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 18px 18px 20px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-left: 4px solid var(--wine);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.7);
}

.chef-lp-card-grid article:nth-child(even) {
  border-left-color: var(--gold);
}

.chef-lp-card-grid article::after {
  position: absolute;
  right: -26px;
  bottom: -38px;
  width: 94px;
  height: 94px;
  border: 18px solid rgba(187, 143, 68, 0.08);
  border-radius: 999px;
  content: "";
}

.chef-lp-card-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
}

.chef-lp-card-grid article:nth-child(even) span {
  background: #a87820;
}

.chef-lp-card-grid h3,
.chef-lp-differentials h3,
.chef-lp-process h2 {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

.chef-lp-card-grid h3 {
  font-size: clamp(18px, 1.45vw, 22px);
}

.chef-lp-card-grid p,
.chef-lp-differentials p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.chef-lp-media {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  gap: 16px;
  background: var(--paper);
}

.chef-lp-media > * {
  width: auto;
}

.chef-lp-banner {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 32px;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  color: var(--cream);
}

.chef-lp-banner::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 24, 21, 0.08), rgba(91, 0, 18, 0.82)),
    linear-gradient(90deg, rgba(91, 0, 18, 0.62), transparent 70%);
  content: "";
}

.chef-lp-banner > * {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.chef-lp-banner .eyebrow {
  color: #efc768;
}

.chef-lp-banner .eyebrow::before {
  background: rgba(251, 247, 239, 0.58);
}

.chef-course-page .chef-lp-banner .eyebrow,
.chef-course-page .chef-lp-process .eyebrow {
  color: #f4d17b;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.36);
}

.chef-course-page .chef-lp-banner .eyebrow::before,
.chef-course-page .chef-lp-process .eyebrow::before {
  background: rgba(251, 247, 239, 0.72);
}

.chef-lp-banner h2 {
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.04;
}

.chef-lp-banner:not(.chef-lp-banner-large) h2 {
  font-size: clamp(21px, 1.8vw, 27px);
}

.chef-lp-banner p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 10px;
  color: rgba(251, 247, 239, 0.94);
  font-size: 15px;
  line-height: 1.38;
}

.pastry-feature-shot {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 10px;
  width: min(84vw, 1160px);
  margin: 12px auto;
  overflow: hidden;
  border: 1px solid rgba(218, 172, 86, 0.52);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.08) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 15% 18%, rgba(255, 242, 205, 0.18), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(218, 172, 86, 0.26), transparent 30%),
    linear-gradient(135deg, #3d0712 0%, #71091d 46%, #8b1228 60%, #43000f 100%);
  background-size: 54px 100%, auto, auto, auto;
  box-shadow:
    0 18px 46px rgba(62, 20, 24, 0.16),
    inset 0 0 0 1px rgba(255, 250, 242, 0.08);
}

.pastry-feature-shot::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(241, 205, 126, 0.42);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.pastry-feature-shot::after {
  position: absolute;
  top: 28px;
  right: clamp(22px, 3vw, 42px);
  width: 96px;
  height: 96px;
  border: 1px solid rgba(241, 205, 126, 0.32);
  border-radius: 50%;
  box-shadow:
    -18px 18px 0 rgba(241, 205, 126, 0.08),
    -36px 36px 0 rgba(255, 250, 242, 0.04);
  content: "";
  pointer-events: none;
}

.pastry-feature-shot figure {
  position: relative;
  z-index: 1;
  height: clamp(300px, 28vw, 390px);
  min-height: 0;
  margin: 14px 0 14px 14px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(241, 205, 126, 0.58);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 14px 30px rgba(24, 8, 10, 0.22);
}

.pastry-feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  border-radius: 17px;
}

.pastry-feature-shot div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 38px) clamp(22px, 3vw, 36px) clamp(22px, 3vw, 38px) 6px;
  color: var(--cream);
}

.pastry-feature-shot .eyebrow {
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(241, 205, 126, 0.46);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: #fffaf2 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.pastry-feature-shot .eyebrow::before {
  display: none;
}

.pastry-feature-shot h2 {
  max-width: 370px;
  margin: 6px 0 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.02;
}

.pastry-feature-shot p:not(.eyebrow) {
  max-width: 350px;
  margin: 8px 0 0;
  color: rgba(251, 247, 239, 0.88);
  font-size: 13px;
  line-height: 1.32;
}

.chef-lp-differentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: var(--paper);
}

.chef-lp-differentials article {
  min-height: 160px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-top: 3px solid var(--wine);
  border-radius: 16px;
  background: rgba(251, 247, 239, 0.84);
}

.chef-lp-differentials article::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 12px;
  background: var(--gold);
  content: "";
}

.chef-lp-differentials h3 {
  font-size: clamp(19px, 1.55vw, 24px);
}

.chef-lp-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  background: var(--paper);
}

.chef-lp-process > div {
  padding: clamp(24px, 3.2vw, 36px);
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.chef-lp-process > div + div {
  border-left: 1px solid rgba(251, 247, 239, 0.28);
}

.chef-lp-process .eyebrow {
  color: #f4d17b;
}

.chef-lp-process .eyebrow::before {
  background: rgba(251, 247, 239, 0.48);
}

.chef-course-dates .eyebrow,
.chef-course-dates .chef-course-kicker {
  color: #f4d17b;
}

.chef-lp-process h2 {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(22px, 2vw, 29px);
}

@media (max-width: 980px) {
  .chef-lp-heading,
  .chef-lp-media {
    grid-template-columns: 1fr;
  }

  .chef-lp-card-grid,
  .chef-lp-differentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .chef-lp-card-grid,
  .chef-lp-differentials,
  .chef-lp-process {
    grid-template-columns: 1fr;
  }

  .chef-lp-banner {
    min-height: 230px;
    padding: 24px 20px;
  }

  .chef-lp-card-grid article,
  .chef-lp-differentials article {
    min-height: auto;
  }
}

.chef-course-page .chef-lp-banner .eyebrow,
.chef-course-page .chef-lp-process .eyebrow {
  color: #fffdf7 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48) !important;
}

.chef-course-page .chef-lp-banner .eyebrow::before,
.chef-course-page .chef-lp-process .eyebrow::before {
  background: rgba(255, 253, 247, 0.9) !important;
}

/* Confeitaria Profissional: topo com video lateral e quadro sobreposto */
.pastry-course-main {
  background: var(--paper);
}

.pastry-hero {
  padding: clamp(28px, 3.4vw, 48px) 0 clamp(18px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 12% 78%, rgba(187, 143, 68, 0.2), transparent 28%),
    linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.pastry-hero-inner {
  display: grid;
  width: min(1440px, calc(100% - 42px));
  grid-template-columns: minmax(520px, 0.62fr) minmax(330px, 0.38fr);
  align-items: center;
  margin: 0 auto;
}

.pastry-video-side {
  position: relative;
  height: clamp(390px, 34vw, 490px);
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(32, 24, 21, 0.04), rgba(91, 0, 18, 0.58)),
    url("assets/photos/aula-confeitaria.jpg") center / cover;
  box-shadow: 0 34px 92px rgba(54, 7, 18, 0.18);
}

.pastry-video-side::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(251, 245, 235, 0.36));
  content: "";
}

.pastry-video-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pastry-video-side span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 11px 14px;
  border: 1px solid rgba(251, 247, 239, 0.62);
  border-radius: 999px;
  background: rgba(91, 0, 18, 0.82);
  color: var(--cream);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pastry-hero-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  margin-left: clamp(-96px, -5vw, -64px);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid rgba(187, 143, 68, 0.72);
  border-radius: 28px;
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 30px 78px rgba(54, 7, 18, 0.14);
}

.pastry-hero-card .eyebrow {
  order: 1;
  margin-bottom: 7px;
  font-size: 8.5px;
  letter-spacing: 0.14em;
}

.pastry-hero-card .eyebrow::before {
  width: 34px;
}

.pastry-hero-card h1 {
  order: 3;
  max-width: 520px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 2.25vw, 32px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.pastry-hero-card > p:not(.eyebrow) {
  order: 4;
  max-width: 500px;
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(12.5px, 0.9vw, 13.5px);
  line-height: 1.34;
}

.pastry-hero-actions {
  order: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.pastry-hero-actions .ghost-btn {
  border-color: rgba(116, 19, 38, 0.22);
  color: var(--wine);
}

.pastry-hero-actions .solid-btn,
.pastry-hero-actions .ghost-btn {
  padding: 10px 14px;
  font-size: 11px;
}

.pastry-hero-actions .solid-btn {
  background: linear-gradient(135deg, #a87820, #7a5417);
  color: var(--cream);
}

.pastry-date-ticket {
  order: 2;
  display: grid;
  max-width: 600px;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  align-items: baseline;
  margin: 0 0 12px;
  padding: 10px 13px;
  border: 1px solid rgba(187, 143, 68, 0.72);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.96), rgba(232, 212, 181, 0.92));
  box-shadow: 0 16px 38px rgba(54, 7, 18, 0.1);
}

.pastry-date-ticket span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: none;
  writing-mode: horizontal-tb;
}

.pastry-date-ticket strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1;
}

.pastry-date-ticket small {
  color: var(--muted);
  font-size: 11.5px;
}

.pastry-proof {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px auto 0;
}

.pastry-proof article {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  padding: 14px 16px 15px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-left: 4px solid var(--wine);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 253, 249, 0.9), rgba(248, 237, 224, 0.82));
}

.pastry-proof article:nth-child(even) {
  border-left-color: var(--gold);
}

.pastry-proof article::after {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 78px;
  height: 78px;
  border: 15px solid rgba(187, 143, 68, 0.08);
  border-radius: 999px;
  content: "";
}

.pastry-proof span {
  display: block;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pastry-proof strong {
  display: block;
  margin-top: 7px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.06;
}

.pastry-course-main .chef-lp-banner .eyebrow,
.pastry-course-main .chef-lp-process .eyebrow {
  color: #fffdf7 !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.48) !important;
}

.pastry-course-main .chef-lp-banner .eyebrow::before,
.pastry-course-main .chef-lp-process .eyebrow::before {
  background: rgba(255, 253, 247, 0.9) !important;
}

.page-form-section.pastry-enroll-section {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
  background:
    radial-gradient(circle at 18% 18%, rgba(194, 149, 75, 0.18), transparent 30%),
    linear-gradient(135deg, #192018 0%, #213524 52%, #141914 100%);
}

.pastry-enroll-photo {
  position: relative;
  min-height: clamp(390px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 170, 86, 0.42);
  border-radius: 28px;
  background: var(--wine-dark);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.pastry-enroll-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.pastry-enroll-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.04) 0%, rgba(20, 17, 14, 0.22) 42%, rgba(20, 17, 14, 0.84) 100%),
    linear-gradient(90deg, rgba(116, 19, 38, 0.2), transparent 58%);
}

.pastry-enroll-photo figcaption {
  position: absolute;
  right: clamp(22px, 3vw, 44px);
  bottom: clamp(22px, 3vw, 42px);
  left: clamp(22px, 3vw, 44px);
  z-index: 1;
  color: var(--cream);
}

.pastry-enroll-photo span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fffdf7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pastry-enroll-photo span::before {
  width: 46px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.pastry-enroll-photo strong {
  display: block;
  max-width: 560px;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 800;
  line-height: 0.96;
}

.pastry-enroll-photo small {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 248, 238, 0.84);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
}

.pastry-enroll-section .contact-form {
  background: rgba(255, 252, 246, 0.97);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.rapid-course-main {
  background: var(--cream);
}

.rapid-hero {
  padding: clamp(30px, 3.8vw, 54px) 0 clamp(20px, 2.8vw, 38px);
  background:
    radial-gradient(circle at 12% 82%, rgba(201, 154, 67, 0.18), transparent 26%),
    linear-gradient(135deg, var(--wine), var(--wine-dark));
}

.rapid-hero-inner {
  display: grid;
  width: min(1420px, calc(100% - 44px));
  grid-template-columns: minmax(360px, 0.46fr) minmax(560px, 0.54fr);
  align-items: center;
  gap: 0;
  margin: 0 auto;
}

.rapid-hero-card {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-right: -70px;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(201, 154, 67, 0.72);
  border-radius: 28px;
  background: rgba(255, 248, 237, 0.97);
  box-shadow: 0 28px 80px rgba(45, 8, 15, 0.3);
}

.rapid-hero-card .eyebrow {
  color: var(--wine);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.rapid-hero-card .eyebrow::before {
  background: var(--wine);
}

.rapid-hero-card h1 {
  max-width: 560px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.5vw, 56px);
  line-height: 0.96;
}

.rapid-hero-card > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.42;
}

.rapid-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.rapid-hero-actions .solid-btn,
.rapid-hero-actions .ghost-btn {
  padding: 11px 18px;
  font-size: 12px;
}

.rapid-hero-actions .ghost-btn {
  border-color: rgba(116, 19, 38, 0.24);
  color: var(--wine);
}

.rapid-hero-photo {
  min-height: clamp(360px, 36vw, 540px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 30px;
  box-shadow: 0 30px 88px rgba(20, 8, 10, 0.34);
}

.rapid-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.rapid-fold {
  padding: 0 22px clamp(54px, 6vw, 82px);
  background: linear-gradient(180deg, var(--wine) 0 116px, var(--cream) 116px 100%);
}

.rapid-proof {
  display: grid;
  width: min(1180px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto clamp(38px, 4vw, 56px);
  padding-top: 28px;
}

.rapid-proof article {
  position: relative;
  min-height: 78px;
  overflow: hidden;
  padding: 14px 16px 15px;
  border: 1px solid rgba(201, 154, 67, 0.75);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(107, 0, 22, 0.7);
  color: var(--cream);
}

.rapid-proof span {
  display: block;
  color: #f4d586;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rapid-proof strong {
  display: block;
  margin-top: 8px;
  color: #fffdf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.02;
}

.rapid-program {
  display: grid;
  width: min(1280px, 100%);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  margin: 0 auto;
}

.rapid-program-copy {
  padding-top: 8px;
}

.rapid-program-copy .eyebrow {
  color: var(--wine);
}

.rapid-program-copy h2 {
  max-width: 510px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 0.98;
}

.rapid-program-copy p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.44;
}

.rapid-program-list {
  display: grid;
  gap: 14px;
}

.rapid-program-list article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 16px 18px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-left: 6px solid var(--wine);
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 100%, rgba(201, 154, 67, 0.12), transparent 26%),
    rgba(255, 252, 246, 0.98);
  box-shadow: 0 18px 44px rgba(82, 34, 22, 0.08);
}

.rapid-program-list article:nth-child(2) {
  border-left-color: var(--gold);
}

.rapid-program-list article:nth-child(3) {
  border-left-color: #253623;
}

.rapid-program-list article > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 800;
}

.rapid-program-list article:nth-child(2) > span {
  background: var(--gold);
}

.rapid-program-list article:nth-child(3) > span {
  background: #253623;
}

.rapid-program-list h3 {
  margin: 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1;
}

.rapid-program-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.rapid-program-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-chef-main {
  background: #fff8ed;
  overflow: hidden;
}

.mini-chef-hero {
  position: relative;
  padding: clamp(38px, 5vw, 74px) 0 clamp(42px, 6vw, 84px);
  background:
    radial-gradient(circle at 12% 18%, rgba(140, 198, 62, 0.22), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(201, 154, 67, 0.22), transparent 24%),
    linear-gradient(135deg, #fff8ed 0%, #f8efe1 52%, #fffaf0 100%);
}

.mini-chef-hero::before,
.mini-chef-hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.mini-chef-hero::before {
  top: 90px;
  left: 4vw;
  width: 88px;
  height: 88px;
  border: 16px solid rgba(140, 198, 62, 0.26);
  animation: miniFloat 7s ease-in-out infinite;
}

.mini-chef-hero::after {
  right: 7vw;
  bottom: 62px;
  width: 54px;
  height: 54px;
  background: rgba(201, 154, 67, 0.22);
  animation: miniFloat 6s ease-in-out infinite reverse;
}

.mini-chef-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1360px, calc(100% - 44px));
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0 auto;
}

.mini-chef-copy {
  padding: clamp(26px, 3.6vw, 48px);
  border: 1px solid rgba(201, 154, 67, 0.58);
  border-radius: 34px;
  background: rgba(255, 252, 246, 0.9);
  box-shadow: 0 26px 70px rgba(90, 45, 28, 0.14);
}

.mini-chef-copy .eyebrow {
  color: var(--wine);
}

.mini-chef-copy .eyebrow::before {
  background: var(--wine);
}

.mini-chef-copy h1 {
  max-width: 650px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.94;
}

.mini-chef-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.32vw, 20px);
  line-height: 1.42;
}

.mini-chef-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mini-chef-actions .ghost-btn {
  border-color: rgba(116, 19, 38, 0.24);
  color: var(--wine);
}

.mini-chef-photo-stage {
  position: relative;
  min-height: clamp(420px, 42vw, 620px);
}

.mini-chef-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 67, 0.48);
  background: var(--cream);
  box-shadow: 0 28px 82px rgba(42, 22, 16, 0.2);
}

.mini-chef-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-chef-photo.is-main {
  inset: 0 0 0 72px;
  border-radius: 44px;
  transform: rotate(1.2deg);
}

.mini-chef-photo.is-floating {
  bottom: -14px;
  left: 0;
  width: min(330px, 45%);
  height: min(260px, 44%);
  border: 10px solid #fff8ed;
  border-radius: 30px;
  transform: rotate(-4deg);
  animation: miniFloat 6.5s ease-in-out infinite;
}

.mini-chef-badge {
  position: absolute;
  top: 26px;
  right: 24px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 248, 237, 0.52);
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(116, 19, 38, 0.28);
}

.mini-chef-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(32px, 4vw, 54px) max(22px, calc((100% - 1240px) / 2));
  background: linear-gradient(135deg, #253623 0%, #182318 100%);
}

.mini-chef-strip article {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 20px 20px 18px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 24px;
  background: rgba(255, 248, 237, 0.06);
  color: var(--cream);
}

.mini-chef-strip article::after {
  position: absolute;
  right: -26px;
  bottom: -36px;
  width: 92px;
  height: 92px;
  border: 18px solid rgba(201, 154, 67, 0.15);
  border-radius: 50%;
  content: "";
}

.mini-chef-strip span {
  color: #f4d586;
  font-size: 12px;
  font-weight: 900;
}

.mini-chef-strip strong {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 0.98;
}

.mini-chef-strip p {
  margin: 10px 0 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 14px;
  line-height: 1.42;
}

.mini-chef-learn,
.mini-chef-journey,
.mini-chef-gallery-section {
  padding: clamp(58px, 7vw, 96px) max(22px, calc((100% - 1240px) / 2));
}

.mini-chef-cards,
.mini-chef-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-chef-cards article,
.mini-chef-option-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px 22px 20px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-top: 5px solid var(--wine);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 100%, rgba(201, 154, 67, 0.14), transparent 30%),
    rgba(255, 252, 246, 0.98);
  box-shadow: 0 18px 46px rgba(82, 34, 22, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mini-chef-cards article:hover,
.mini-chef-option-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(82, 34, 22, 0.12);
}

.mini-chef-cards article:nth-child(even),
.mini-chef-option-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.mini-chef-cards article:nth-child(3),
.mini-chef-option-grid article:nth-child(3) {
  border-top-color: #253623;
}

.mini-chef-cards span,
.mini-chef-option-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-chef-cards h3,
.mini-chef-option-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 0.98;
}

.mini-chef-cards p,
.mini-chef-option-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.mini-chef-parents {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) max(22px, calc((100% - 1240px) / 2));
  background:
    radial-gradient(circle at 86% 26%, rgba(201, 154, 67, 0.18), transparent 24%),
    linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--cream);
}

.mini-chef-parents .eyebrow,
.mini-chef-form .eyebrow {
  color: #fffdf7;
}

.mini-chef-parents .eyebrow::before,
.mini-chef-form .eyebrow::before {
  background: #fffdf7;
}

.mini-chef-parents h2 {
  max-width: 560px;
  color: #fffdf7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.96;
}

.mini-chef-parents-copy p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 16px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 17px;
  line-height: 1.48;
}

.mini-chef-parents-list {
  display: grid;
  gap: 14px;
}

.mini-chef-parents-list article {
  padding: 20px 22px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 22px;
  background: rgba(255, 248, 237, 0.08);
}

.mini-chef-parents-list strong {
  display: block;
  color: #f4d586;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.mini-chef-parents-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 15px;
  line-height: 1.42;
}

.mini-chef-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.9);
}

.mini-chef-steps article {
  min-height: 210px;
  padding: 24px 22px;
  border-right: 1px solid rgba(116, 19, 38, 0.12);
}

.mini-chef-steps article:last-child {
  border-right: 0;
}

.mini-chef-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.mini-chef-steps h3 {
  margin: 18px 0 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 0.98;
}

.mini-chef-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.mini-chef-options {
  padding: clamp(58px, 7vw, 96px) max(22px, calc((100% - 1240px) / 2));
  background: #f8efe1;
}

.mini-chef-option-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-chef-option-grid article {
  min-height: 220px;
}

.mini-chef-option-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-chef-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.mini-chef-gallery figure {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--wine-dark);
}

.mini-chef-gallery figure:first-child {
  min-height: 430px;
}

.mini-chef-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mini-chef-gallery figure:hover img {
  transform: scale(1.04);
}

.mini-chef-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  background: rgba(40, 20, 16, 0.66);
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.page-form-section.mini-chef-form {
  background:
    radial-gradient(circle at 18% 18%, rgba(140, 198, 62, 0.14), transparent 24%),
    linear-gradient(135deg, #253623 0%, #172117 100%);
}

.mini-chef-form .contact-form {
  background: rgba(255, 252, 246, 0.98);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

@keyframes miniFloat {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
}

@media (max-width: 980px) {
  .mini-chef-hero-inner,
  .mini-chef-parents {
    grid-template-columns: 1fr;
  }

  .mini-chef-photo-stage {
    min-height: 430px;
  }

  .mini-chef-photo.is-main {
    inset: 0;
  }

  .mini-chef-strip,
  .mini-chef-cards,
  .mini-chef-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-chef-steps article:nth-child(2) {
    border-right: 0;
  }

  .mini-chef-steps article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(116, 19, 38, 0.12);
  }

  .mini-chef-option-grid,
  .mini-chef-gallery {
    grid-template-columns: 1fr;
  }

  .mini-chef-gallery figure,
  .mini-chef-gallery figure:first-child {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .mini-chef-hero {
    padding: 28px 0 42px;
  }

  .mini-chef-hero-inner {
    width: calc(100% - 28px);
    gap: 24px;
  }

  .mini-chef-copy {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .mini-chef-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 0.98;
  }

  .mini-chef-photo-stage {
    min-height: 360px;
  }

  .mini-chef-photo.is-main {
    border-radius: 26px;
    transform: none;
  }

  .mini-chef-photo.is-floating {
    width: 46%;
    height: 34%;
    border-width: 7px;
    border-radius: 20px;
  }

  .mini-chef-badge {
    top: 18px;
    right: 16px;
    padding: 10px 13px;
    font-size: 10px;
  }

  .mini-chef-strip,
  .mini-chef-cards,
  .mini-chef-steps {
    grid-template-columns: 1fr;
  }

  .mini-chef-strip,
  .mini-chef-learn,
  .mini-chef-parents,
  .mini-chef-journey,
  .mini-chef-options,
  .mini-chef-gallery-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .mini-chef-steps article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(116, 19, 38, 0.12);
  }

  .mini-chef-steps article:last-child {
    border-bottom: 0;
  }
}

/* Mini Chef: ajuste de escala e linguagem visual mais infantil */
.mini-chef-hero {
  padding: clamp(26px, 3.6vw, 46px) 0 clamp(30px, 4vw, 56px);
  background:
    radial-gradient(circle at 10% 20%, rgba(140, 198, 62, 0.32) 0 72px, transparent 74px),
    radial-gradient(circle at 72% 8%, rgba(255, 198, 72, 0.34) 0 58px, transparent 60px),
    radial-gradient(circle at 91% 70%, rgba(167, 7, 10, 0.16) 0 86px, transparent 88px),
    linear-gradient(135deg, #fff7e8 0%, #fff0d2 48%, #f4f9dc 100%);
}

.mini-chef-hero-inner {
  width: min(1260px, calc(100% - 56px));
  grid-template-columns: minmax(330px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(22px, 3vw, 42px);
}

.mini-chef-copy {
  max-width: 560px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 2px solid rgba(201, 154, 67, 0.45);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(140, 198, 62, 0.14), transparent 34%),
    rgba(255, 252, 246, 0.94);
}

.mini-chef-copy .eyebrow {
  margin-bottom: 12px;
  color: #7a0d22;
  font-size: 10px;
}

.mini-chef-copy h1 {
  max-width: 500px;
  color: #6e0c21;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 0.98;
}

.mini-chef-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 12px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.38;
}

.mini-chef-actions {
  margin-top: 18px;
}

.mini-chef-actions .solid-btn,
.mini-chef-actions .ghost-btn {
  padding: 11px 16px;
  font-size: 12px;
}

.mini-chef-actions .solid-btn {
  background: linear-gradient(135deg, #a7070a, #7a0d22);
}

.mini-chef-actions .ghost-btn {
  background: rgba(140, 198, 62, 0.12);
}

.mini-chef-photo-stage {
  min-height: clamp(330px, 31vw, 455px);
}

.mini-chef-photo.is-main {
  inset: 0 0 0 48px;
  border-radius: 30px;
}

.mini-chef-photo.is-floating {
  bottom: -10px;
  width: min(260px, 38%);
  height: min(190px, 38%);
  border-width: 8px;
  border-radius: 22px;
}

.mini-chef-badge {
  top: 18px;
  right: 18px;
  padding: 11px 15px;
  background: linear-gradient(135deg, #8cc63e, #5e8f24);
  color: #fffdf7;
  font-size: 10px;
}

.mini-chef-strip {
  gap: 12px;
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 198, 72, 0.2), transparent 20%),
    linear-gradient(135deg, #7a0d22 0%, #263823 100%);
}

.mini-chef-strip article {
  min-height: 118px;
  padding: 16px 16px 14px;
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.1);
}

.mini-chef-strip article:nth-child(2) {
  background: rgba(140, 198, 62, 0.16);
}

.mini-chef-strip article:nth-child(3) {
  background: rgba(255, 198, 72, 0.16);
}

.mini-chef-strip article:nth-child(4) {
  background: rgba(255, 248, 237, 0.14);
}

.mini-chef-strip strong {
  margin-top: 8px;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1;
}

.mini-chef-strip p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.32;
}

.mini-chef-learn,
.mini-chef-journey,
.mini-chef-gallery-section,
.mini-chef-options {
  padding-top: clamp(42px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.mini-chef-cards {
  gap: 12px;
}

.mini-chef-cards article,
.mini-chef-option-grid article {
  min-height: 150px;
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.mini-chef-cards article:nth-child(1) {
  background: linear-gradient(180deg, #fff9ec, #fff0d5);
}

.mini-chef-cards article:nth-child(2) {
  background: linear-gradient(180deg, #f9ffe9, #edf8d2);
}

.mini-chef-cards article:nth-child(3) {
  background: linear-gradient(180deg, #fff5f0, #ffe4d8);
}

.mini-chef-cards article:nth-child(4) {
  background: linear-gradient(180deg, #fff8ed, #f2ecd8);
}

.mini-chef-cards h3,
.mini-chef-option-grid h3 {
  font-size: clamp(21px, 1.65vw, 27px);
  line-height: 1;
}

.mini-chef-cards p,
.mini-chef-option-grid p {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.34;
}

.mini-chef-parents h2 {
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1;
}

.mini-chef-parents-list strong {
  font-size: 23px;
}

.mini-chef-steps article {
  min-height: 170px;
  padding: 19px 18px;
}

.mini-chef-steps h3 {
  font-size: clamp(21px, 1.55vw, 27px);
}

.mini-chef-steps p {
  font-size: 13.5px;
}

@media (max-width: 980px) {
  .mini-chef-hero-inner {
    width: calc(100% - 36px);
  }

  .mini-chef-copy {
    max-width: none;
  }

  .mini-chef-photo-stage {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .mini-chef-copy h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .mini-chef-photo-stage {
    min-height: 300px;
  }

  .mini-chef-strip article,
  .mini-chef-cards article,
  .mini-chef-option-grid article {
    min-height: auto;
  }
}

/* Mini Chef: cards visiveis na primeira dobra */
.mini-chef-hero {
  padding-top: clamp(18px, 2.2vw, 30px);
  padding-bottom: clamp(10px, 1.5vw, 18px);
}

.mini-chef-hero-inner {
  align-items: end;
}

.mini-chef-copy {
  padding: clamp(18px, 1.8vw, 26px);
}

.mini-chef-copy h1 {
  font-size: clamp(30px, 2.65vw, 42px);
}

.mini-chef-copy > p:not(.eyebrow) {
  font-size: clamp(14px, 0.98vw, 16px);
}

.mini-chef-photo-stage {
  min-height: clamp(275px, 25vw, 370px);
}

.mini-chef-photo.is-floating {
  bottom: -6px;
  width: min(220px, 34%);
  height: min(150px, 34%);
}

.mini-chef-strip {
  position: relative;
  z-index: 3;
  margin-top: -4px;
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(16px, 2vw, 24px);
}

.mini-chef-strip article {
  min-height: 96px;
  padding: 13px 14px 12px;
}

.mini-chef-strip strong {
  font-size: clamp(18px, 1.25vw, 22px);
}

.mini-chef-strip p {
  font-size: 12.5px;
  line-height: 1.28;
}

@media (max-width: 980px) {
  .mini-chef-photo-stage {
    min-height: 310px;
  }
}

@media (max-width: 620px) {
  .mini-chef-hero {
    padding-bottom: 18px;
  }

  .mini-chef-photo-stage {
    min-height: 260px;
  }

  .mini-chef-strip {
    margin-top: 0;
  }
}

/* Mini Chef: secoes mais leves e formulario com imagem */
.mini-chef-parents {
  background:
    radial-gradient(circle at 9% 18%, rgba(140, 198, 62, 0.28) 0 90px, transparent 92px),
    radial-gradient(circle at 88% 22%, rgba(255, 198, 72, 0.24) 0 110px, transparent 112px),
    linear-gradient(135deg, #fff3d8 0%, #f5fbdc 52%, #fff8ed 100%);
  color: var(--ink);
}

.mini-chef-parents .eyebrow {
  color: #7a0d22;
}

.mini-chef-parents .eyebrow::before {
  background: #7a0d22;
}

.mini-chef-parents h2 {
  color: #6e0c21;
}

.mini-chef-parents-copy p:not(.eyebrow) {
  color: #5f554d;
}

.mini-chef-parents-list article {
  border-color: rgba(140, 198, 62, 0.28);
  background: rgba(255, 252, 246, 0.76);
  box-shadow: 0 16px 42px rgba(82, 34, 22, 0.08);
}

.mini-chef-parents-list article:nth-child(2) {
  border-color: rgba(201, 154, 67, 0.34);
  background: rgba(255, 245, 217, 0.82);
}

.mini-chef-parents-list article:nth-child(3) {
  border-color: rgba(167, 7, 10, 0.16);
  background: rgba(255, 238, 225, 0.82);
}

.mini-chef-parents-list strong {
  color: #7a0d22;
}

.mini-chef-parents-list span {
  color: #5f554d;
}

.page-form-section.mini-chef-form {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 198, 72, 0.18), transparent 26%),
    linear-gradient(135deg, #263823 0%, #f5fbdc 100%);
}

.mini-chef-form-photo {
  position: relative;
  min-height: clamp(420px, 36vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 28px;
  background: #253623;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.mini-chef-form-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.mini-chef-form-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(22, 25, 18, 0.03), rgba(22, 25, 18, 0.78)),
    radial-gradient(circle at 84% 16%, rgba(140, 198, 62, 0.2), transparent 28%);
}

.mini-chef-form-photo figcaption {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(22px, 3vw, 42px);
  left: clamp(22px, 3vw, 42px);
  z-index: 1;
  color: #fffdf7;
}

.mini-chef-form-photo span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f4d586;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-chef-form-photo span::before {
  width: 42px;
  height: 2px;
  content: "";
  background: #f4d586;
}

.mini-chef-form-photo strong {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.98;
}

.mini-chef-form-photo small {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: rgba(255, 248, 237, 0.82);
  font-size: 16px;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .page-form-section.mini-chef-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .mini-chef-form-photo {
    min-height: 340px;
    border-radius: 22px;
  }

  .mini-chef-form-photo strong {
    font-size: clamp(28px, 8vw, 38px);
  }
}

/* Mini Chef: formulario mais compacto e refinado */
.page-form-section.mini-chef-form {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.72fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.mini-chef-form-photo {
  min-height: clamp(300px, 27vw, 410px);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.mini-chef-form-photo figcaption {
  right: clamp(18px, 2.2vw, 30px);
  bottom: clamp(18px, 2.2vw, 30px);
  left: clamp(18px, 2.2vw, 30px);
}

.mini-chef-form-photo strong {
  max-width: 420px;
  font-size: clamp(25px, 2.25vw, 36px);
}

.mini-chef-form-photo small {
  max-width: 420px;
  font-size: 14px;
}

.mini-chef-form .contact-form {
  gap: 11px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.mini-chef-form .contact-form label {
  gap: 6px;
  font-size: 13px;
}

.mini-chef-form .contact-form input,
.mini-chef-form .contact-form select {
  min-height: 44px;
  padding: 10px 13px;
  font-size: 14px;
}

.mini-chef-form .contact-form .solid-btn {
  min-height: 46px;
  margin-top: 4px;
}

.mini-chef-form .turnstile-check {
  min-height: 58px;
}

/* Agenda: pagina comercial compacta */
.agenda-main {
  background: var(--cream);
}

.agenda-sales-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px) max(22px, calc((100% - 1280px) / 2));
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 154, 67, 0.18), transparent 24%),
    linear-gradient(135deg, #fff8ed 0%, #f7efdf 100%);
}

.agenda-sales-copy {
  padding: clamp(22px, 2.7vw, 36px);
  border: 1px solid rgba(201, 154, 67, 0.38);
  border-radius: 26px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 20px 56px rgba(82, 34, 22, 0.08);
}

.agenda-sales-copy .eyebrow,
.agenda-sales-heading .eyebrow {
  color: var(--wine);
}

.agenda-sales-copy .eyebrow::before,
.agenda-sales-heading .eyebrow::before {
  background: var(--wine);
}

.agenda-sales-copy h1 {
  max-width: 560px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.96;
}

.agenda-sales-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.agenda-sales-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.agenda-sales-actions .solid-btn,
.agenda-sales-actions .ghost-btn {
  padding: 11px 17px;
  font-size: 12px;
}

.agenda-sales-actions .ghost-btn {
  border-color: rgba(116, 19, 38, 0.24);
  color: var(--wine);
}

.agenda-sales-photo {
  min-height: clamp(300px, 31vw, 440px);
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(30, 20, 16, 0.16);
}

.agenda-sales-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.agenda-status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 26px max(22px, calc((100% - 1220px) / 2));
  background: linear-gradient(135deg, var(--wine), #253623);
}

.agenda-status-strip article {
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 18px;
  background: rgba(255, 248, 237, 0.08);
  color: var(--cream);
}

.agenda-status-strip span,
.agenda-pill {
  display: inline-flex;
  color: #f4d586;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-status-strip strong {
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1;
}

.agenda-status-strip p {
  margin: 8px 0 0;
  color: rgba(255, 248, 237, 0.78);
  font-size: 13px;
  line-height: 1.34;
}

.agenda-sales-section,
.agenda-reserve-flow {
  padding: clamp(46px, 5.5vw, 78px) max(22px, calc((100% - 1240px) / 2));
}

.agenda-sales-section.is-soft {
  background: #f8efe1;
}

.agenda-sales-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.agenda-sales-heading h2 {
  max-width: 560px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 0.98;
}

.agenda-sales-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.agenda-sales-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.agenda-sales-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-top: 5px solid var(--wine);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 100%, rgba(201, 154, 67, 0.12), transparent 28%),
    rgba(255, 252, 246, 0.98);
  box-shadow: 0 16px 42px rgba(82, 34, 22, 0.07);
}

.agenda-sales-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.agenda-sales-grid article:nth-child(3) {
  border-top-color: #253623;
}

.agenda-pill {
  color: var(--wine);
}

.agenda-pill.is-gold {
  color: #9a6a19;
}

.agenda-sales-grid h3,
.agenda-interest-list h3,
.agenda-flow-grid h3 {
  margin: 12px 0 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1;
}

.agenda-sales-grid p,
.agenda-interest-list p,
.agenda-flow-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.agenda-sales-grid small {
  display: block;
  margin-top: 12px;
  color: #9a6a19;
  font-size: 13px;
  font-weight: 850;
}

.agenda-sales-grid a,
.agenda-interest-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.agenda-interest-list {
  display: grid;
  gap: 12px;
}

.agenda-interest-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.96);
}

.agenda-interest-list span {
  color: var(--wine);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-interest-list h3 {
  margin-top: 6px;
  font-size: clamp(22px, 1.7vw, 28px);
}

.agenda-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.agenda-flow-grid article {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.96);
}

.agenda-flow-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.agenda-main .agenda-feature {
  padding-top: clamp(46px, 5vw, 70px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.agenda-main .agenda-calendar div {
  min-height: 150px;
  padding: 16px;
}

.agenda-main .agenda-calendar strong {
  font-size: 34px;
}

.agenda-main .agenda-card {
  padding: 17px 18px;
  border-radius: 18px;
}

.agenda-main .agenda-card h3 {
  margin: 6px 0 4px;
  font-size: clamp(22px, 1.8vw, 28px);
}

.agenda-main .agenda-card p {
  font-size: 14px;
}

@media (max-width: 980px) {
  .agenda-sales-hero,
  .agenda-sales-heading {
    grid-template-columns: 1fr;
  }

  .agenda-status-strip,
  .agenda-sales-grid,
  .agenda-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .agenda-sales-hero,
  .agenda-sales-section,
  .agenda-reserve-flow {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agenda-sales-copy {
    padding: 22px 20px;
  }

  .agenda-sales-copy h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .agenda-sales-photo {
    min-height: 270px;
    border-radius: 22px;
  }

  .agenda-status-strip,
  .agenda-sales-grid,
  .agenda-flow-grid,
  .agenda-interest-list article {
    grid-template-columns: 1fr;
  }

  .agenda-status-strip {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agenda-sales-grid article {
    min-height: auto;
  }

  .agenda-interest-list a {
    width: 100%;
  }
}

/* Agenda organizada por categoria */
.agenda-organized {
  padding: clamp(24px, 3vw, 42px) max(18px, calc((100% - 1220px) / 2)) clamp(40px, 4vw, 58px);
  background:
    radial-gradient(circle at 8% 6%, rgba(201, 154, 67, 0.14), transparent 24%),
    linear-gradient(180deg, #fff8ed 0%, #f8efe1 100%);
}

.agenda-organized-hero {
  max-width: 860px;
  margin-bottom: 18px;
}

.agenda-orbit-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  max-width: none;
}

.agenda-orbit-copy {
  max-width: 620px;
}

.agenda-organized-hero .eyebrow {
  color: var(--wine);
}

.agenda-organized-hero .eyebrow::before {
  background: var(--wine);
}

.agenda-organized-hero h1 {
  max-width: 780px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: 0.98;
}

.agenda-organized-hero p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.42;
}

.agenda-orbit-stage {
  position: relative;
  --orbit-x: clamp(210px, 18vw, 260px);
  --orbit-low-x: clamp(132px, 12vw, 162px);
  --orbit-top-y: -150px;
  --orbit-side-y: -48px;
  --orbit-low-y: 134px;
  min-height: 390px;
  overflow: visible;
}

.agenda-orbit-stage::before {
  display: none;
}

.agenda-orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(166px, 16vw, 224px);
  margin: 0;
  padding: 8px 8px 11px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 18px 34px rgba(51, 31, 22, 0.12);
  animation: agendaOrbit 28s linear infinite;
}

.agenda-orbit-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  object-fit: cover;
}

.agenda-orbit-card figcaption {
  margin-top: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
}

.orbit-card-1 { animation-delay: 0s; }
.orbit-card-2 { animation-delay: -4.4s; }
.orbit-card-3 { animation-delay: -8.8s; }
.orbit-card-4 { animation-delay: -13.2s; }
.orbit-card-5 { animation-delay: -17.6s; }

@keyframes agendaOrbit {
  0% {
    transform: translate(-50%, -50%) translate(0, var(--orbit-top-y)) rotate(-2deg);
  }
  10% {
    transform: translate(-50%, -50%) translate(clamp(116px, 10vw, 143px), -99px) rotate(1deg);
  }
  20% {
    transform: translate(-50%, -50%) translate(var(--orbit-x), var(--orbit-side-y)) rotate(3deg);
  }
  30% {
    transform: translate(-50%, -50%) translate(clamp(186px, 15vw, 211px), 43px) rotate(1deg);
  }
  40% {
    transform: translate(-50%, -50%) translate(var(--orbit-low-x), var(--orbit-low-y)) rotate(-1deg);
  }
  50% {
    transform: translate(-50%, -50%) translate(0, calc(var(--orbit-low-y) + 24px)) rotate(0deg);
  }
  60% {
    transform: translate(-50%, -50%) translate(calc(var(--orbit-low-x) * -1), var(--orbit-low-y)) rotate(2deg);
  }
  70% {
    transform: translate(-50%, -50%) translate(clamp(-211px, -15vw, -186px), 43px) rotate(-1deg);
  }
  80% {
    transform: translate(-50%, -50%) translate(calc(var(--orbit-x) * -1), var(--orbit-side-y)) rotate(-3deg);
  }
  90% {
    transform: translate(-50%, -50%) translate(clamp(-143px, -10vw, -116px), -99px) rotate(-1deg);
  }
  100% {
    transform: translate(-50%, -50%) translate(0, var(--orbit-top-y)) rotate(-2deg);
  }
}

.agenda-category {
  display: grid;
  grid-template-columns: minmax(300px, 0.52fr) minmax(520px, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 12px;
}

.agenda-category-card {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 100%, rgba(201, 154, 67, 0.14), transparent 30%),
    rgba(255, 252, 246, 0.96);
  box-shadow: 0 16px 44px rgba(82, 34, 22, 0.07);
}

.agenda-category-premium .agenda-category-card {
  border-top: 5px solid var(--wine);
}

.agenda-category-thematic .agenda-category-card {
  border-top: 5px solid var(--gold);
}

.agenda-category-kids .agenda-category-card {
  border-top: 5px solid #8cc63e;
}

.agenda-category-card > span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(116, 19, 38, 0.08);
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
}

.agenda-category-card h2 {
  margin: 12px 0 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 0.98;
}

.agenda-category-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.agenda-category-card a,
.agenda-date-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.agenda-date-panel {
  display: grid;
  gap: 8px;
  align-content: stretch;
}

.agenda-date-panel article,
.agenda-thematic-panel .agenda-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-left: 5px solid var(--wine);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 12px 32px rgba(82, 34, 22, 0.06);
}

.agenda-date-panel article:nth-child(2) {
  border-left-color: var(--gold);
}

.agenda-date-panel article:nth-child(3) {
  border-left-color: #253623;
}

.agenda-date-panel strong,
.agenda-thematic-panel .agenda-card h3 {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1;
}

.agenda-date-panel small,
.agenda-thematic-panel .agenda-card p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.agenda-thematic-panel .agenda-card {
  display: grid;
  width: 100%;
}

.agenda-thematic-panel .agenda-card .solid-btn,
.agenda-thematic-panel .agenda-card button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 12px;
}

.agenda-thematic-panel .thematic-empty {
  min-height: 100%;
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(116, 19, 38, 0.18);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 252, 246, 0.7);
}

.agenda-reserve-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.agenda-reserve-compact article {
  padding: 16px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.9);
}

.agenda-reserve-compact span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.agenda-reserve-compact strong {
  display: block;
  margin-top: 10px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.agenda-reserve-compact small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .agenda-orbit-hero {
    grid-template-columns: 1fr;
  }

  .agenda-orbit-copy {
    max-width: 100%;
  }

  .agenda-orbit-stage {
    min-height: 310px;
  }

  .agenda-category {
    grid-template-columns: 1fr;
  }

  .agenda-category-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .agenda-organized {
    padding-right: 16px;
    padding-left: 16px;
  }

  .agenda-organized-hero h1 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .agenda-orbit-stage {
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    overflow: visible;
  }

  .agenda-orbit-stage::before {
    display: none;
  }

  .agenda-orbit-card {
    position: static;
    width: 100%;
    animation: none;
    transform: none;
    opacity: 1;
  }

  .agenda-orbit-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 190px);
    justify-self: center;
  }

  .agenda-date-panel article,
  .agenda-thematic-panel .agenda-card {
    grid-template-columns: 1fr;
  }

  .agenda-date-panel a,
  .agenda-thematic-panel .agenda-card .solid-btn,
  .agenda-thematic-panel .agenda-card button {
    width: 100%;
  }

  .agenda-reserve-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .page-form-section.mini-chef-form {
    grid-template-columns: 1fr;
  }

  .mini-chef-form-photo {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .page-form-section.mini-chef-form {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mini-chef-form-photo {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .pastry-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-form-section.pastry-enroll-section {
    grid-template-columns: 1fr;
  }

  .rapid-hero-inner,
  .rapid-program {
    grid-template-columns: 1fr;
  }

  .rapid-hero-card {
    max-width: none;
    margin: 0 18px -64px;
  }

  .rapid-hero-photo {
    min-height: 380px;
  }

  .rapid-fold {
    background: linear-gradient(180deg, var(--wine) 0 210px, var(--cream) 210px 100%);
  }

  .rapid-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 94px;
  }

  .pastry-video-side {
    height: 360px;
  }

  .pastry-hero-card {
    margin: -54px 18px 0;
  }

  .pastry-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pastry-feature-shot {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
  }

  .pastry-feature-shot figure {
    height: 340px;
    min-height: 0;
    margin: 12px 12px 0;
  }

  .pastry-feature-shot div {
    padding: 24px 24px 28px;
  }
}

@media (max-width: 620px) {
  .certificate-validation-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 16px 34px;
  }

  .certificate-validation-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .certificate-validation-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .certificate-result dl {
    grid-template-columns: 1fr;
  }

  .pastry-hero {
    padding: 78px 14px 34px;
  }

  .pastry-video-side {
    height: 330px;
    border-radius: 24px;
  }

  .pastry-hero-card {
    margin: -42px 10px 0;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .pastry-date-ticket,
  .pastry-proof {
    grid-template-columns: 1fr;
  }

  .pastry-feature-shot {
    width: calc(100% - 28px);
    margin: 10px auto;
    border-radius: 22px;
  }

  .pastry-feature-shot figure {
    height: 300px;
    min-height: 0;
    margin: 10px 10px 0;
    padding: 5px;
  }

  .pastry-feature-shot div {
    padding: 20px 18px 22px;
  }

  .pastry-feature-shot h2 {
    font-size: clamp(24px, 7.2vw, 32px);
  }

  .page-form-section.pastry-enroll-section {
    padding: 34px 16px;
  }

  .rapid-hero {
    padding: 28px 0 0;
  }

  .rapid-hero-inner {
    width: calc(100% - 28px);
  }

  .rapid-hero-card {
    margin: 0 10px -54px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .rapid-hero-card h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .rapid-hero-photo {
    min-height: 330px;
    border-radius: 24px;
  }

  .rapid-fold {
    padding-right: 14px;
    padding-left: 14px;
    background: linear-gradient(180deg, var(--wine) 0 300px, var(--cream) 300px 100%);
  }

  .rapid-proof,
  .rapid-program-list article {
    grid-template-columns: 1fr;
  }

  .rapid-proof {
    padding-top: 84px;
  }

  .rapid-program-list article {
    align-items: start;
  }

  .rapid-program-list a {
    width: 100%;
  }

  .pastry-enroll-photo {
    min-height: 330px;
    border-radius: 22px;
  }

  .pastry-enroll-photo strong {
    font-size: clamp(30px, 9vw, 40px);
  }

  .pastry-date-ticket span {
    grid-row: auto;
    transform: none;
    writing-mode: horizontal-tb;
  }
}

.thematic-preparation-list {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.thematic-preparation-list li {
  position: relative;
  padding-left: 14px;
  color: #51473f;
  font-size: 13.5px;
  line-height: 1.35;
}

.thematic-preparation-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #a61f24;
  font-weight: 900;
}

.home-page .thematic-card-body {
  padding: clamp(16px, 1.7vw, 20px);
}

.home-page .thematic-card-body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-page .thematic-card-footer {
  padding-top: 16px;
}
/* Aulas tematicas - visual Chef Profissional */
body.thematic-page {
  background: var(--paper);
}

.thematic-page main {
  overflow: hidden;
}

.thematic-page .thematic-course-hero {
  margin-top: 0;
  background: #1f1613;
}

.thematic-page .thematic-course-hero-photo {
  object-fit: cover;
  object-position: center center;
  background: #1f1613;
}

.thematic-page .chef-course-card h1 {
  max-width: 680px;
}

.thematic-page .chef-course-card p:last-child {
  max-width: 700px;
}

.thematic-page .thematic-course-proof {
  margin-top: 0;
}

.thematic-flow-section,
.thematic-compact-info,
.thematic-custom-section {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.thematic-catalog-page {
  margin-top: 34px;
}

.thematic-flow-section {
  margin-top: 34px;
  padding: 30px;
  border-radius: 28px;
  background: #241815;
  color: #fff7ee;
  box-shadow: 0 20px 48px rgba(44, 27, 18, 0.13);
}

.thematic-flow-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.thematic-flow-heading .eyebrow {
  color: #fff7ee;
}

.thematic-flow-heading .eyebrow::before {
  background: #fff7ee;
}

.thematic-flow-heading h2,
.thematic-section-heading h2,
.thematic-custom-section h2,
.thematic-reserve-section h2 {
  margin: 8px 0 0;
  color: inherit;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.thematic-flow-heading > p {
  margin: 0;
  color: rgba(255, 247, 238, 0.78);
  font-size: 17px;
  line-height: 1.48;
}

.thematic-flow-steps,
.thematic-info-grid {
  display: grid;
  gap: 16px;
}

.thematic-flow-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.thematic-flow-steps article,
.thematic-info-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(127, 22, 27, 0.13);
  border-radius: 18px;
  background: #fffaf4;
}

.thematic-flow-steps article {
  min-height: 170px;
  padding: 24px 22px;
  border-left: 4px solid #b60008;
}

.thematic-flow-steps article:nth-child(even) {
  border-left-color: #8b7656;
}

.thematic-flow-steps article::after,
.thematic-info-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(139, 118, 86, 0.09);
  border-radius: 50%;
}

.thematic-flow-steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 28px;
  border-radius: 999px;
  background: #b60008;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.thematic-flow-steps article:nth-child(even) span {
  background: #b27c16;
}

.thematic-flow-steps h3,
.thematic-info-grid strong {
  display: block;
  margin-top: 16px;
  color: #b60008;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.04;
}

.thematic-flow-steps p,
.thematic-info-grid p,
.thematic-custom-section p {
  margin: 8px 0 0;
  color: #62524a;
  font-size: 15px;
  line-height: 1.38;
}

.thematic-compact-info {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(127, 22, 27, 0.12);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.86);
}

.thematic-section-heading {
  margin: 0;
}

.thematic-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.thematic-info-grid article {
  padding: 16px;
}

.thematic-info-grid strong {
  color: #211715;
  font-size: 20px;
}

.thematic-custom-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(104, 125, 32, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #f9f6e9 0%, #fffaf2 100%);
}

.thematic-reserve-section {
  margin-top: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, #84171d, #3b1712);
  color: #fff7ee;
}

.thematic-reserve-section p:not(.eyebrow) {
  color: rgba(255, 247, 238, 0.78);
}

.thematic-reserve-section .contact-form {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1020px) {
  .thematic-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .thematic-flow-heading,
  .thematic-compact-info,
  .thematic-custom-section {
    grid-template-columns: 1fr;
  }

  .thematic-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .thematic-flow-section,
  .thematic-compact-info,
  .thematic-custom-section {
    width: min(100% - 24px, 1120px);
    padding: 18px;
    border-radius: 20px;
  }

  .thematic-flow-steps,
  .thematic-info-grid {
    grid-template-columns: 1fr;
  }

  .thematic-flow-steps article {
    min-height: 0;
  }
}


/* Vitrine de Alunos Empreendedores */
.home-entrepreneurs-section {
  padding: clamp(42px, 5.5vw, 72px) clamp(20px, 5vw, 80px);
  background:
    radial-gradient(circle at 76% 16%, rgba(201, 145, 45, 0.22), transparent 32%),
    linear-gradient(135deg, #fff8ef 0%, #f2e7d9 100%);
}

.home-entrepreneurs-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  max-width: 1180px;
  min-height: 430px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(132, 30, 31, 0.18);
  border-radius: 36px;
  background: #fffdf8;
  box-shadow: 0 30px 86px rgba(72, 45, 24, 0.14);
}

.home-entrepreneurs-card::before {
  content: "";
  position: absolute;
  inset: 8% -10% -24% 54%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 145, 45, 0.26), rgba(167, 7, 10, 0.13) 43%, transparent 68%);
}

.home-entrepreneurs-copy h2,
.entrepreneurs-hero h1,
.entrepreneurs-section-heading h2 {
  font-family: var(--display-font);
  color: #241713;
}

.home-entrepreneurs-copy h2 {
  max-width: 700px;
  margin: 12px 0;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.home-entrepreneurs-copy p {
  max-width: 560px;
  margin-bottom: 26px;
  color: #6f5a4d;
  font-size: 1rem;
  line-height: 1.75;
}

.home-entrepreneurs-preview {
  position: relative;
  min-height: 340px;
}

.home-entrepreneurs-preview article {
  position: absolute;
  width: min(42%, 190px);
  min-width: 150px;
  height: 258px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(255, 247, 238, 0.18);
  border-radius: 30px;
  color: #fff7ee;
  box-shadow: 0 26px 70px rgba(35, 20, 14, 0.22);
}

.home-entrepreneurs-preview article:nth-child(1) {
  left: 0;
  top: 12px;
  transform: rotate(-4deg);
  background: linear-gradient(160deg, #9b0009 0%, #3a1714 88%);
}

.home-entrepreneurs-preview article:nth-child(2) {
  left: 31%;
  top: 50px;
  height: 282px;
  transform: rotate(3deg);
  background: linear-gradient(160deg, #7a6243 0%, #2e1b16 82%);
}

.home-entrepreneurs-preview article:nth-child(3) {
  right: 0;
  top: 10px;
  height: 248px;
  transform: rotate(-2deg);
  background: linear-gradient(160deg, #2b1714 0%, #8d111b 120%);
}

.entrepreneur-story-photo {
  position: absolute;
  inset: 0 0 36%;
  background:
    radial-gradient(circle at 28% 30%, #ffe0a2 0 12%, transparent 13%),
    radial-gradient(circle at 60% 44%, #fff2d2 0 11%, transparent 12%),
    radial-gradient(circle at 48% 72%, #c9912d 0 16%, transparent 17%),
    linear-gradient(135deg, rgba(255,255,255,0.2), rgba(0,0,0,0.08));
  opacity: 0.92;
}

.home-entrepreneurs-preview span,
.entrepreneurs-intro span {
  position: relative;
  z-index: 1;
  width: fit-content;
  border-radius: 999px;
  background: #fff7ee;
  color: #9b0009;
  padding: 7px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

.home-entrepreneurs-preview strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  font-family: var(--display-font);
  font-size: 1.45rem;
  line-height: 0.98;
}

.home-entrepreneurs-preview small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 0.86rem;
  line-height: 1.4;
}

.home-entrepreneurs-badge {
  position: absolute;
  right: 8px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 247, 238, 0.94);
  color: #9b0009;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(35, 20, 14, 0.14);
}

.home-entrepreneurs-badge span {
  display: block;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: #c20b10;
}

@media (max-width: 920px) {
  .home-entrepreneurs-card {
    grid-template-columns: 1fr;
  }

  .home-entrepreneurs-preview {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .home-entrepreneurs-card {
    padding: 24px;
    border-radius: 28px;
  }

  .home-entrepreneurs-preview {
    min-height: 620px;
  }

  .home-entrepreneurs-preview article {
    position: relative;
    inset: auto !important;
    width: 100%;
    height: 176px !important;
    min-width: 0;
    margin-bottom: 14px;
    transform: none !important;
  }

  .home-entrepreneurs-badge {
    position: relative;
    right: auto;
    bottom: auto;
  }
}
.entrepreneurs-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 137, 38, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(180, 0, 11, 0.28), transparent 32%),
    linear-gradient(135deg, #150b0a 0%, #251312 46%, #120908 100%);
  color: #fff7ed;
}

.entrepreneurs-main {
  padding-top: 96px;
  padding-bottom: 56px;
}

.entrepreneurs-hero,
.entrepreneurs-intro,
.entrepreneurs-directory,
.entrepreneurs-disclaimer {
  max-width: 1220px;
  margin: 0 auto;
}

.entrepreneurs-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.34fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 219, 165, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 78% 18%, rgba(201, 145, 45, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(73, 16, 18, 0.95) 0%, rgba(32, 16, 13, 0.96) 62%, rgba(15, 10, 9, 0.98) 100%);
  padding: 38px clamp(24px, 4vw, 52px) 36px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.entrepreneurs-hero::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 219, 165, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 219, 165, 0.16), transparent 62%);
  pointer-events: none;
}

.entrepreneurs-hero h1 {
  max-width: 520px;
  margin: 8px 0 12px;
  color: #fff8ef;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.entrepreneurs-hero p {
  max-width: 560px;
  color: rgba(255, 248, 239, 0.78);
  font-size: 1.02rem;
  line-height: 1.58;
}

body.entrepreneurs-page main .entrepreneurs-hero .eyebrow {
  color: #fff !important;
}

body.entrepreneurs-page main .entrepreneurs-hero .eyebrow::before {
  background: #fff !important;
}

.entrepreneurs-page .entrepreneurs-directory .eyebrow {
  color: #9b0009;
}

.entrepreneurs-hero aside {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 20px;
  border: 1px solid rgba(255, 219, 165, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 211, 142, 0.22), transparent 44%),
    rgba(255, 255, 255, 0.08);
  color: #fff8ef;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.entrepreneurs-hero aside::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #ffd38e;
}

.entrepreneurs-hero aside strong {
  display: block;
  font-family: var(--display-font);
  color: #fff8ef;
  font-size: 1.32rem;
  line-height: 1.05;
}

.entrepreneurs-hero aside span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 248, 239, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
}

.entrepreneurs-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.entrepreneurs-hero-tags small {
  border: 1px solid rgba(255, 211, 142, 0.28);
  border-radius: 999px;
  background: rgba(255, 211, 142, 0.12);
  color: #ffd38e;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entrepreneurs-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px clamp(24px, 4vw, 56px) 34px;
}

.entrepreneurs-intro article,
.entrepreneur-card,
.entrepreneurs-disclaimer {
  border: 1px solid #e5cdb9;
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.entrepreneurs-intro article {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(255, 219, 165, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 211, 142, 0.22), transparent 38%),
    rgba(255, 255, 255, 0.08);
  padding: 15px 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.entrepreneurs-intro article:nth-child(even) {
  border-top: 4px solid #c9912d;
}

.entrepreneurs-intro article:nth-child(odd) {
  border-top: 4px solid #b4000b;
}

.entrepreneurs-intro h2 {
  margin: 10px 0 6px;
  font-family: var(--display-font);
  color: #fff8ef;
  font-size: 1.18rem;
  line-height: 1.04;
}

.entrepreneurs-intro p,
.entrepreneur-card p,
.entrepreneurs-disclaimer p {
  color: #66564d;
  line-height: 1.5;
}

.entrepreneurs-intro p {
  margin: 0;
  color: rgba(255, 248, 239, 0.72);
  font-size: 0.86rem;
}

.entrepreneurs-directory {
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 4%, rgba(180, 0, 11, 0.1), transparent 28%),
    #fff8ef;
  padding: 28px clamp(20px, 3vw, 42px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.entrepreneurs-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.entrepreneurs-section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.entrepreneurs-section-heading h2 {
  margin: 0;
  color: #241713;
  font-size: clamp(1.45rem, 2.45vw, 2.3rem);
  line-height: 1;
}

.entrepreneurs-section-heading p {
  margin: 0;
  color: #6c564a;
  font-size: 0.92rem;
  line-height: 1.45;
}

.entrepreneurs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.entrepreneurs-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.entrepreneurs-category-nav a {
  border: 1px solid rgba(155, 0, 9, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #8f111b;
  padding: 9px 14px;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(75, 45, 22, 0.06);
}

.entrepreneurs-category-nav a:hover {
  background: #9b0009;
  color: #fff;
}

.entrepreneurs-category-stack {
  display: grid;
  gap: 18px;
}

.entrepreneur-category {
  border: 1px solid #ecd7c5;
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(155, 0, 9, 0.08), transparent 36%),
    #fffdf8;
  padding: clamp(16px, 2vw, 22px);
  box-shadow: 0 12px 32px rgba(75, 45, 22, 0.06);
}

.entrepreneur-category-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}

.entrepreneur-category-heading > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #9b0009;
  color: #fff;
  font-weight: 900;
}

.entrepreneur-category-heading h3 {
  margin: 0 0 4px;
  font-family: var(--display-font);
  color: #241713;
  font-size: clamp(1.18rem, 2vw, 1.75rem);
  line-height: 1.02;
}

.entrepreneur-category-heading p {
  max-width: 760px;
  margin: 0;
  color: #6c564a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.entrepreneur-list {
  display: grid;
  gap: 10px;
}

.entrepreneur-business-card {
  display: grid;
  grid-template-columns: auto minmax(150px, 0.8fr) minmax(220px, 1.2fr) minmax(170px, 0.8fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(36, 23, 19, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,248,239,0.94)),
    #fff;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(75, 45, 22, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.entrepreneur-business-card:hover {
  border-color: rgba(155, 0, 9, 0.22);
  box-shadow: 0 18px 38px rgba(75, 45, 22, 0.13);
  transform: translateY(-2px);
}

.entrepreneur-logo {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 211, 142, 0.34), transparent 34%),
    #806845;
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.entrepreneur-logo.is-gold {
  background: #b47e16;
}

.entrepreneur-logo.is-red {
  background: #b4000b;
}

.entrepreneur-logo.is-dark {
  background: #2b1915;
}

.entrepreneur-label {
  display: block;
  margin-bottom: 4px;
  color: #9b0009;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entrepreneur-business-card h4 {
  margin: 0;
  color: #241713;
  font-size: 0.98rem;
  line-height: 1.15;
}

.entrepreneur-business-card p {
  margin: 0;
  color: #66564d;
  font-size: 0.9rem;
  line-height: 1.35;
}

.entrepreneur-business-card strong {
  display: inline-flex;
  border-radius: 999px;
  background: #f7ead8;
  color: #7c1522;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.entrepreneur-card {
  overflow: hidden;
  border-radius: 28px;
}

.entrepreneur-card figure {
  min-height: 220px;
  margin: 0;
  background-size: cover;
  background-position: center;
}

.entrepreneur-card div {
  padding: 24px;
}

.entrepreneur-card span {
  color: #9b0009;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entrepreneur-card h3 {
  margin: 10px 0;
  font-family: var(--display-font);
  color: #241713;
  font-size: 2rem;
  line-height: 1;
}

.entrepreneur-card strong {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: #f1e4d4;
  color: #7c1522;
  padding: 8px 12px;
  font-size: 0.95rem;
}

.entrepreneurs-disclaimer {
  margin-bottom: 72px;
  padding: 26px clamp(24px, 4vw, 42px);
  border-left: 8px solid #9b0009;
}

.entrepreneurs-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  color: #9b0009;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .home-entrepreneurs-card,
  .entrepreneurs-hero,
  .entrepreneurs-section-heading {
    grid-template-columns: 1fr;
  }

  .home-entrepreneurs-preview,
  .entrepreneurs-intro,
  .entrepreneurs-grid,
  .entrepreneur-business-card {
    grid-template-columns: 1fr;
  }

  .entrepreneurs-main {
    padding-top: 84px;
  }
}

@media (max-width: 980px) {
  .voucher-premium-top,
  .voucher-experience-wall,
  .voucher-grid-heading {
    grid-template-columns: 1fr;
  }

  .voucher-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .voucher-premium-note {
    max-width: 620px;
  }

  .voucher-grid-heading > p {
    margin-top: 0;
  }

  .voucher-tile,
  .voucher-tile-main {
    min-height: 260px;
  }
}

@media (max-width: 620px) {
  .voucher-premium-hero,
  .voucher-premium-section {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .voucher-premium-copy h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .voucher-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .voucher-steps {
    grid-template-columns: 1fr;
  }

  .voucher-actions .solid-btn,
  .voucher-actions .ghost-btn {
    justify-content: center;
    width: 100%;
  }

  .voucher-tile,
  .voucher-tile-main {
    min-height: 230px;
    border-radius: 22px;
  }

  .voucher-tile-main img {
    min-height: 230px;
  }

  .voucher-steps article {
    min-height: 0;
  }
}

.school-page {
  background:
    radial-gradient(circle at 82% 8%, rgba(167, 7, 10, 0.08), transparent 24%),
    linear-gradient(180deg, #fffdfa 0%, #f7f1e8 55%, #fffdfa 100%);
}

.school-page > section,
.school-hero {
  padding-left: clamp(28px, 5vw, 72px);
  padding-right: clamp(28px, 5vw, 72px);
}

.school-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(36px, 5vw, 72px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.school-hero-copy {
  max-width: 720px;
}

.school-hero .eyebrow,
.school-section .eyebrow {
  color: var(--wine);
}

.school-hero h1 {
  margin-top: 14px;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.school-hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.68;
}

.school-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.school-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  overflow: hidden;
  border-top: 7px solid #9f0009;
  border-bottom: 1px solid rgba(167, 7, 10, 0.16);
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 18px 46px rgba(57, 33, 20, 0.08);
}

.school-metrics article {
  display: block;
  min-width: 0;
  min-height: 112px;
  padding: clamp(16px, 1.8vw, 24px);
}

.school-metrics article + article {
  border-left: 1px solid rgba(167, 7, 10, 0.16);
}

.school-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: #80613c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.school-metrics h2 {
  margin: 0 0 3px;
  color: #a4000b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.school-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.32;
}

.school-hero-photo,
.school-panel-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--charcoal);
  box-shadow: 0 28px 70px rgba(23, 23, 20, 0.18);
}

.school-hero-photo {
  min-height: clamp(420px, 56svh, 620px);
}

.school-hero-photo::after,
.school-panel-photo::after,
.school-gallery figure::after,
.school-results-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 23, 20, 0.02), rgba(23, 23, 20, 0.48));
}

.school-hero-photo img,
.school-panel-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.school-hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 253, 250, 0.86);
  color: var(--wine-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-section {
  padding-top: clamp(54px, 7vw, 98px);
  padding-bottom: clamp(54px, 7vw, 98px);
}

.school-section-heading,
.school-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.school-section-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.school-section-heading h2,
.school-split h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.school-section-heading p,
.school-split p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
}

.school-split {
  align-items: center;
}

.school-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-auto-rows: clamp(180px, 18vw, 260px);
  gap: 16px;
}

.school-gallery figure,
.school-results-grid figure,
.school-mosaic img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(24, 33, 28, 0.12);
}

.school-gallery .is-large {
  grid-row: span 2;
}

.school-gallery img,
.school-results-grid img,
.school-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.school-gallery figcaption,
.school-results-grid figcaption {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(24, 33, 28, 0.78);
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-practice,
.school-numbers,
.school-results,
.school-history,
.school-next-step {
  background: rgba(255, 253, 250, 0.72);
}

.school-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.school-feature-grid article,
.school-number-grid article,
.school-paths article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(167, 7, 10, 0.14);
  border-left: 6px solid var(--wine);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 253, 250, 0.86);
}

.school-feature-grid article:nth-child(even),
.school-number-grid article:nth-child(even),
.school-paths article:nth-child(even) {
  border-left-color: var(--gold);
}

.school-feature-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.school-feature-grid article:nth-child(even) span {
  background: #b07d1a;
}

.school-feature-grid h3,
.school-paths h3 {
  margin-bottom: 8px;
  color: var(--wine);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.05;
}

.school-feature-grid p,
.school-paths p {
  color: var(--muted);
  line-height: 1.55;
}

.school-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  grid-auto-rows: clamp(190px, 20vw, 280px);
  gap: 16px;
}

.school-mosaic img:first-child {
  grid-row: span 2;
}

.school-teachers,
.school-international,
.school-media {
  background:
    radial-gradient(circle at 84% 10%, rgba(167, 7, 10, 0.08), transparent 24%),
    var(--cream);
}

.school-panel-photo {
  min-height: clamp(300px, 34vw, 470px);
}

.school-number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-top: 7px solid #9f0009;
  border-bottom: 1px solid rgba(167, 7, 10, 0.16);
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.96), rgba(255, 248, 242, 0.9));
  box-shadow: 0 18px 46px rgba(57, 33, 20, 0.08);
}

.school-number-grid article {
  display: block;
  min-width: 0;
  min-height: 112px;
  padding: clamp(16px, 1.8vw, 24px);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.school-number-grid article + article {
  border-left: 1px solid rgba(167, 7, 10, 0.16);
}

.school-number-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #80613c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.school-number-grid h3 {
  margin: 0 0 3px;
  color: #a4000b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.school-number-grid p {
  margin: 0;
  max-width: 330px;
  color: var(--muted);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.32;
}

.school-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.school-value-grid span {
  min-height: 82px;
  border: 1px solid rgba(167, 7, 10, 0.13);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 253, 250, 0.76);
  color: var(--wine-dark);
  font-weight: 800;
  line-height: 1.28;
}

.school-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 22vw, 310px);
  gap: 16px;
}

.school-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.school-timeline article {
  border-top: 4px solid var(--wine);
  padding: 24px;
  background: rgba(255, 253, 250, 0.82);
}

.school-timeline strong {
  display: block;
  margin-bottom: 12px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.school-timeline p {
  color: var(--muted);
}

.school-next-step .school-section-heading {
  align-items: center;
}

.school-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .school-hero,
  .school-section-heading,
  .school-split {
    grid-template-columns: 1fr;
  }

  .school-metrics,
  .school-number-grid,
  .school-value-grid,
  .school-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .school-gallery,
  .school-mosaic,
  .school-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .school-gallery .is-large,
  .school-mosaic img:first-child {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .school-page > section,
  .school-hero {
    padding-left: 22px;
    padding-right: 22px;
  }

  .school-hero {
    min-height: 0;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .school-hero h1 {
    font-size: clamp(42px, 15vw, 58px);
  }

  .school-actions,
  .school-actions .solid-btn,
  .school-actions .ghost-btn {
    width: 100%;
  }

  .school-actions {
    flex-direction: column;
  }

  .school-actions .solid-btn,
  .school-actions .ghost-btn {
    justify-content: center;
  }

  .school-metrics,
  .school-feature-grid,
  .school-number-grid,
  .school-value-grid,
  .school-gallery,
  .school-mosaic,
  .school-results-grid,
  .school-timeline,
  .school-paths {
    grid-template-columns: 1fr;
  }

  .school-hero-photo,
  .school-panel-photo,
  .school-gallery figure,
  .school-results-grid figure,
  .school-mosaic img {
    min-height: 260px;
  }
}

/* QF A Escola refinamento premium 2026-08-26 */
.school-page {
  overflow-x: hidden;
}

.school-page > section,
.school-hero {
  max-width: 1480px;
  margin-inline: auto;
  padding-left: clamp(24px, 4vw, 56px);
  padding-right: clamp(24px, 4vw, 56px);
}

.school-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 4vw, 56px);
  min-height: min(760px, calc(100svh - var(--header-height)));
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 58px);
}

.school-hero-copy {
  max-width: 620px;
}

.school-hero h1 {
  max-width: 600px;
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.school-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.58;
}

.school-hero-photo {
  min-height: clamp(300px, 36svh, 430px);
  border-radius: 24px;
}

.school-section {
  padding-top: clamp(34px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 68px);
}

.school-section-heading,
.school-split {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 58px);
}

.school-section-heading h2,
.school-split h2 {
  max-width: 520px;
  font-size: clamp(25px, 2.65vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.school-section-heading p,
.school-split p:not(.eyebrow) {
  max-width: 500px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
}

.school-gallery {
  grid-auto-rows: clamp(150px, 14vw, 210px);
  gap: 12px;
}

.school-gallery figure,
.school-results-grid figure,
.school-mosaic img,
.school-panel-photo {
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(24, 33, 28, 0.11);
}

.school-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.school-feature-grid article,
.school-number-grid article,
.school-paths article {
  min-width: 0;
  min-height: 0;
  padding: 18px;
  border-left-width: 5px;
  border-radius: 18px;
}

.school-feature-grid span {
  width: 34px;
  height: 30px;
  margin-bottom: 14px;
}

.school-feature-grid h3,
.school-paths h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.12;
}

.school-feature-grid p,
.school-paths p,
.school-number-grid span,
.school-timeline p {
  font-size: 14px;
  line-height: 1.45;
}

.school-mosaic {
  grid-auto-rows: clamp(150px, 16vw, 220px);
  gap: 12px;
}

.school-panel-photo {
  min-height: clamp(260px, 28vw, 380px);
}

.school-number-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.school-value-grid {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}

.school-value-grid span {
  min-height: 86px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.school-results-grid {
  grid-auto-rows: clamp(160px, 18vw, 240px);
  gap: 12px;
}

.school-timeline article {
  padding: 18px;
}

.school-timeline strong {
  font-size: clamp(28px, 2.8vw, 38px);
}

@media (max-width: 1180px) {
  .school-feature-grid,
  .school-number-grid,
  .school-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .school-hero,
  .school-section-heading,
  .school-split {
    grid-template-columns: 1fr;
  }

  .school-section-heading h2,
  .school-split h2,
  .school-hero h1 {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .school-page > section,
  .school-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .school-hero h1 {
    font-size: clamp(32px, 10.5vw, 42px);
  }

  .school-section-heading h2,
  .school-split h2 {
    font-size: clamp(26px, 9vw, 34px);
  }

  .school-feature-grid,
  .school-number-grid,
  .school-value-grid {
    grid-template-columns: 1fr;
  }
}

/* QF A Escola - refino de layout e anti-sobreposicao */
.school-inside {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(640px, 0.66fr);
  gap: clamp(28px, 4vw, 68px);
  align-items: center;
  overflow: hidden;
  margin-top: clamp(12px, 2vw, 24px);
  border: 1px solid rgba(128, 97, 60, 0.22);
  border-radius: clamp(22px, 2.8vw, 34px);
  padding: clamp(26px, 3.4vw, 50px);
  background:
    linear-gradient(rgba(255, 253, 250, 0.86), rgba(255, 253, 250, 0.86)),
    url("assets/photos/cozinha-bancadas.jpg") center / cover no-repeat,
    radial-gradient(circle at 80% 16%, rgba(167, 7, 10, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(247, 236, 224, 0.88));
  box-shadow:
    0 24px 70px rgba(57, 33, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.school-inside::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(176, 125, 26, 0.18);
  border-radius: clamp(18px, 2.4vw, 30px);
}

.school-inside .school-section-heading {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 0;
}

.school-inside .school-section-heading h2 {
  max-width: 500px;
  font-size: clamp(29px, 2.55vw, 42px);
  line-height: 1.02;
}

.school-inside .school-section-heading p {
  max-width: 460px;
  margin-top: clamp(14px, 1.5vw, 22px);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.5;
}

.school-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(340px, 1.18fr) minmax(170px, 0.55fr) minmax(170px, 0.55fr);
  grid-auto-rows: clamp(132px, 10vw, 178px);
  gap: clamp(10px, 1vw, 15px);
}

.school-gallery figure,
.school-results-grid figure,
.school-mosaic img,
.school-panel-photo {
  border: 1px solid rgba(255, 255, 255, 0.64);
  outline: 1px solid rgba(128, 97, 60, 0.2);
  outline-offset: -8px;
  background: #201410;
  box-shadow:
    0 18px 42px rgba(42, 25, 16, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.school-gallery .is-large {
  grid-row: span 2;
}

.school-gallery-duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: clamp(260px, 24vw, 390px);
  gap: clamp(18px, 2vw, 28px);
}

.school-gallery-duo figure {
  border: 1px solid rgba(255, 255, 255, 0.72);
  outline: 1px solid rgba(128, 97, 60, 0.18);
  outline-offset: -10px;
  border-radius: 24px;
  background: #201410;
  box-shadow:
    0 22px 54px rgba(38, 24, 16, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.84) inset;
}

.school-gallery-duo img {
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.school-gallery-duo figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.02);
}

.school-gallery-duo figcaption {
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(24, 33, 28, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  font-size: clamp(12px, 0.9vw, 14px);
}

.school-gallery figure::after,
.school-results-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 12, 8, 0.44));
}

.school-gallery figcaption,
.school-results-grid figcaption {
  left: 16px;
  right: auto;
  bottom: 16px;
  max-width: min(82%, 360px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(24, 33, 28, 0.84);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(11px, 0.8vw, 13px);
  letter-spacing: 0.04em;
}

.school-gallery .is-large figcaption {
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
}

.school-feature-grid,
.school-value-grid,
.school-paths {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.school-feature-grid article,
.school-paths article {
  min-height: 190px;
  border: 1px solid rgba(128, 97, 60, 0.22);
  border-left: 5px solid var(--wine);
  background:
    radial-gradient(circle at 92% 94%, rgba(176, 125, 26, 0.12), transparent 30%),
    rgba(255, 253, 250, 0.9);
  box-shadow: 0 18px 44px rgba(57, 33, 20, 0.08);
}

.school-feature-grid h3,
.school-paths h3 {
  max-width: 100%;
  overflow-wrap: normal;
  font-size: clamp(19px, 1.45vw, 24px);
}

.school-feature-grid p,
.school-paths p {
  font-size: clamp(14px, 0.98vw, 16px);
}

.school-value-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(128, 97, 60, 0.2);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(250, 241, 231, 0.84));
  box-shadow: 0 14px 34px rgba(57, 33, 20, 0.07);
  color: var(--wine);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.24;
}

.school-results-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  grid-auto-rows: clamp(190px, 18vw, 260px);
}

.school-timeline {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.school-timeline article {
  border: 1px solid rgba(128, 97, 60, 0.22);
  border-top: 6px solid var(--wine);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(250, 241, 231, 0.86));
  box-shadow: 0 16px 38px rgba(57, 33, 20, 0.08);
}

.school-number-grid,
.school-metrics {
  min-width: 0;
}

@media (max-width: 1180px) {
  .school-inside {
    grid-template-columns: 1fr;
  }

  .school-gallery {
    grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(170px, 0.65fr));
  }
}

@media (max-width: 760px) {
  .school-inside {
    border-radius: 24px;
    padding: 24px;
  }

  .school-inside::before {
    inset: 10px;
  }

  .school-inside .school-section-heading,
  .school-gallery,
  .school-feature-grid,
  .school-value-grid,
  .school-results-grid,
  .school-mosaic,
  .school-paths {
    grid-template-columns: 1fr;
  }

  .school-gallery {
    grid-auto-rows: minmax(220px, auto);
  }

  .school-gallery-duo {
    grid-auto-rows: minmax(260px, auto);
  }

  .school-gallery .is-large {
    grid-row: auto;
  }

  .school-feature-grid article,
  .school-paths article {
    min-height: 0;
  }
}

/* QF A Escola - modelo editorial de cards */
.school-practice .school-section-heading,
.school-experience .school-section-heading,
.school-results .school-section-heading,
.school-history .school-section-heading {
  grid-template-columns: minmax(360px, 0.56fr) minmax(300px, 0.44fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.school-practice .school-section-heading h2,
.school-experience .school-section-heading h2,
.school-results .school-section-heading h2,
.school-history .school-section-heading h2 {
  max-width: 680px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.02;
}

.school-practice .school-section-heading > p,
.school-experience .school-section-heading > p,
.school-results .school-section-heading > p,
.school-history .school-section-heading > p {
  max-width: 540px;
  padding-top: clamp(8px, 1vw, 18px);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.52;
}

.school-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
}

.school-feature-grid article {
  position: relative;
  min-height: 178px;
  padding: clamp(22px, 2vw, 28px);
  border: 1px solid rgba(128, 97, 60, 0.2);
  border-left: 5px solid var(--wine);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 88%, transparent 0 54px, rgba(128, 97, 60, 0.06) 55px 76px, transparent 77px),
    rgba(255, 253, 250, 0.9);
  box-shadow: 0 18px 42px rgba(57, 33, 20, 0.08);
}

.school-feature-grid article:nth-child(even) {
  border-left-color: #80613c;
}

.school-feature-grid span {
  width: 40px;
  height: 28px;
  margin-bottom: 18px;
  background: var(--wine);
  font-size: 12px;
}

.school-feature-grid article:nth-child(even) span {
  background: #b07d1a;
}

.school-feature-grid h3 {
  max-width: 250px;
  margin-bottom: 8px;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.02;
}

.school-feature-grid p {
  max-width: 280px;
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.38;
}

.school-practice-link {
  display: inline-flex;
  margin-top: 24px;
}

.school-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}

.school-value-grid span {
  min-height: 118px;
  align-items: flex-start;
  padding: clamp(18px, 1.6vw, 24px);
  border-left: 5px solid var(--wine);
  background:
    radial-gradient(circle at 92% 88%, transparent 0 46px, rgba(128, 97, 60, 0.06) 47px 66px, transparent 67px),
    rgba(255, 253, 250, 0.9);
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.08;
}

.school-value-grid span:nth-child(even) {
  border-left-color: #80613c;
}

.school-mosaic {
  grid-template-columns: minmax(320px, 1.1fr) repeat(2, minmax(180px, 0.72fr));
  grid-auto-rows: clamp(170px, 15vw, 230px);
}

.school-mosaic img:first-child {
  grid-row: span 2;
}

@media (max-width: 1180px) {
  .school-feature-grid,
  .school-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .school-practice .school-section-heading,
  .school-experience .school-section-heading,
  .school-results .school-section-heading,
  .school-history .school-section-heading,
  .school-feature-grid,
  .school-value-grid,
  .school-mosaic {
    grid-template-columns: 1fr;
  }

  .school-feature-grid article,
  .school-value-grid span {
    min-height: 0;
  }

  .school-mosaic img:first-child {
    grid-row: auto;
  }
}

/* QF A Escola - professores premium */
.school-teachers {
  background:
    radial-gradient(circle at 82% 18%, rgba(176, 125, 26, 0.12), transparent 28%),
    linear-gradient(135deg, #21110f 0%, #4b1718 52%, #1b100d 100%);
}

.school-teachers-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(560px, 0.58fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 150, 0.26);
  border-radius: clamp(24px, 3vw, 38px);
  padding: clamp(30px, 4vw, 58px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 30px 90px rgba(19, 8, 6, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.school-teachers-copy .eyebrow,
.school-teachers-copy .eyebrow::before {
  color: #f6d99a;
}

.school-teachers-copy .eyebrow::before {
  background: #f6d99a;
}

.school-teachers-copy h2 {
  max-width: 620px;
  margin-top: 14px;
  color: #fff8ee;
  font-size: clamp(34px, 3.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.school-teachers-copy > p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 248, 238, 0.78);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.58;
}

.school-teacher-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(22px, 2.4vw, 34px) 0 24px;
}

.school-teacher-highlights span {
  min-height: 58px;
  border: 1px solid rgba(244, 211, 150, 0.24);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(255, 248, 238, 0.08);
  color: #fff8ee;
  font-weight: 800;
  line-height: 1.18;
}

.school-teachers-copy .text-btn {
  color: #f6d99a;
}

.school-teachers-gallery {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(160px, 0.58fr) minmax(160px, 0.58fr);
  grid-auto-rows: clamp(150px, 12vw, 210px);
  gap: clamp(10px, 1vw, 16px);
}

.school-teachers-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 150, 0.28);
  border-radius: 24px;
  background: #140b09;
  box-shadow: 0 20px 54px rgba(8, 4, 3, 0.34);
}

.school-teachers-gallery .is-featured {
  grid-row: span 2;
}

.school-teachers-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school-teachers-gallery .is-featured img {
  object-position: center;
}

.school-teachers-gallery figure:nth-child(2) img,
.school-teachers-gallery figure:nth-child(4) img {
  object-position: center top;
}

.school-teachers-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 8, 7, 0.7));
}

.school-teachers-gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  border: 1px solid rgba(244, 211, 150, 0.22);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(20, 11, 9, 0.72);
  color: #fff8ee;
  font-size: clamp(11px, 0.78vw, 13px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1180px) {
  .school-teachers-panel,
  .school-teachers-gallery {
    grid-template-columns: 1fr;
  }

  .school-teachers-gallery .is-featured {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .school-teachers-panel {
    padding: 24px;
  }

  .school-teacher-highlights {
    grid-template-columns: 1fr;
  }

  .school-teachers-gallery {
    grid-auto-rows: minmax(240px, auto);
  }
}

/* QF A Escola - correcao final professores: contraste, largura e fotos visiveis */
.school-teachers {
  background:
    radial-gradient(circle at 78% 16%, rgba(167, 7, 10, 0.08), transparent 28%),
    linear-gradient(135deg, #fffdfa 0%, #f5eadf 100%);
}

.school-teachers-panel {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 4vw, 64px);
  overflow: visible;
  border: 1px solid rgba(128, 97, 60, 0.22);
  background:
    radial-gradient(circle at 90% 12%, rgba(176, 125, 26, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(248, 238, 228, 0.92));
  box-shadow:
    0 24px 70px rgba(57, 33, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.school-teachers-copy .eyebrow,
.school-teachers-copy .eyebrow::before {
  color: var(--wine);
}

.school-teachers-copy .eyebrow::before {
  background: var(--wine);
}

.school-teachers-copy h2 {
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(30px, 2.8vw, 46px);
}

.school-teachers-copy > p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
}

.school-teacher-highlights {
  grid-template-columns: 1fr;
  gap: 8px;
}

.school-teacher-highlights span {
  min-height: 0;
  border-color: rgba(128, 97, 60, 0.22);
  background: rgba(255, 253, 250, 0.84);
  color: var(--wine);
  box-shadow: 0 10px 26px rgba(57, 33, 20, 0.06);
}

.school-teachers-copy .text-btn {
  color: var(--wine);
}

.school-teachers-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(230px, 19vw, 320px);
  gap: clamp(12px, 1.2vw, 18px);
  align-items: stretch;
}

.school-teachers-gallery .is-featured {
  grid-row: auto;
}

.school-teachers-gallery figure {
  border: 1px solid rgba(128, 97, 60, 0.26);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 8%, rgba(176, 125, 26, 0.12), transparent 34%),
    #fffdfa;
  box-shadow: 0 18px 42px rgba(57, 33, 20, 0.14);
}

.school-teachers-gallery img {
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.school-teachers-gallery figure::after {
  background: linear-gradient(180deg, transparent 48%, rgba(20, 12, 8, 0.5));
}

.school-teachers-gallery figcaption {
  background: rgba(24, 33, 28, 0.86);
  color: #fff;
}

@media (max-width: 1180px) {
  .school-teachers-panel {
    grid-template-columns: 1fr;
  }

  .school-teachers-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .school-teachers-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, auto);
  }
}

/* QF A Escola - refino final dos quadros no estilo editorial aprovado */
.school-page .school-section {
  overflow: hidden;
}

.school-page .school-section-heading,
.school-page .school-split {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
}

.school-page .school-section-heading h2,
.school-page .school-split h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.3vw, 56px);
  line-height: 1.02;
}

.school-page .school-section-heading p,
.school-page .school-split p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(16px, 1.05vw, 19px);
  line-height: 1.55;
}

.school-feature-grid,
.school-value-grid,
.school-paths,
.school-timeline {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.school-feature-grid {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}

.school-value-grid {
  counter-reset: school-value;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}

.school-paths,
.school-timeline {
  counter-reset: school-path;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.school-timeline {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.school-feature-grid article,
.school-value-grid span,
.school-paths article,
.school-timeline article {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(128, 97, 60, 0.18);
  border-left: 5px solid var(--wine);
  border-radius: 18px;
  padding: clamp(24px, 2vw, 30px);
  background:
    radial-gradient(circle at calc(100% + 10px) calc(100% + 10px), transparent 0 58px, rgba(128, 97, 60, 0.055) 59px 84px, transparent 85px),
    linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(250, 245, 237, 0.92));
  box-shadow: 0 18px 42px rgba(57, 33, 20, 0.08);
}

.school-feature-grid article:nth-child(even),
.school-value-grid span:nth-child(even),
.school-paths article:nth-child(even),
.school-timeline article:nth-child(even) {
  border-left-color: #80613c;
}

.school-feature-grid span,
.school-value-grid span::before,
.school-paths article::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 30px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.school-value-grid span::before {
  counter-increment: school-value;
  content: counter(school-value, decimal-leading-zero);
}

.school-paths article::before {
  counter-increment: school-path;
  content: counter(school-path, decimal-leading-zero);
}

.school-feature-grid article:nth-child(even) span,
.school-value-grid span:nth-child(even)::before,
.school-paths article:nth-child(even)::before {
  background: #b07d1a;
}

.school-feature-grid h3,
.school-value-grid span,
.school-paths h3,
.school-timeline h3 {
  max-width: none;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.school-feature-grid p,
.school-paths p,
.school-timeline p {
  max-width: none;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.45;
}

.school-value-grid span {
  display: block;
  color: var(--wine);
  font-weight: 800;
}

.school-number-grid {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 0;
  border-top: 7px solid #9f0009;
  border-bottom: 1px solid rgba(167, 7, 10, 0.15);
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.98), rgba(255, 248, 242, 0.94));
  box-shadow: 0 18px 46px rgba(57, 33, 20, 0.08);
}

.school-number-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: center;
  min-height: 118px;
  padding: clamp(22px, 2vw, 30px);
  border: 0;
  border-left: 1px solid rgba(167, 7, 10, 0.15);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.school-number-grid article:first-child {
  border-left: 0;
}

.school-number-grid strong {
  margin: 0;
  color: #80613c;
  font-size: clamp(34px, 3vw, 52px);
  white-space: nowrap;
}

.school-number-grid h3 {
  margin: 0 0 4px;
  color: #a4000b;
  font-size: clamp(20px, 1.45vw, 27px);
}

.school-number-grid p {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.32;
}

.school-practice-link {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
}

.school-teacher-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.school-teacher-highlights span {
  border-left: 5px solid var(--wine);
  border-radius: 18px;
  background:
    radial-gradient(circle at calc(100% + 8px) calc(100% + 8px), transparent 0 42px, rgba(128, 97, 60, 0.08) 43px 62px, transparent 63px),
    rgba(255, 253, 250, 0.9);
  color: var(--wine);
}

@media (max-width: 1240px) {
  .school-feature-grid,
  .school-value-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

}

@media (max-width: 860px) {
  .school-page .school-section-heading,
  .school-page .school-split,
  .school-feature-grid,
  .school-value-grid,
  .school-paths,
  .school-timeline,
  .school-number-grid,
  .school-practice-link {
    width: min(100% - 32px, 1420px);
    grid-template-columns: 1fr;
  }

  .school-feature-grid article,
  .school-value-grid span,
  .school-paths article,
  .school-timeline article {
    min-height: 0;
  }

  .school-number-grid {
    gap: 12px;
    border-top-width: 5px;
    background: transparent;
    box-shadow: none;
  }

  .school-number-grid article {
    border: 1px solid rgba(128, 97, 60, 0.18);
    border-left: 5px solid var(--wine);
    border-radius: 18px;
    background: rgba(255, 253, 250, 0.94);
    box-shadow: 0 14px 34px rgba(57, 33, 20, 0.08);
  }
}

/* QF A Escola - alinhamento definitivo no modelo aprovado */
.school-page > .school-section {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(54px, 6vw, 86px) clamp(34px, 5vw, 72px) !important;
  overflow: hidden !important;
}

.school-page .school-section-heading {
  display: grid !important;
  width: min(100%, 1420px) !important;
  max-width: 1420px !important;
  margin: 0 auto clamp(26px, 3vw, 38px) !important;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr) !important;
  gap: clamp(28px, 5vw, 86px) !important;
  align-items: start !important;
}

.school-page .school-section-heading > div {
  min-width: 0 !important;
}

.school-page .school-section-heading > p {
  align-self: center !important;
  max-width: 470px !important;
  margin: clamp(14px, 2vw, 28px) 0 0 !important;
  padding: 0 !important;
  color: #5f5a54 !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  line-height: 1.36 !important;
}

.school-page .school-section-heading h2 {
  max-width: 760px !important;
  margin-top: 14px !important;
  color: #171714 !important;
  font-size: clamp(42px, 4.25vw, 74px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.05em !important;
}

.school-feature-grid,
.school-value-grid,
.school-paths,
.school-timeline {
  display: grid !important;
  width: min(100%, 1420px) !important;
  max-width: 1420px !important;
  margin: 0 auto !important;
  gap: clamp(18px, 2vw, 28px) !important;
  overflow: visible !important;
}

.school-feature-grid,
.school-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.school-paths {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.school-timeline {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.school-feature-grid article,
.school-value-grid span,
.school-paths article,
.school-timeline article {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: hidden !important;
  border: 1px solid rgba(128, 97, 60, 0.18) !important;
  border-left: 5px solid #b00008 !important;
  border-radius: 16px !important;
  padding: clamp(24px, 2vw, 30px) !important;
  background:
    radial-gradient(circle at calc(100% + 18px) calc(100% + 22px), transparent 0 58px, rgba(128, 97, 60, 0.06) 59px 84px, transparent 85px),
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(250, 246, 239, 0.94)) !important;
  box-shadow: none !important;
}

.school-feature-grid article:nth-child(even),
.school-value-grid span:nth-child(even),
.school-paths article:nth-child(even),
.school-timeline article:nth-child(even) {
  border-left-color: #80613c !important;
}

.school-feature-grid span,
.school-value-grid span::before,
.school-paths article::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 30px !important;
  margin: 0 0 18px !important;
  border-radius: 999px !important;
  background: #b00008 !important;
  color: #fff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.school-value-grid {
  counter-reset: qf-value !important;
}

.school-paths {
  counter-reset: qf-path !important;
}

.school-value-grid span::before {
  counter-increment: qf-value !important;
  content: counter(qf-value, decimal-leading-zero) !important;
}

.school-paths article::before {
  counter-increment: qf-path !important;
  content: counter(qf-path, decimal-leading-zero) !important;
}

.school-feature-grid article:nth-child(even) span,
.school-value-grid span:nth-child(even)::before,
.school-paths article:nth-child(even)::before {
  background: #b07d1a !important;
}

.school-feature-grid h3,
.school-value-grid span,
.school-paths h3,
.school-timeline h3 {
  max-width: none !important;
  margin: 0 0 8px !important;
  color: #b00008 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(25px, 1.65vw, 32px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
}

.school-value-grid span {
  font-weight: 800 !important;
}

.school-feature-grid p,
.school-paths p,
.school-timeline p {
  max-width: none !important;
  margin: 0 !important;
  color: #5f5a54 !important;
  font-size: clamp(15px, 1vw, 17px) !important;
  line-height: 1.42 !important;
}

.school-number-grid {
  display: grid !important;
  width: min(100%, 1420px) !important;
  max-width: 1420px !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: hidden !important;
  border-top: 7px solid #9f0009 !important;
  border-bottom: 1px solid rgba(167, 7, 10, 0.15) !important;
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.98), rgba(255, 248, 242, 0.94)) !important;
  box-shadow: 0 18px 46px rgba(57, 33, 20, 0.08) !important;
}

.school-number-grid article {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: center !important;
  min-width: 0 !important;
  min-height: 112px !important;
  padding: clamp(22px, 2vw, 30px) !important;
  border: 0 !important;
  border-left: 1px solid rgba(167, 7, 10, 0.15) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.school-number-grid article:first-child {
  border-left: 0 !important;
}

.school-number-grid strong {
  display: block !important;
  margin: 0 !important;
  color: #80613c !important;
  font-size: clamp(34px, 3.2vw, 56px) !important;
  white-space: nowrap !important;
}

.school-number-grid h3 {
  margin: 0 0 4px !important;
  color: #b00008 !important;
  font-size: clamp(20px, 1.5vw, 28px) !important;
  line-height: 1.05 !important;
}

.school-number-grid p {
  margin: 0 !important;
  max-width: 360px !important;
  color: #5f5a54 !important;
  font-size: clamp(14px, 0.95vw, 16px) !important;
  line-height: 1.32 !important;
}

.school-practice-link {
  display: inline-flex !important;
  width: auto !important;
  max-width: none !important;
  margin: 24px 0 0 calc((100% - min(100%, 1420px)) / 2) !important;
}

@media (max-width: 1180px) {
  .school-feature-grid,
  .school-value-grid,
  .school-number-grid,
  .school-paths {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 820px) {
  .school-page > .school-section {
    padding-inline: 20px !important;
  }

  .school-page .school-section-heading,
  .school-feature-grid,
  .school-value-grid,
  .school-number-grid,
  .school-paths,
  .school-timeline {
    grid-template-columns: 1fr !important;
  }

  .school-page .school-section-heading h2 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }

  .school-number-grid {
    gap: 12px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .school-number-grid article {
    border: 1px solid rgba(128, 97, 60, 0.18) !important;
    border-left: 5px solid #b00008 !important;
    border-radius: 16px !important;
    background: rgba(255, 253, 250, 0.96) !important;
  }

  .school-practice-link {
    margin-left: 0 !important;
  }
}

/* QF A Escola - professores em cards editoriais */
.school-professors-redesign {
  position: relative !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(176, 125, 26, 0.18), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(167, 7, 10, 0.06), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #f8f0e7 68%, #efe1d2 100%) !important;
}

.school-professors-panel {
  width: min(100%, 1480px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.42fr);
  gap: clamp(28px, 3.8vw, 58px);
  align-items: start;
}

.school-professors-copy {
  min-width: 0;
}

.school-professors-copy .eyebrow,
.school-professors-copy .eyebrow::before {
  color: var(--wine) !important;
}

.school-professors-copy .eyebrow::before {
  background: var(--wine) !important;
}

.school-professors-copy h2 {
  max-width: 610px !important;
  margin: 16px 0 20px !important;
  color: #171714 !important;
  font-size: clamp(42px, 4.15vw, 72px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.045em !important;
}

.school-professors-copy h2 span {
  color: var(--wine);
}

.school-professors-copy > p {
  max-width: 590px !important;
  margin: 0 !important;
  color: #342f2a !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  line-height: 1.48 !important;
}

.school-professor-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(24px, 2.3vw, 34px) 0 28px;
}

.school-professor-pillars article {
  min-width: 0;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(128, 97, 60, 0.2);
  border-radius: 16px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at calc(100% + 20px) calc(100% + 20px), transparent 0 54px, rgba(128, 97, 60, 0.055) 55px 82px, transparent 83px),
    rgba(255, 253, 250, 0.72);
  box-shadow: 0 10px 28px rgba(57, 33, 20, 0.055);
}

.school-professor-pillars strong {
  display: block;
  max-width: 220px;
  margin-bottom: 8px;
  color: var(--wine);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(17px, 1.15vw, 20px);
  font-weight: 900;
  line-height: 1.08;
}

.school-professor-pillars span {
  display: block;
  color: #5f5a54;
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.35;
}

.school-professors-copy .text-btn {
  color: var(--wine) !important;
}

.school-professor-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(14px, 1.4vw, 20px);
  align-items: stretch;
}

.school-professor-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(128, 97, 60, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(255, 248, 240, 0.98));
  box-shadow: 0 18px 46px rgba(57, 33, 20, 0.12);
}

.school-professor-card img {
  display: block;
  width: 100%;
  height: clamp(250px, 17vw, 330px);
  object-fit: cover;
  object-position: center top;
  background: #efe4d8;
}

.school-professor-card > div {
  padding: clamp(16px, 1.3vw, 22px);
}

.school-professor-card h3 {
  margin: 0 0 12px;
  color: #171714;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 1.75vw, 34px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.school-professor-card h3 span {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
}

.school-professor-role {
  display: block;
  width: 100%;
  margin: 0 0 13px !important;
  border-radius: 7px;
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: #fffaf3 !important;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(11px, 0.78vw, 13px) !important;
  font-weight: 900;
  line-height: 1.2 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.school-professor-card p:not(.school-professor-role) {
  margin: 0 !important;
  color: #413b35;
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.42;
}

@media (min-width: 1181px) {
  .school-professor-card:nth-child(4) {
    grid-column: 1;
  }

  .school-professor-card:nth-child(5) {
    grid-column: 2;
  }
}

@media (max-width: 1280px) {
  .school-professors-panel {
    grid-template-columns: 1fr;
  }

  .school-professors-copy h2,
  .school-professors-copy > p {
    max-width: 920px !important;
  }
}

@media (max-width: 980px) {
  .school-professor-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .school-professors-copy h2 {
    font-size: clamp(36px, 12vw, 50px) !important;
  }

  .school-professor-pillars,
  .school-professor-cards {
    grid-template-columns: 1fr;
  }

  .school-professor-pillars article {
    min-height: 0;
  }

  .school-professor-card img {
    height: min(78vw, 360px);
  }
}

/* QF A Escola - secao Alem da aula com beneficios explicados */
.school-experience .school-section-heading h2 {
  max-width: 620px !important;
  font-size: clamp(34px, 3.25vw, 56px) !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
}

.school-experience .school-section-heading > p {
  max-width: 560px !important;
  color: #4f4a44 !important;
  font-size: clamp(17px, 1.12vw, 21px) !important;
  line-height: 1.42 !important;
}

.school-experience .school-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.5vw, 22px) !important;
}

.school-experience .school-value-grid article {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  min-height: 184px !important;
  overflow: hidden !important;
  border: 1px solid rgba(128, 97, 60, 0.18) !important;
  border-left: 5px solid #b00008 !important;
  border-radius: 16px !important;
  padding: 24px 24px 22px !important;
  background:
    radial-gradient(circle at calc(100% + 18px) calc(100% + 22px), transparent 0 58px, rgba(128, 97, 60, 0.06) 59px 84px, transparent 85px),
    linear-gradient(135deg, rgba(255, 253, 250, 0.98), rgba(250, 246, 239, 0.94)) !important;
  box-shadow: 0 12px 30px rgba(57, 33, 20, 0.055) !important;
}

.school-experience .school-value-grid article:nth-child(even) {
  border-left-color: #80613c !important;
}

.school-experience .school-value-grid article::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 30px !important;
  margin: 0 0 16px !important;
  border-radius: 999px !important;
  background: #b00008 !important;
  color: #fff !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

.school-experience .school-value-grid article:nth-child(even)::before {
  background: #b07d1a !important;
}

.school-experience .school-value-grid article:nth-child(1)::before { content: "01"; }
.school-experience .school-value-grid article:nth-child(2)::before { content: "02"; }
.school-experience .school-value-grid article:nth-child(3)::before { content: "03"; }
.school-experience .school-value-grid article:nth-child(4)::before { content: "04"; }
.school-experience .school-value-grid article:nth-child(5)::before { content: "05"; }
.school-experience .school-value-grid article:nth-child(6)::before { content: "06"; }
.school-experience .school-value-grid article:nth-child(7)::before { content: "07"; }
.school-experience .school-value-grid article:nth-child(8)::before { content: "08"; }

.school-experience .school-value-grid h3 {
  margin: 0 0 10px !important;
  color: #b00008 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(24px, 1.55vw, 30px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.025em !important;
}

.school-experience .school-value-grid p {
  margin: 0 !important;
  color: #5f5a54 !important;
  font-size: clamp(15px, 0.98vw, 17px) !important;
  line-height: 1.38 !important;
}

@media (max-width: 1180px) {
  .school-experience .school-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .school-experience .school-section-heading h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .school-experience .school-value-grid {
    grid-template-columns: 1fr !important;
  }

  .school-experience .school-value-grid article {
    min-height: 0 !important;
  }
}
/* Ajuste compacto da agenda */
.agenda-organized {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  align-items: start;
  padding-top: clamp(22px, 2.8vw, 36px);
  padding-bottom: clamp(30px, 3vw, 44px);
}

.agenda-organized-hero {
  grid-column: 1 / -1;
  max-width: 100%;
  margin-bottom: 2px;
}

.agenda-organized-hero h1 {
  font-size: clamp(34px, 3.2vw, 50px);
}

.agenda-orbit-stage {
  --orbit-x: clamp(190px, 16vw, 236px);
  --orbit-low-x: clamp(118px, 10vw, 146px);
  --orbit-top-y: -128px;
  --orbit-side-y: -42px;
  --orbit-low-y: 118px;
  min-height: 340px;
}

.agenda-orbit-card {
  width: clamp(150px, 14vw, 196px);
}

.agenda-category {
  grid-template-columns: minmax(210px, 0.78fr) minmax(280px, 1fr);
  gap: 8px;
  min-width: 0;
  margin-top: 0;
}

.agenda-category-card {
  min-height: 148px;
  padding: 14px;
  border-radius: 16px;
}

.agenda-category-card h2 {
  font-size: clamp(21px, 1.55vw, 27px);
}

.agenda-category-card p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.agenda-category-card a,
.agenda-date-panel a {
  padding: 8px 12px;
}

.agenda-date-panel {
  gap: 7px;
  min-width: 0;
}

.agenda-date-panel article,
.agenda-thematic-panel .agenda-card {
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 14px;
}

.agenda-date-panel strong,
.agenda-thematic-panel .agenda-card h3 {
  font-size: clamp(17px, 1.2vw, 21px);
}

.agenda-date-panel small,
.agenda-thematic-panel .agenda-card p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.3;
}

.agenda-thematic-panel .thematic-empty {
  padding: 16px;
  border-radius: 14px;
}

.agenda-reserve-compact {
  grid-column: 1 / -1;
  gap: 10px;
  margin-top: 2px;
}

.agenda-reserve-compact article {
  padding: 13px 14px;
  border-radius: 14px;
}

.agenda-reserve-compact strong {
  font-size: 21px;
}

@media (max-width: 1100px) {
  .agenda-organized {
    grid-template-columns: 1fr;
  }

  .agenda-organized-hero,
  .agenda-reserve-compact {
    grid-column: auto;
  }

  .agenda-orbit-hero,
  .agenda-category {
    grid-template-columns: 1fr;
  }

  .agenda-orbit-stage {
    min-height: 310px;
  }

  .agenda-category-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .agenda-organized-hero h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .agenda-orbit-stage {
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .agenda-orbit-card {
    position: static;
    width: 100%;
    animation: none;
    transform: none;
    opacity: 1;
  }

  .agenda-orbit-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 190px);
    justify-self: center;
  }
}

/* Agenda vitrine de datas */
.agenda-date-showcase {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.agenda-date-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  margin-bottom: 16px;
}

.agenda-date-showcase-head h2 {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1;
}

.agenda-date-showcase-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.agenda-vitrine-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.agenda-vitrine-card {
  display: flex;
  min-height: 386px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(116, 19, 38, 0.14);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 18px 46px rgba(82, 34, 22, 0.08);
}

.agenda-vitrine-card > img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.agenda-vitrine-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.agenda-vitrine-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(134, 7, 25, 0.08);
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.agenda-vitrine-card h2 {
  margin: 11px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 1.8vw, 29px);
  line-height: 0.98;
}

.agenda-vitrine-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.agenda-vitrine-dates {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
}

.agenda-date-line,
.agenda-vitrine-dates .agenda-card {
  display: grid;
  gap: 3px;
  min-height: 44px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(105, 66, 34, 0.14);
  color: var(--muted);
  text-decoration: none;
}

.agenda-date-line b,
.agenda-vitrine-dates .agenda-card .tag {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
}

.agenda-date-line span,
.agenda-vitrine-dates .agenda-card h3 {
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.agenda-vitrine-dates .agenda-card {
  grid-template-columns: 1fr;
  border: 0;
  border-top: 1px solid rgba(105, 66, 34, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.agenda-vitrine-dates .agenda-card p,
.agenda-vitrine-dates .agenda-card small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.agenda-vitrine-dates .agenda-card .class-price {
  display: none;
}

.agenda-vitrine-dates .agenda-card button {
  justify-self: start;
  min-height: 32px;
  margin-top: 3px;
  padding: 7px 10px;
  font-size: 10px;
}

.agenda-vitrine-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 14px;
  border-radius: 12px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.agenda-vitrine-card.is-short .agenda-vitrine-pill,
.agenda-vitrine-card.is-thematic .agenda-vitrine-pill {
  background: rgba(191, 135, 33, 0.16);
  color: #7a520c;
}

.agenda-vitrine-card.is-kids .agenda-vitrine-pill {
  background: rgba(45, 87, 45, 0.12);
  color: var(--green);
}

.agenda-reserve-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.agenda-reserve-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(116, 19, 38, 0.12);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.86);
}

.agenda-reserve-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-weight: 900;
}

.agenda-reserve-strip strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  line-height: 1;
}

.agenda-reserve-strip small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 1100px) {
  .agenda-date-showcase,
  .agenda-reserve-strip {
    grid-column: auto;
  }

  .agenda-vitrine-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .agenda-date-showcase-head {
    display: grid;
    gap: 10px;
  }

  .agenda-vitrine-grid,
  .agenda-reserve-strip {
    grid-template-columns: 1fr;
  }

  .agenda-vitrine-card {
    min-height: 0;
  }
}
