/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #032d6f;
  --navy-dark: #021f4d;
  --navy-deep: #011638;
  --navy-light: #8095b6;
  --red: #a60404;
  --red-dark: #7a0303;
  --red-light: #d18180;
  --white: #FFFFFF;
  --off-white: #F5F7FB;
  --ink: #0B1020;
  --ink-soft: #2B3154;
  --mute: #6B7290;
  --max: 1240px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --shadow-soft: 0 10px 30px -12px rgba(3,45,111,.18);
  --shadow-strong: 0 30px 60px -20px rgba(3,45,111,.35);
  --ease: cubic-bezier(.2,.7,.15,1);
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Fraunces', serif; font-variation-settings: "opsz" 144; letter-spacing: -0.02em; }

/* <em> deixa de ser itálico por padrão (ênfase via peso, não estilo).
   Exceção: rotador da hero, que é a única marca tipográfica italicizada
   intencional do site. */
em { font-style: normal; font-weight: 600; }

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--navy);
}
h1 { font-weight: 700; font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.6rem); }
h3 { font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -.02em; }

/* ===== LAYOUT ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(166,4,4,.55), inset 0 -2px 0 rgba(0,0,0,.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 18px 34px -12px rgba(166,4,4,.65);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(3,45,111,.25);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,0,0,.35); }
.btn .wa-ico { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce {
  background: var(--navy);
  color: rgba(255,255,255,.9);
  text-align: center;
  font-size: .82rem;
  padding: 10px 20px;
  letter-spacing: .04em;
  position: relative;
  z-index: 50;
}
.announce strong { color: var(--red-light); }
.announce .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-light);
  margin: 0 10px;
  vertical-align: middle;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.4); }
}

/* ===== NAV ===== */
.nav {
  position: relative;
  z-index: 40;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(3,45,111,.06);
  transition: padding .3s, box-shadow .3s;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 50px; width: auto; display: block; transition: transform .3s var(--ease); }
.logo:hover img { transform: scale(1.05); }
.nav ul { list-style: none; }
.nav ul a { color: var(--ink-soft); font-weight: 500; transition: color .3s; position: relative; }
.nav ul a:hover { color: var(--red); }

/* ----- Desktop (≥900px): nav inline ----- */
@media (min-width: 900px) {
  .nav ul { display: flex; gap: 32px; }
  .nav ul a { font-size: .9rem; }
  .nav ul a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }
  .nav ul a:hover::after { transform: scaleX(1); }
}

/* ----- Botão hambúrguer (só mobile) ----- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -11px;
  background: var(--navy);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform .3s var(--ease),
    top .3s var(--ease),
    opacity .2s var(--ease);
}
.nav-toggle-bar:nth-child(1) { top: calc(50% - 7px); }
.nav-toggle-bar:nth-child(2) { top: calc(50% - 1px); }
.nav-toggle-bar:nth-child(3) { top: calc(50% + 5px); }

/* Estado aberto: morfa as 3 barras em X */
.nav.is-open .nav-toggle-bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.nav.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav.is-open .nav-toggle-bar:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

/* ----- Mobile (<900px): menu desliza de cima ----- */
@media (max-width: 899px) {
  .nav .wrap {
    justify-content: space-between;
    min-height: auto;
  }
  .nav-toggle { display: inline-block; }

  .nav ul {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(3, 45, 111, 0.08);
    border-bottom: 1px solid rgba(3, 45, 111, 0.08);
    box-shadow: 0 16px 30px -16px rgba(3, 45, 111, 0.18);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition:
      opacity .25s var(--ease),
      transform .25s var(--ease),
      visibility 0s linear .25s;
    z-index: 30;
  }
  .nav.is-open ul {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition:
      opacity .25s var(--ease),
      transform .25s var(--ease),
      visibility 0s linear 0s;
  }
  .nav ul li { padding: 0; }
  .nav ul a {
    display: block;
    padding: 14px 28px;
    font-size: 1rem;
    border-left: 3px solid transparent;
    transition: background .15s var(--ease), border-color .15s var(--ease), color .15s var(--ease);
  }
  .nav ul a:hover,
  .nav ul a.active {
    background: rgba(3, 45, 111, 0.04);
    border-left-color: var(--red);
    color: var(--navy);
  }
  /* Stagger sutil dos itens ao abrir */
  .nav.is-open ul li {
    animation: nav-item-in .35s var(--ease) both;
  }
  .nav.is-open ul li:nth-child(1) { animation-delay: .05s; }
  .nav.is-open ul li:nth-child(2) { animation-delay: .09s; }
  .nav.is-open ul li:nth-child(3) { animation-delay: .13s; }
  .nav.is-open ul li:nth-child(4) { animation-delay: .17s; }
  .nav.is-open ul li:nth-child(5) { animation-delay: .21s; }
  .nav.is-open ul li:nth-child(6) { animation-delay: .25s; }
  @keyframes nav-item-in {
    from { opacity: 0; transform: translateX(-6px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* Trava scroll vertical quando o menu mobile está aberto */
body.nav-open { overflow-y: hidden; }

/* Overlay escura por trás do menu mobile */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(1, 16, 50, 0.48);
  z-index: 30; /* abaixo do nav (40), acima do conteúdo da página */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .25s var(--ease),
    visibility 0s linear .25s;
}
body.nav-open .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity .25s var(--ease),
    visibility 0s linear 0s;
}
@media (min-width: 900px) {
  .nav-overlay { display: none; }
}
/* Nav fica opaco quando o menu está aberto (senão a translucência captura a overlay) */
.nav.is-open { background: var(--white); }

/* Respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bar,
  .nav ul,
  .nav.is-open ul li { transition-duration: .01ms !important; animation: none !important; }
}

/* ===== HERO (editorial split brutal) ===== */
.hero {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.hero-inner { display: flex; flex-direction: column; }

/* Utilitário reusado por outras seções da home (NÃO remover) */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Headline tipográfico */
.hero-headline {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 700;
  font-size: clamp(1.8rem, 8.5vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 0.94;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.hero.in-view-1 .hero-line-1 { opacity: 1; transform: translateY(0); }
.hero.in-view-3 .hero-line-2 { opacity: 1; transform: translateY(0); }

/* Strike-through em "na teoria" */
.hero-strike-word {
  position: relative;
  display: inline-block;
  color: var(--navy);
  cursor: default;
}
.hero-strike-line {
  position: absolute;
  left: -4px;
  right: -4px;
  top: 65%;
  height: 6px;
  background: var(--red);
  border-radius: 2px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease), height 200ms var(--ease);
  pointer-events: none;
}
.hero.in-view-2 .hero-strike-line { transform: translateY(-50%) scaleX(1); }
.hero-strike-word:hover .hero-strike-line { height: 8px; }

/* Highlight marca-texto em "na prática" */
.hero-highlight-word {
  position: relative;
  display: inline-block;
  color: var(--navy);
}
.hero-highlight-word::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  bottom: 0.12em;
  height: 0.42em;
  background: var(--red-light);
  opacity: 0.55;
  z-index: -1;
  transform: skew(-8deg) scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  transition: transform 300ms var(--ease);
}
.hero.in-view-4 .hero-highlight-word::after {
  transform: skew(-8deg) scaleX(1);
  animation: hero-highlight-breathe 4s ease-in-out 300ms infinite;
}
@keyframes hero-highlight-breathe {
  0%, 100% { opacity: 0.50; }
  50%      { opacity: 0.65; }
}

/* Cursor piscante */
.hero-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.82em;
  background: var(--navy);
  margin-left: 0.08em;
  vertical-align: -0.04em;
  opacity: 0;
  border-radius: 1px;
}
.hero.in-view-5 .hero-cursor { animation: hero-blink 1.2s steps(2, end) infinite; }
@keyframes hero-blink {
  0%, 49.99% { opacity: 1; }
  50%, 100%  { opacity: 0; }
}

/* Divisor */
.hero-divider {
  height: 0.5px;
  background: rgba(3, 45, 111, 0.18);
  margin: clamp(48px, 7vw, 80px) 0 clamp(32px, 4vw, 48px);
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
  transition: opacity 400ms var(--ease), transform 500ms var(--ease);
}
.hero.in-view-6 .hero-divider { opacity: 1; transform: scaleX(1); }

/* Bloco inferior: subtítulo + CTAs centralizados abaixo */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 4vw, 44px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 400ms var(--ease), transform 400ms var(--ease);
}
.hero.in-view-6 .hero-bottom { opacity: 1; transform: translateY(0); }

/* Subtítulo em Jakarta, tamanho e cor distintos */
.hero-subtitle {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-variation-settings: "opsz" 144;
  font-weight: 400;
  font-size: clamp(1.6em, 2.4vw, 2.1rem);
  color: var(--ink-soft);
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 1240px;
  margin: 0 auto;
  text-wrap: balance;
}

/* Verbo rotativo — largura natural, troca de texto via JS */
.hero-verb-active {
  font-family: 'Fraunces', serif;
  font-variation-settings: "opsz" 144;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  color: var(--red);
  display: inline-block;
  position: relative;
  margin: 0 4px;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  will-change: opacity, transform;
}
.hero-verb-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.05em;
  height: 2px;
  background: currentColor;
  opacity: 0.28;
  border-radius: 2px;
}
.hero-verb-active.is-out {
  opacity: 0;
  transform: translateY(-8px);
}
.hero-verb-active.is-in-prep {
  opacity: 0;
  transform: translateY(8px);
  transition: none;
}

/* CTAs (centralizados) */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-actions .btn { padding: 13px 22px; font-size: .92rem; }
.hero-actions .btn-ghost {
  padding: 13px 20px;
  border-width: 0.5px;
  border-color: rgba(3, 45, 111, 0.28);
}

/* Responsividade da hero */
@media (max-width: 900px) {
  .hero-headline { font-size: clamp(2.4rem, 9.5vw, 5rem); letter-spacing: -0.04em; }
  .hero-subtitle { max-width: none; }
}
@media (max-width: 640px) {
  .hero { padding: clamp(56px, 14vw, 96px) 0; }
  .hero-headline { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero-subtitle { font-size: clamp(1.2rem, 5vw, 1.5rem); }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-strike-line { height: 5px; }
  .hero-strike-word:hover .hero-strike-line { height: 7px; }
}

/* Fallback prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-line,
  .hero-divider,
  .hero-bottom {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-strike-line {
    transform: translateY(-50%) scaleX(1) !important;
    transition: none !important;
  }
  .hero-highlight-word::after {
    transform: skew(-8deg) scaleX(1) !important;
    opacity: 0.55 !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-cursor { animation: none !important; opacity: 1; }
  .hero-verb-active,
  .hero-verb-active.is-out,
  .hero-verb-active.is-in-prep {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-track { display: flex; gap: 60px; animation: scroll 40s linear infinite; white-space: nowrap; }
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Mobile: ritmo proporcionalmente mais rápido */
@media (max-width: 900px) {
  .marquee-track { animation-duration: 22s; }
}
@media (max-width: 480px) {
  .marquee-track { animation-duration: 16s; }
}
.marquee span {
  font-family: 'Fraunces', serif;
  
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 60px;
  color: rgba(255,255,255,.88);
}
.marquee span::after { content: "✦"; color: var(--red-light); font-size: .7em; margin-left: 60px; font-style: normal; }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION HEAD ===== */
.center { text-align: center; }

.section-head { max-width: 760px; margin: 0 auto 60px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 620px; margin: 0 auto; }

/* ===== PROBLEM SECTION ===== */
.problem { background: var(--off-white); }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 90px; align-items: stretch; } }
.problem h2 em { color: var(--red); font-weight: 600; }

/* Imagem da seção problema (coluna direita) com wash navy da marca */
.problem-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}
.problem-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.25) contrast(1.03);
}
.problem-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(3,45,111,.60), rgba(3,45,111,.28) 55%, rgba(11,16,32,.55));
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media (min-width: 900px) {
  /* A img absoluta não dita altura; a figure estica até a coluna esquerda */
  .problem-visual { min-height: 0; }
}
.problem-list { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.problem-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-m);
  border: 1px solid rgba(3,45,111,.08);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.problem-list li:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); }
.problem-list .x {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(166,4,4,.12);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .8rem;
}
.pull-quote {
  background: var(--navy);
  color: var(--white);
  padding: 46px 40px;
  border-radius: var(--radius-l);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  top: -30px; right: 20px;
  font-family: 'Fraunces', serif;
  font-size: 14rem;
  color: rgba(209,129,128,.22);
  line-height: 1;
}
.pull-quote .serif { font-size: clamp(1.4rem, 2.2vw, 1.85rem); font-weight: 400; line-height: 1.35; color: #F0F1FA; position: relative; z-index: 1; }
.pull-quote .serif strong { color: var(--red-light); font-weight: 600; font-style: normal; }
.pull-quote .attr { margin-top: 24px; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); position: relative; z-index: 1; }

/* ===== TEACHER SECTION ===== */
.teacher { background: var(--navy); color: var(--white); overflow: hidden; position: relative; }
.teacher::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 10%, rgba(209,129,128,.08), transparent 55%),
    radial-gradient(800px 500px at 90% 90%, rgba(166,4,4,.14), transparent 55%);
  pointer-events: none;
}
.teacher .wrap { position: relative; }
.teacher h2 { color: var(--white); }

.teacher-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 900px) { .teacher-grid { grid-template-columns: .9fr 1.1fr; gap: 80px; } }

.teacher-visual { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }
.teacher-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-l);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.5);
}
.teacher-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.teacher-photo:hover img { transform: scale(1.04); }
.teacher-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(3,45,111,.5) 100%);
}
.teacher-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -6px rgba(166,4,4,.6);
}
.teacher-info {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: var(--radius-m);
  color: var(--navy);
  opacity: 0.7;
}
.teacher-info .n { font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -.01em; }
.teacher-info .r { font-size: .78rem; color: var(--ink-soft); letter-spacing: .02em; }

.teacher-copy p { color: rgba(255,255,255,.85); font-size: 1.02rem; margin-bottom: 18px; line-height: 1.7; }
.teacher-copy p em { color: var(--red-light); }

.teacher-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 34px 0; }
.teacher-stats .s {
  padding: 22px;
  border-radius: var(--radius-m);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.teacher-stats .s .n { font-family: 'Fraunces', serif; font-size: 2.2rem; font-weight: 700; color: var(--red-light); line-height: 1; }
.teacher-stats .s .l { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 6px; }

.teacher-copy blockquote {
  font-family: 'Fraunces', serif;

  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  border-left: 3px solid var(--red-light);
  padding-left: 22px;
  margin-top: 20px;
}

/* Variante clara (fundo branco) — usada na página /sobre/ */
.teacher-light { background: var(--white); color: var(--ink); }
.teacher-light::before { display: none; }
.teacher-light h2 { color: var(--navy); }
.teacher-light .teacher-copy p { color: var(--ink-soft); }
.teacher-light .teacher-copy p em { color: var(--red); }
.teacher-light .teacher-copy blockquote { color: var(--navy); border-left-color: var(--red); }
.teacher-light .teacher-photo { box-shadow: var(--shadow-strong); }
.teacher-light .teacher-stats .s { background: var(--off-white); border-color: rgba(3,45,111,.1); }
.teacher-light .teacher-stats .s .n { color: var(--red); }
.teacher-light .teacher-stats .s .l { color: var(--mute); }

/* ===== METHODOLOGY ===== */
.method { background: var(--white); }
.method-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 18px; }
@media (min-width: 700px)  { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }

.method-card {
  background: var(--off-white);
  padding: 32px 28px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(3,45,111,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.method-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: transparent; background: var(--white); }
.method-card:hover::before { transform: scaleX(1); }
.method-card .num {
  font-family: 'Fraunces', serif;
  
  font-weight: 500;
  font-size: 3.2rem;
  color: var(--navy);
  opacity: .1;
  line-height: 1;
  position: absolute;
  top: 22px; right: 26px;
}
.method-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.method-card .ic svg { width: 22px; height: 22px; stroke-width: 1.8; }
.method-card h3 { margin-bottom: 10px; color: var(--navy); }
.method-card p { color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }

/* Special bonus card */
.method-card.bonus {
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border: none;
}
.method-card.bonus::before { background: linear-gradient(90deg, var(--red), var(--red-light)); }
.method-card.bonus:hover { background: linear-gradient(145deg, var(--navy), var(--navy-dark)); }
.method-card.bonus .num { color: var(--red-light); opacity: .3; }
.method-card.bonus .ic { background: var(--red); color: var(--white); }
.method-card.bonus h3 { color: var(--white); }
.method-card.bonus p { color: rgba(255,255,255,.78); }

/* ===== DIFFERENTIALS / RESULTS ===== */
.diff { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
/*.diff::before {
  content: "CERTIFICAÇÃO";
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  
  font-size: clamp(3rem, 10vw, 8rem);
  color: rgba(255,255,255,.03);
  letter-spacing: -.04em;
  pointer-events: none;
}*/
.diff h2 { color: var(--white); }
.diff .section-head p { color: rgba(255,255,255,.75); }
.diff-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px)  { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .diff-grid { grid-template-columns: repeat(4, 1fr); } }
.diff-card {
  padding: 36px 32px;
  border-radius: var(--radius-l);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .4s var(--ease), background .3s;
  position: relative;
}
.diff-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); }
.diff-card .ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform .4s var(--ease);
  box-shadow: 0 10px 20px -8px rgba(166,4,4,.5);
}
.diff-card:hover .ic { transform: rotate(-8deg) scale(1.08); }
.diff-card .ic svg { width: 24px; height: 24px; stroke-width: 2.2; }
.diff-card h3 { color: var(--white); font-family: 'Fraunces', serif; margin-bottom: 12px; }
.diff-card p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.6; }
.diff-card p em { color: var(--red-light); }
.diff-card .tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 10px;
  background: rgba(209,129,128,.18);
  color: var(--red-light);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
}

.diff-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.diff-strip .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(209,129,128,.1);
  color: var(--red-light);
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(209,129,128,.25);
}
.diff-strip .chip::before { content: "✓"; font-weight: 800; }

/* ===== CERTIFICATE ===== */
.cert { background: var(--off-white); }
.cert-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 900px) { .cert-grid { grid-template-columns: 1fr 1.05fr; gap: 80px; } }

@media (max-width: 900px) {
  .cert-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cert-visual { order: -1; }
  .cert-img-wrap { margin: 0 auto; max-width: 420px; }
}

.cert-visual { position: relative; padding: 30px 30px 40px; }
.cert-img-wrap {
  position: relative;
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}
.cert-img-wrap:hover { transform: rotate(0deg) scale(1.02); }
.cert-img-wrap img { width: 100%; height: auto; display: block; border-radius: var(--radius-s); box-shadow: var(--shadow-strong); }

.cert-stamp {
  position: absolute;
  bottom: 20px; left: -5px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-m);
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.cert-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 30px; }
.cert-level {
  padding: 14px 10px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(3,45,111,.1);
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.cert-level:hover { transform: translateY(-3px); border-color: var(--red); }
.cert-level .l { font-family: 'Fraunces', serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.cert-level .n { font-size: .72rem; color: var(--mute); letter-spacing: .06em; text-transform: uppercase; margin-top: 2px; }

/* ===== PRICING ===== */
.pricing { background: var(--white); position: relative; }
.pricing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(166,4,4,.04) 0%, transparent 60%);
  pointer-events: none;
}
.pricing .wrap { position: relative; }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1120px; margin: 0 auto; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.price-card {
  background: var(--white);
  padding: 36px 30px 32px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(3,45,111,.1);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: var(--navy-light); }
.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border: none;
  transform: scale(1.03);
  box-shadow: 0 40px 80px -20px rgba(3,45,111,.5);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.price-ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 7px 20px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px -8px rgba(166,4,4,.6);
}

.price-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.price-stars span { color: var(--red); font-size: 1.1rem; }
.price-card.featured .price-stars span { color: var(--red-light); }
.price-card h3 { font-family: 'Fraunces', serif; margin-bottom: 6px; color: inherit; }
.price-card.featured h3 { color: var(--white); }
.price-card .freq { font-size: .88rem; color: var(--mute); margin-bottom: 26px; }
.price-card.featured .freq { color: rgba(255,255,255,.65); }
.price-card .amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }
.price-card .cur { font-size: 1.2rem; color: var(--navy-light); font-weight: 600; }
.price-card.featured .cur { color: var(--navy-light); }
.price-card .val { font-family: 'Fraunces', serif; font-weight: 700; font-size: 3.2rem; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.price-card.featured .val { color: var(--white); }
.price-card .per { font-size: .8rem; color: var(--mute); align-self: flex-end; margin-bottom: 4px; }
.price-card.featured .per { color: rgba(255,255,255,.55); }

.price-list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.price-card.featured .price-list li { color: rgba(255,255,255,.88); }
.price-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: rgba(46,157,74,.15);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232E9D4A" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 3px;
}
.price-card.featured .price-list li::before {
  background-color: rgba(209,129,128,.2);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23d18180" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
}

.price-card .btn { width: 100%; justify-content: center; }
.price-card .btn-secondary { background: var(--navy); color: var(--white); }
.price-card .btn-secondary:hover { background: var(--red); }
.price-card.featured .btn { background: var(--red); color: var(--white); }
.price-card.featured .btn:hover { background: var(--white); color: var(--navy); }

.price-foot { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: .88rem; }
.price-foot strong { color: var(--navy); }

/* ===== TESTIMONIALS ===== */
.testi { background: var(--off-white); position: relative; }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px)  { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(3,45,111,.06);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.testi-card .stars { color: var(--red); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card blockquote { font-family: 'Fraunces', serif; font-size: 1.1rem; line-height: 1.45; color: var(--navy); margin-bottom: 22px; font-weight: 500; letter-spacing: -.01em; }
.testi-card blockquote::before { content: "\201C"; color: var(--red); font-size: 1.8em; line-height: 0; vertical-align: -.3em; margin-right: 4px; }
.testi-card .who { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(3,45,111,.08); }
.testi-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-card .n { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testi-card .r { font-size: .76rem; color: var(--mute); }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--off-white);
  margin-bottom: 14px;
  border-radius: var(--radius-m);
  border: 1px solid rgba(3,45,111,.08);
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.faq-item:hover { border-color: rgba(3,45,111,.2); }
.faq-item[open] { box-shadow: var(--shadow-soft); border-color: transparent; background: var(--white); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
  letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: transform .3s, background .3s, color .3s;
  font-weight: 600;
  border: 1px solid rgba(3,45,111,.1);
}
.faq-item[open] summary .plus { background: var(--red); color: var(--white); transform: rotate(45deg); border-color: var(--red); }
.faq-item .answer { padding: 0 26px 24px; color: var(--ink-soft); font-size: .96rem; line-height: 1.65; }
.faq-item .answer p + p { margin-top: 12px; }

/* ===== FINAL CTA ===== */
.final { background: var(--navy); color: var(--white); position: relative; }
.final .wrap { text-align: center; }
.final .label { justify-content: center; }
.final .label .bar { background: var(--red-light); }
.final .eyebrow { color: var(--red-light); }
.final h2 { color: var(--white); max-width: 780px; margin: 0 auto 24px; }
.final h2 em { color: var(--red-light); font-weight: 500; }
.final p { color: rgba(255,255,255,.78); max-width: 580px; margin: 0 auto 40px; font-size: 1.1rem; }
.final-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final-note { margin-top: 28px; font-size: .82rem; color: rgba(255,255,255,.55); letter-spacing: .04em; }

.btn-wa { background: #25D366; color: #fff; box-shadow: 0 12px 24px -10px rgba(37,211,102,.6), inset 0 -2px 0 rgba(0,0,0,.15); }
.btn-wa:hover { background: #1faa50; transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(37,211,102,.7); }

/* ===== FOOTER ===== */
footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.foot-grid h4 { font-family: 'Fraunces', serif; color: var(--white); margin-bottom: 16px; font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid a { font-size: .9rem; transition: color .2s; }
.foot-grid a:hover { color: var(--red-light); }
.foot-brand .logo img { height: 60px; }
.foot-brand p { font-size: .9rem; margin-top: 18px; max-width: 320px; line-height: 1.6; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  transition: background .3s, transform .3s;
}
.foot-socials a:hover { background: var(--red); transform: translateY(-2px); color: var(--white); }
.foot-socials svg { width: 16px; height: 16px; fill: currentColor; }
.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: .78rem;
}
.foot-bottom ul{ list-style: none; display: flex; gap: 14px; }

/* ===== FLOATING WHATSAPP ===== */
/* Esconde o WhatsApp flutuante na página do formulário (não competir com o CTA) */
.page-no-float .wa-float { display: none; }

.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s;
  animation: wa-enter .5s var(--ease) 2s both;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes wa-enter {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal       { opacity: 0; transform: translateY(30px);  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in    { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(-30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }

.stagger > *    { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .15s; }
.stagger.in > *:nth-child(3) { transition-delay: .25s; }
.stagger.in > *:nth-child(4) { transition-delay: .35s; }
.stagger.in > *:nth-child(5) { transition-delay: .45s; }
.stagger.in > *:nth-child(6) { transition-delay: .55s; }
.stagger.in > *:nth-child(7) { transition-delay: .65s; }
.stagger.in > *:nth-child(8) { transition-delay: .75s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* ===== ACTIVE NAV LINK ===== */
.nav ul a.active { color: var(--red); }
.nav ul a.active::after { transform: scaleX(1); }

/* ===== INTRODUÇÃO (página /metodologia/) ===== */
.method-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 90px);
}
.method-intro em { color: var(--red); font-style: normal; font-weight: bold; }
@media (min-width: 900px) {
  .method-intro { grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: stretch; }
}
.method-intro-text h1 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin-bottom: 22px;
}
.method-intro-text p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.method-intro-text p + p { margin-top: 16px; }
.method-intro-text .method-intro-lede { font-size: 1.12rem; color: var(--ink); }
.method-intro .problem-visual { min-height: 300px; }
@media (min-width: 900px) {
  .method-intro .problem-visual { min-height: 0; }
}

/* ===== PILAR EXPANDIDO (página /metodologia/) ===== */
.pillar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(3,45,111,.08);
}
.pillar:last-of-type { border-bottom: none; }
@media (min-width: 800px) {
  .pillar { grid-template-columns: 120px 1fr; gap: 40px; align-items: start; }
}
.pillar .ic-large {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}
.pillar .ic-large svg { width: 32px; height: 32px; stroke-width: 1.8; }
.pillar .num-large {
  font-family: 'Fraunces', serif;
  
  font-weight: 500;
  font-size: 1rem;
  color: var(--red);
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.pillar h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 12px; }
.pillar p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; margin-bottom: 12px; }
.pillar .example {
  margin-top: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.pillar .example strong { color: var(--navy); }

/* ===== TIMELINE DE AULA ===== */
.timeline {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  max-width: 720px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(3,45,111,.08);
  border-radius: var(--radius-m);
  align-items: center;
}
.timeline-item .when {
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .04em;
}
.timeline-item .what strong { color: var(--navy); display: block; margin-bottom: 2px; font-family: 'Fraunces', serif; font-size: 1rem; }
.timeline-item .what span { color: var(--ink-soft); font-size: .9rem; }

/* ===== EQUIVALÊNCIA DE INVESTIMENTO (página /planos/) ===== */
.price-card .equiv {
  font-size: .8rem;
  color: var(--mute);
  margin: -14px 0 22px;
  
}
.price-card.featured .equiv { color: rgba(255,255,255,.65); }

.price-microcopy {
  text-align: center;
  margin-top: 28px;
  font-size: .82rem;
  color: var(--mute);
  letter-spacing: .02em;
}
.price-microcopy strong { color: var(--navy); font-weight: 700; }

/* ===== COMPARATIVO (página /planos/) ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 60px auto 0;
  max-width: 940px;
}
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; gap: 24px; } }
.compare-card {
  padding: 32px 28px;
  border-radius: var(--radius-l);
  border: 1px solid rgba(3,45,111,.1);
  background: var(--off-white);
}
.compare-card.us {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.compare-card h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.compare-card.us h4 { color: var(--white); }
.compare-card ul { list-style: none; display: grid; gap: 10px; }
.compare-card li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.compare-card.us li { color: rgba(255,255,255,.85); }
.compare-card li::before {
  content: "✕";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(166,4,4,.12);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 700;
  margin-top: 2px;
}
.compare-card.us li::before {
  content: "✓";
  background: rgba(209,129,128,.2);
  color: var(--red-light);
}

/* ===== BLOCO DUPLAS/FAMÍLIAS ===== */
.duo-card {
  max-width: var(--max);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-l);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.duo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 80% 20%, rgba(209,129,128,.18), transparent 55%);
  pointer-events: none;
}
.duo-card > * { position: relative; z-index: 1; }
.duo-card .eyebrow { color: var(--red-light); }
.duo-card h3 { color: var(--white); margin: 14px 0 12px; font-size: clamp(1.4rem, 2.4vw, 2rem); }
.duo-card p { color: rgba(255,255,255,.82); max-width: 1000px; margin: 0 auto 24px; font-size: 1rem; line-height: 1.6; }

/* ===== PROSE (políticas, termos) ===== */
.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 36px 0 14px; color: var(--navy); }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; color: var(--navy); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--navy); }
.prose .last-update {
  font-family: 'JetBrains Mono', monospace;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 30px;
}
.prose .legal-disclaimer {
  margin: 28px 0;
  padding: 18px 22px;
  background: rgba(166,4,4,.06);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  font-size: .9rem;
}

/* ===== CONTATO (WhatsApp secundário + canais) ===== */
.contact-alt {
  background: var(--off-white);
  padding: clamp(50px, 7vw, 80px) 0;
  border-top: 1px solid rgba(3,45,111,.06);
}
.contact-alt-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.contact-alt-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.contact-alt-text h2 em { color: var(--red); font-weight: 500; }
.contact-alt-text p {
  color: var(--ink-soft);
  font-size: 1rem;
}
.contact-alt .btn-wa {
  font-size: .98rem;
  padding: 14px 28px;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 50px auto 0;
  max-width: 720px;
}
@media (min-width: 700px) { .contact-channels { grid-template-columns: repeat(2, 1fr); } }
.contact-channel {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(3,45,111,.1);
  border-radius: var(--radius-m);
  transition: transform .3s var(--ease), border-color .3s;
  display: block;
}
.contact-channel:hover { transform: translateY(-3px); border-color: var(--red); }
.contact-channel .ch-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.contact-channel .ch-value {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.contact-meta {
  text-align: center;
  margin-top: 36px;
  font-size: .85rem;
  color: var(--mute);
  letter-spacing: 0.01em;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ===== 404 ===== */
.notfound {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 60px 20px;
}
.notfound .code {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  
  font-size: clamp(6rem, 16vw, 12rem);
  color: var(--red);
  opacity: .15;
  line-height: 1;
  margin-bottom: 10px;
}
.notfound h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 14px; }
.notfound .pt { color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 32px; }

/* ===== FORMULÁRIO DE AGENDAMENTO (/contato/) ===== */
.agendar-form-section {
  padding: clamp(40px, 6vw, 90px) 0 clamp(60px, 8vw, 100px);
  background: var(--off-white);
  scroll-margin-top: 80px;
}

/* Cabeçalho que ancora o formulário no topo da página */
.agendar-head {
  max-width: 720px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}
.agendar-head h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.agendar-head h1 em { color: var(--red); font-weight: 500; }
.agendar-head p { color: var(--ink-soft); font-size: 1.08rem; max-width: 560px; margin: 0 auto; line-height: 1.55; }

/* Card único: imagem (esquerda) + formulário (direita), sem emenda entre eles */
.agendar-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-l);
  box-shadow:
    0 30px 70px -30px rgba(3, 45, 111, 0.28),
    0 8px 20px -10px rgba(3, 45, 111, 0.10);
  overflow: hidden;
}
.agendar-layout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light) 60%, var(--navy-light));
  z-index: 2;
}
@media (min-width: 900px) {
  .agendar-layout { grid-template-columns: 0.92fr 1.08fr; }
}

/* Imagem: ocupa a metade esquerda rente às bordas (sem card próprio) */
.agendar-visual { min-height: 300px; display: none; }
.agendar-layout .agendar-visual { border-radius: 0; box-shadow: none; }
@media (min-width: 900px) {
  .agendar-visual { display: block; min-height: 0; }
}

/* Coluna do formulário: apenas o respiro interno (o card é o pai) */
.form-card {
  position: relative;
  background: transparent;
  padding: clamp(30px, 4vw, 52px) clamp(24px, 4vw, 48px) clamp(30px, 4vw, 46px);
}

/* Form base: lista vertical de campos */
.agendar-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Linha de 2 colunas (e-mail + WhatsApp) */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; gap: 18px; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: none;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.form-field label,
.form-field legend {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  padding: 0;
  display: block;
  text-transform: none;
}
.form-field .req { color: var(--red); font-weight: 700; margin-left: 2px; }
.form-field .opt {
  color: var(--mute);
  font-weight: 400;
  font-size: 0.9em;
  letter-spacing: 0;
}
.form-field #f-descricao {resize: none;}

.field-error {
  font-size: .8rem;
  color: var(--red);
  margin-top: 8px;
  font-weight: 600;
}

.agendar-form input[type="text"],
.agendar-form input[type="tel"],
.agendar-form input[type="email"],
.agendar-form textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(3, 45, 111, 0.18);
  border-radius: var(--radius-s);
  padding: 10px 13px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 2px;
  line-height: 1.4;
}
.agendar-form input:focus,
.agendar-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166, 4, 4, 0.12);
}
.agendar-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.agendar-form input::placeholder,
.agendar-form textarea::placeholder {
  color: var(--mute);
  opacity: 0.7;
}
.agendar-form input[aria-invalid="true"],
.agendar-form textarea[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166, 4, 4, 0.10);
}

/* Select customizado (chevron via ::after) */
.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
  transition: border-color .2s;
}
.select-wrap:has(select:focus)::after { border-color: var(--red); }
.agendar-form select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(3, 45, 111, 0.18);
  border-radius: var(--radius-s);
  padding: 10px 38px 10px 13px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  line-height: 1.4;
  margin-top: 2px;
  transition: border-color .2s, box-shadow .2s;
}
.agendar-form select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166, 4, 4, 0.12);
}
.agendar-form select:invalid,
.agendar-form select option[value=""] { color: var(--mute); }
.agendar-form select[aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(166, 4, 4, 0.10);
}

/* Contador de caracteres do textarea */
.char-counter {
  display: block;
  text-align: right;
  font-size: .74rem;
  color: var(--mute);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.char-counter.is-near-limit { color: var(--red); }

/* Linha pessoal acima do CTA */

/* Botão de envio (full-width) */
.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 15px 26px;
  position: relative;
}

/* Consents (LGPD + marketing) — sem card, plain checkboxes */
.consent-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 2px 0;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.consent input {
  margin: 3px 0 0;
  accent-color: var(--red);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
.consent input[aria-invalid="true"] {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
.consent-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.consent-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-text a:hover { color: var(--red-dark); }

/* Foot text (abaixo da nav de etapas) */
/* Spinner inline */
.form-submit-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  margin-left: 8px;
  animation: form-spin 0.7s linear infinite;
}
.agendar-form.is-submitting .form-submit-spinner { display: inline-block; }
.agendar-form.is-submitting .form-submit-label { opacity: 0.85; }
@keyframes form-spin {
  to { transform: rotate(360deg); }
}

/* Status de erro */
.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-s);
  font-size: .95rem;
  line-height: 1.5;
}
.form-status-error {
  background: rgba(166, 4, 4, 0.07);
  color: var(--red-dark);
  border: 1px solid rgba(166, 4, 4, 0.22);
}
.form-status-error a {
  color: var(--red);
  text-decoration: underline;
  font-weight: 600;
}

/* Estado de sucesso */
.form-success {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}
.form-success h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.form-success h2 em {
  
  color: var(--red);
  font-weight: 500;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.form-success-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .agendar-form { gap: 16px; }
  .form-success-cta { flex-direction: column; align-items: stretch; }
  .form-success-cta .btn { width: 100%; justify-content: center; }
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 640px) {
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-6px); }
  .diff::before { display: none; }
  .final-cta { flex-direction: column; align-items: stretch; }
  .final-cta .btn { justify-content: center; }
  .logo img { height: 42px; }
}
