/* ============================================================
 * Marketing Solar — Landing Page oficial
 * Consolida o estado aprovado: Hero (V2) + Problema (V5) + Método (M3).
 * Depende de design-system/colors_and_type.css (tokens/fontes).
 *
 * Estrutura:
 *   1. Base / reset
 *   2. Nav
 *   3. Hero
 *   4. Problema
 *   5. Método
 *   6. Responsivo — Tablet (<= 1024px)
 *   7. Responsivo — Mobile (<= 600px)
 * ============================================================ */

/* ============================================================
 * 1. BASE / RESET
 * ============================================================ */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #061B32;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; }

html { scroll-behavior: smooth; }

/* Foco de teclado visível em todos os elementos interativos */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--evo-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respeita usuários que pedem menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Gate dos reveals de scroll (GSAP) ----
 * Estado inicial escondido SÓ quando há JS (.gsap-on) e movimento
 * permitido. Sem JS / JS falhou / reduced-motion -> tudo visível.
 * O Hero nunca entra aqui (não é animado). */
html.gsap-on #problema .v5-head,
html.gsap-on #problema .v5-panel,
html.gsap-on #problema .v5-list li,
html.gsap-on #problema .v5-foot,
html.gsap-on #problema .section-cta,
html.gsap-on #fundador .fd-head,
html.gsap-on #fundador .fd-player,
html.gsap-on #fundador .fd-sign,
html.gsap-on #fundador .section-cta,
html.gsap-on #metodo .m3-head,
html.gsap-on #metodo .m3-photo,
html.gsap-on #metodo .m3-panel,
html.gsap-on #metodo .m3-pillar,
html.gsap-on #metodo .m3-foot,
html.gsap-on #sobre .a-media,
html.gsap-on #sobre .a-copy,
html.gsap-on #sobre .a-proof-item,
html.gsap-on #sobre .section-cta,
html.gsap-on #conteudo .pl-title,
html.gsap-on #conteudo .pl-lead,
html.gsap-on #conteudo .pl-media,
html.gsap-on #conteudo .pl-features li,
html.gsap-on #conteudo .section-cta,
html.gsap-on #curso .cu-head,
html.gsap-on #curso .cu-mod,
html.gsap-on #curso .cu-bonus-line,
html.gsap-on #curso .cu-outcomes,
html.gsap-on #metodo .cta-inline,
html.gsap-on #curso .cta-inline,
html.gsap-on #trajetoria .tr-head,
html.gsap-on #trajetoria .tr-chart,
html.gsap-on #trajetoria .tr-turn,
html.gsap-on #trajetoria .tr-foot,
html.gsap-on #prova .pv-head,
html.gsap-on #prova .pv-stage,
html.gsap-on #prova .pv-controls,
html.gsap-on #prova .pv-anchor,
html.gsap-on #prova .section-cta,
html.gsap-on #faq .fq-head,
html.gsap-on #faq .fq-item,
html.gsap-on #faq .section-cta,
html.gsap-on #oferta .of-head,
html.gsap-on #oferta .of-card,
html.gsap-on #oferta .of-trust {
  opacity: 0;
  visibility: hidden;        /* autoAlpha: GSAP precisa de visibility p/ iOS */
}
@media (prefers-reduced-motion: reduce) {
  html.gsap-on #problema .v5-head,
  html.gsap-on #problema .v5-panel,
  html.gsap-on #problema .v5-list li,
  html.gsap-on #problema .v5-foot,
  html.gsap-on #problema .section-cta,
  html.gsap-on #fundador .fd-head,
  html.gsap-on #fundador .fd-player,
  html.gsap-on #fundador .fd-sign,
  html.gsap-on #fundador .section-cta,
  html.gsap-on #metodo .m3-head,
  html.gsap-on #metodo .m3-photo,
  html.gsap-on #metodo .m3-panel,
  html.gsap-on #metodo .m3-pillar,
  html.gsap-on #metodo .m3-foot,
  html.gsap-on #sobre .a-media,
  html.gsap-on #sobre .a-copy,
  html.gsap-on #sobre .a-proof-item,
  html.gsap-on #sobre .section-cta,
  html.gsap-on #conteudo .pl-title,
  html.gsap-on #conteudo .pl-lead,
  html.gsap-on #conteudo .pl-media,
  html.gsap-on #conteudo .pl-features li,
  html.gsap-on #conteudo .section-cta,
  html.gsap-on #curso .cu-head,
  html.gsap-on #curso .cu-mod,
  html.gsap-on #curso .cu-bonus-line,
  html.gsap-on #curso .cu-outcomes,
  html.gsap-on #metodo .cta-inline,
  html.gsap-on #curso .cta-inline,
  html.gsap-on #trajetoria .tr-head,
  html.gsap-on #trajetoria .tr-chart,
  html.gsap-on #trajetoria .tr-turn,
  html.gsap-on #trajetoria .tr-foot,
  html.gsap-on #prova .pv-head,
  html.gsap-on #prova .pv-stage,
  html.gsap-on #prova .pv-controls,
  html.gsap-on #prova .pv-anchor,
  html.gsap-on #prova .section-cta,
  html.gsap-on #faq .fq-head,
  html.gsap-on #faq .fq-item,
  html.gsap-on #faq .section-cta,
  html.gsap-on #oferta .of-head,
  html.gsap-on #oferta .of-card,
  html.gsap-on #oferta .of-trust {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ============================================================
 * 2. NAV (barra sólida full-width)
 * ============================================================ */
.h-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* navy profundo da marca (DS: --evo-deep), não preto */
  background: var(--evo-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 56px;
  position: relative;
  z-index: 2;
}
.h-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 85px;
}
.h-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.h-nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.h-nav-links { display: flex; gap: 32px; align-items: center; }
.h-nav-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: color .18s var(--ease-out);
}
.h-nav-links a:hover { color: #fff; }
.h-nav-cta {
  background: var(--evo-orange);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-cta);
  transition: filter .2s var(--ease-out), box-shadow .2s, transform .2s;
}
.h-nav-cta:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-1px);
  color: #fff;
}

/* ============================================================
 * 3. HERO — Full-bleed instructor portrait
 * Foto da instrutora ocupa todo o hero; copy sobreposta à esquerda.
 * ============================================================ */
.hero-artboard {
  position: relative;
  width: 100%;
  overflow: clip;
  font-family: var(--font-sans);
  color: #fff;
}
.hero-artboard.v2-portrait {
  background: #060A12;
  /* nav (85px + 1px borda) + hero = 100vh: instrutora cabe na 1ª tela */
  min-height: calc(100svh - 86px);
}

/* Fundo near-black + glow laranja quente do lado da instrutora */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(46% 70% at 80% 52%, rgba(253, 136, 0, 0.22), transparent 62%),
    radial-gradient(130% 120% at 50% 0%, #0C1119 0%, #060A12 58%);
}

/* Arco laranja decorativo atrás da instrutora.
   Fica visível quando a foto nova (recortada) entrar; com o
   placeholder retangular ele fica coberto pela foto. */
.hero-arc {
  position: absolute;
  top: 50%;
  right: -6%;
  width: min(760px, 56vw);
  height: min(760px, 56vw);
  transform: translateY(-50%) rotate(-18deg);
  z-index: 0;
  pointer-events: none;
}

.v2-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ancora no topo: corte vertical sai de baixo, nunca da cabeça */
  object-position: right top;
  z-index: 1;
}
/* Imagem dedicada mobile — escondida no desktop/tablet */
.v2-photo-mobile { display: none; }


.v2-portrait-layout {
  position: relative;
  z-index: 3;
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  gap: 24px;
  align-items: center;
  /* preenche a altura do hero p/ o align-items:center centralizar
     a copy verticalmente, sem sobra embaixo em telas altas */
  min-height: calc(100svh - 86px);
}

/* ---------- hero badge (acima do h1) ---------- */
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
}
.h-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.20);
  flex-shrink: 0;
}
/* Ajuste óptico do texto em caixa-alta dentro do badge. */
.h-badge .bt {
  display: inline-block;
  transform: translateY(0.09em);
}

/* ---------- hero headline: De R$20K a R$350K /mês ----------
 * Uma frase só, lida como unidade. R$350K explode sozinho (a
 * promessa). Conectivos recuam em sans pequeno e apagado. */
.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 24px;
  font-weight: 400;
}
/* conectivos estruturais — recuam, não competem */
.hl-word,
.hl-per {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
}
/* linha de setup: De R$20K a */
.hl-setup {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1vw, 14px);
}
.hl-from {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.9;
  color: #C4CCDA;
  letter-spacing: .01em;
}
/* linha do payoff: R$350K /mês — o gancho */
.hl-payoff {
  display: flex;
  align-items: baseline;
  gap: clamp(6px, 0.8vw, 12px);
  margin-top: -0.06em;
}
.hl-to {
  font-family: var(--font-display);
  font-size: clamp(92px, 11.5vw, 150px);
  line-height: 0.84;
  color: var(--evo-orange);
  letter-spacing: .01em;
}
.hl-per {
  align-self: center;
  color: rgba(253, 136, 0, 0.72);
}
/* método — continuação imediata, não bloco separado */
.hl-method {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}
.h-support {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  margin: 0 0 30px;
  text-wrap: pretty;
}
.h-support b { font-weight: 700; color: #fff; }

.h-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  flex-wrap: wrap;
}

/* ---------- primary button ---------- */
.h-btn-primary {
  background: var(--evo-orange);
  color: #fff;
  text-decoration: none;
  padding: 18px 30px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
  transition: filter .18s var(--ease-out), box-shadow .18s, transform .18s;
}
.h-btn-primary:hover {
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
  transform: translateY(-1px);
}
.h-btn-primary:active { transform: scale(.98); }

/* ---------- trust row ---------- */
.h-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  letter-spacing: -0.005em;
}
.h-trust svg { color: rgba(255, 255, 255, .5); flex-shrink: 0; }
.h-trust .sep { color: rgba(255, 255, 255, .25); }

/* ============================================================
 * 4. PROBLEMA — Diagnóstico
 * ============================================================ */
.p-artboard {
  position: relative;
  width: 100%;
  background: #FAFAF7;
  font-family: var(--font-sans);
  color: var(--ink-900, #0A1421);
  overflow: clip;
  padding: 92px 0 100px;
}
.p-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 56px;
  position: relative;
  z-index: 2;
}

.p-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.p-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 5px rgba(253, 136, 0, 0.14);
}
.p-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--evo-navy);
  margin: 18px 0 18px;
  text-wrap: balance;
  max-width: 920px;
}
.p-title .em-orange { color: var(--evo-orange); }
.p-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-500, #3B4654);
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}

.v5-head {
  text-align: center;
  margin-bottom: 44px;
}
.v5-head .p-title { margin-inline: auto; }
.v5-head .p-lead { margin-inline: auto; text-align: center; }

.v5-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 900px;
  margin-inline: auto;
  padding: 44px 48px;
  border-radius: 24px;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(253, 136, 0, 0.10), transparent 38%),
    linear-gradient(180deg, #FFFFFF 0%, #F1EEE8 100%);
  border: 1px solid rgba(19, 50, 83, 0.08);
  box-shadow:
    0 2px 8px rgba(6, 27, 50, 0.04),
    0 28px 64px rgba(6, 27, 50, 0.10);
  min-height: 0;
}
.v5-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--evo-orange);
}
.v5-side {
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.v5-side > * { position: relative; z-index: 1; }
.v5-side-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.v5-side-tag {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(19, 50, 83, 0.08);
  color: #6B7280;
}
.v5-side-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.12;
  margin: 0 0 28px;
  color: #2F3A49;
  text-wrap: balance;
}

.v5-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}
.v5-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16.5px;
  line-height: 1.38;
  color: #596574;
  letter-spacing: -0.005em;
}
.v5-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: -1px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: rgba(19, 50, 83, 0.06);
  color: #9CA3AF;
}

.v5-foot {
  text-align: center;
  margin-top: 42px;
}
.v5-foot .big {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.018em;
  color: var(--evo-navy);
  margin: 0 0 4px;
  text-wrap: balance;
}
.v5-foot .small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  background: var(--evo-orange);
  padding: 5px 14px 7px;
  border-radius: 6px;
  margin: 0 auto;
  line-height: 1.2;
  box-shadow: 0 8px 22px rgba(253, 136, 0, 0.30);
}

/* ============================================================
 * 4b. FUNDADOR — Palavra do fundador (VSL com facade)
 * ============================================================ */
.fd-artboard {
  position: relative;
  width: 100%;
  background: var(--gradient-section, linear-gradient(135deg, #020A12, #081A2D, #133253));
  font-family: var(--font-sans);
  color: #fff;
  overflow: clip;
  padding: clamp(64px, 8vw, 104px) 0;
}
.fd-glow-orange {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(760px, 84%);
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(253, 136, 0, 0.18), transparent 72%);
  pointer-events: none;
  z-index: 1;
}
.fd-container {
  max-width: 940px;
  margin-inline: auto;
  padding-inline: 56px;
  position: relative;
  z-index: 2;
}
.fd-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.fd-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: balance;
}
.fd-title .em-orange { color: var(--evo-orange); }
.fd-lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.70);
  margin: 0 auto;
  max-width: 580px;
  text-wrap: pretty;
}

/* Player — facade: poster + botão; o iframe Vimeo só entra no clique */
.fd-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.fd-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fd-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center,
              rgba(6, 27, 50, 0.10), rgba(6, 27, 50, 0.58));
  transition: background var(--dur-base, 260ms) var(--ease-out, ease);
}
.fd-player:hover .fd-scrim {
  background: radial-gradient(ellipse at center,
              rgba(6, 27, 50, 0.04), rgba(6, 27, 50, 0.46));
}
.fd-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.fd-play-ring {
  width: clamp(62px, 8vw, 84px);
  height: clamp(62px, 8vw, 84px);
  border-radius: 99px;
  background: var(--evo-orange);
  color: var(--evo-ink, #101820);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 38px rgba(253, 136, 0, 0.48);
  transition: transform var(--dur-base, 260ms) var(--ease-out, ease);
}
.fd-play-ring svg { margin-left: 4px; }
.fd-play:hover .fd-play-ring,
.fd-play:focus-visible .fd-play-ring { transform: scale(1.08); }
.fd-play-label {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(6, 27, 50, 0.62);
  padding: 6px 14px;
  border-radius: 99px;
}
.fd-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}
.fd-player.is-playing { cursor: default; }

/* Assinatura do fundador */
.fd-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 28px);
}
.fd-sign-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 99px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.fd-sign-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  text-align: left;
}
.fd-sign-text strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.fd-sign-text span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .fd-container { padding-inline: 32px; }
}
@media (max-width: 600px) {
  .fd-container { padding-inline: 20px; }
  .fd-player { border-radius: 16px; }
}

/* ============================================================
 * 5. MÉTODO — Painel dominante (framework 5 pilares)
 * ============================================================ */
.m-artboard {
  position: relative;
  width: 100%;
  background: var(--gradient-section, linear-gradient(135deg, #020A12, #081A2D, #133253));
  font-family: var(--font-sans);
  color: #fff;
  overflow: clip;
  padding: 88px 0 80px;
}
.m-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 56px;
  position: relative;
  z-index: 2;
}
.m-glow-orange {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.m-glow-orange.tl {
  top: -120px; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(closest-side, rgba(253, 136, 0, 0.18), transparent 70%);
}
.m-glow-orange.br {
  bottom: -180px; right: -180px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(253, 136, 0, 0.12), transparent 70%);
}

.m-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #fff;
  margin: 24px 0 18px;
  max-width: 880px;
  text-wrap: balance;
}
.m-title .em-orange { color: var(--evo-orange); }
.m-sub {
  font-family: var(--font-sans);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 660px;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.m-sub b { color: #fff; font-weight: 700; }

.m3-head { margin-bottom: 56px; max-width: 820px; }

.m3-stage {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: stretch;
}

/* Card retrato compacto */
.m3-photo {
  position: relative;
  border-radius: 24px;
  overflow: clip;
  background: #0A1624;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 480px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.m3-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.m3-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 27, 50, 0) 35%,
      rgba(6, 27, 50, 0.85) 100%);
}
.m3-photo .caption {
  position: relative;
  z-index: 2;
  padding: 22px;
}
.m3-photo .caption .role {
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--evo-orange);
  margin-bottom: 6px;
}
.m3-photo .caption .name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 4px;
}
.m3-photo .caption .desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.4;
}
.m3-photo .corner {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(6, 27, 50, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}
.m3-photo .corner .pulse {
  width: 6px; height: 6px; border-radius: 99px;
  background: #FF3D3D;
  box-shadow: 0 0 0 4px rgba(255, 61, 61, 0.25);
  animation: m3-rec-pulse 1.6s ease-in-out infinite;
}
@keyframes m3-rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* Variante: diagrama — sem moldura, imagem ocupa todo o espaço do card */
/* Dupla classe (0,2,0) garante que sobrescreve qualquer regra de .m3-photo (0,1,0) */
.m3-photo.m3-photo--diagram {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.m3-photo.m3-photo--diagram img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}
.m3-photo.m3-photo--diagram::after { display: none; }

/* Painel grande do framework */
.m3-panel {
  position: relative;
  border-radius: 24px;
  padding: 32px 32px 28px;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(253, 136, 0, 0.16), transparent 55%),
    linear-gradient(135deg, #0A1624 0%, #122E4C 55%, #1A4783 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}
.m3-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 22px;
}
.m3-panel-tag {
  font-family: var(--font-display);
  font-size: clamp(18px, 3.6vw, 22px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--evo-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.m3-panel-tag .dot {
  width: 6px; height: 6px; border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.22);
}
.m3-panel-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
}
.m3-panel-title {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 26px;
  max-width: 540px;
}

/* Pilares como sequência contínua */
.m3-pillars-row {
  --step-size: 56px;
  --pillar-gap: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--pillar-gap);
  position: relative;
  align-items: start;
  margin: 28px 0 24px;
  padding: 22px 0 4px;
}
.m3-pillar {
  position: relative;
  display: grid;
  grid-template-rows: var(--step-size) minmax(38px, auto) 1fr 2px;
  gap: 10px;
  min-height: 176px;
  padding: 0 2px 12px;
  z-index: 1;
}
.m3-pillar:not(:last-child)::after {
  display: none;
}
.m3-pillar .num {
  font-family: var(--font-display);
  width: var(--step-size);
  height: var(--step-size);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(253, 136, 0, 0.18), transparent 68%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(253, 136, 0, 0.34);
  box-shadow: 0 0 30px rgba(253, 136, 0, 0.14);
  font-size: 36px;
  line-height: 1;
  color: var(--evo-orange);
  letter-spacing: 0.02em;
  text-shadow: 0 0 24px rgba(253, 136, 0, 0.25);
}
.m3-pillar .name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
}
.m3-pillar .desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.38;
}
.m3-pillar .bar {
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--evo-orange), rgba(253, 136, 0, 0.18));
  width: 44px;
}

/* Linha laranja conectando os números */
.m3-pillar-line {
  position: absolute;
  left: calc(var(--step-size) / 2);
  right: calc(((100% - (var(--pillar-gap) * 4)) / 5) - (var(--step-size) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(253, 136, 0, 0.28) 8%,
    rgba(253, 136, 0, 0.28) 92%,
    transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.m3-pillar-line::before,
.m3-pillar-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.20);
}
.m3-pillar-line::before { left: 0; }
.m3-pillar-line::after { right: 0; }

.m3-panel-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.m3-panel-foot .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(253, 136, 0, 0.12);
  border: 1px solid rgba(253, 136, 0, 0.32);
  font-size: 12px;
  letter-spacing: -0.005em;
  font-weight: 600;
  color: #fff;
}
.m3-panel-foot .pill b { color: var(--evo-orange); font-weight: 800; }

.m3-foot {
  margin-top: 36px;
  text-align: center;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 760px;
  margin-inline: auto;
}
.m3-foot em {
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background: var(--evo-orange);
  padding: 2px 10px 4px;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 0 6px 18px rgba(253, 136, 0, 0.28);
}
.m3-foot b { color: #fff; font-weight: 700; }

/* ============================================================
 * 6. RESPONSIVO — DESKTOP COMPACTO / TABLET LANDSCAPE (<= 1024px)
 * O método passa a usar largura total para não espremer os 5 passos.
 * ============================================================ */
@media (max-width: 1024px) {
  .hero-container,
  .p-container,
  .m-container { padding-inline: 40px; }

  /* ---- hero: stacked (foto acima, texto abaixo) a partir de 1024px ----
   * Evita que o texto sobreponha a instrutora em resoluções intermediárias.
   * A foto full-bleed (position:absolute) só funciona bem em 1280px+. */
  .hero-artboard.v2-portrait {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0b2440 0%, #0b2440 66%, #060A12 100%);
  }
  .v2-photo,
  .hero-arc,
  .hero-bg { display: none; }
  .v2-photo-mobile {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(60vh, 600px);
    object-fit: cover;
    object-position: top center;
  }
  .hero-artboard.v2-portrait::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 33vh;
    height: 26vh;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 36, 64, 0) 0%, #0b2440 84%);
  }
  .hero-artboard .hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .v2-portrait-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0 0 54px;
    text-align: center;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .v2-portrait-layout > div:last-child { display: none; }
  .hero-headline {
    align-items: center;
    text-align: center;
  }
  .hl-to { font-size: clamp(92px, 14vw, 128px); }
  .hl-method { max-width: 18ch; }
  .h-support {
    max-width: 560px;
    text-align: center;
  }
  .h-ctas,
  .h-trust { justify-content: center; }

  .p-artboard { padding: 80px 0 88px; }
  .p-title { font-size: 46px; }

  .m-title { font-size: 48px; }
  .m-sub { font-size: 20px; }
  .m3-stage { grid-template-columns: 1fr; }
  .m3-photo {
    min-height: 420px;
    max-width: none;
  }
  /* Diagrama em coluna única: fluxo natural, sem posição absoluta */
  .m3-photo.m3-photo--diagram {
    min-height: 0;
    border-radius: 0;
    display: block;
  }
  .m3-photo.m3-photo--diagram picture { display: block; }
  .m3-photo.m3-photo--diagram img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: unset;
    padding: 0;
    display: block;
  }
  /* Reduz gap entre diagrama e painel quando em coluna única */
  .m3-stage:has(.m3-photo--diagram) { gap: 16px; }
  .m3-panel-title { font-size: 28px; }
}

@media (max-width: 900px) {
  .h-nav-inner {
    height: 76px;
    gap: 20px;
  }
  .h-nav-logo img { height: 48px; }
  .h-nav-links { display: none; }
  .h-nav-cta {
    min-height: 48px;
    padding: 12px 22px;
  }

  /* hero foto: reduz altura máx em tablet portrait */
  .v2-photo-mobile {
    max-height: min(56vh, 520px);
  }
  .hero-artboard.v2-portrait::after {
    top: 29vh;
    height: 28vh;
  }

  .m3-photo { min-height: 360px; }
  .m3-panel { padding: 30px 28px 26px; }
  .m3-pillars-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 24px 0 18px;
    padding: 6px 0 0;
  }
  .m3-pillar-line {
    display: none;
  }
  .m3-pillar-line::before,
  .m3-pillar-line::after { display: none; }
  .m3-pillar {
    --step-size: 56px;
    --step-gap: 28px;
    --step-line-x: calc(var(--step-size) / 2);
    --step-connector-x: calc(var(--step-size) + 10px);
    --step-arrow-size: 8px;
    --step-line-top: calc(var(--step-size) + 8px);
    --step-line-bottom: 2px;
    min-height: auto;
    display: grid;
    grid-template-columns: var(--step-size) 1fr;
    grid-template-rows: auto auto;
    column-gap: 22px;
    row-gap: 5px;
    padding: 0 0 var(--step-gap);
  }
  .m3-pillar:not(:last-child)::before {
    display: none;
  }
  .m3-pillar:not(:last-child)::after {
    display: none;
  }
  .m3-pillar .num {
    grid-row: 1 / span 2;
    width: var(--step-size);
    height: var(--step-size);
    font-size: 34px;
    text-align: center;
  }
  .m3-pillar .name {
    font-size: 16px;
    align-self: end;
  }
  .m3-pillar .desc {
    display: block;
    grid-column: 2;
    font-size: 13px;
  }
  .m3-pillar .bar { display: none; }
}

/* ============================================================
 * 7. RESPONSIVO — TABLET PORTRAIT (481px–768px)
 * Nav compacta, cards em coluna e timeline vertical touch-friendly.
 * ============================================================ */
@media (max-width: 768px) {
  .hero-container,
  .p-container,
  .m-container { padding-inline: 32px; }

  .h-nav-inner {
    height: 76px;
    gap: 20px;
  }
  .h-nav-logo img { height: 48px; }
  .h-nav-links { display: none; }
  .h-nav-cta {
    min-height: 48px;
    padding: 12px 22px;
  }

  .v2-portrait-layout {
    padding-bottom: 50px;
  }
  .hero-artboard .hero-container { margin-top: 0; }
  .hl-to { font-size: clamp(88px, 18vw, 122px); }
  .h-support { max-width: 500px; }

  .p-artboard { padding: 72px 0 80px; }
  .v5-head {
    text-align: left;
    margin-bottom: 36px;
  }
  .v5-head .p-title {
    font-size: 40px;
    max-width: 680px;
    margin-inline: 0;
    text-align: left;
  }
  .v5-head .p-lead {
    font-size: 17px;
    max-width: 620px;
    text-align: left;
    margin-inline: 0;
  }
  .v5-panel {
    max-width: none;
    padding: 36px 32px;
    border-radius: 22px;
  }
  .v5-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .v5-list li {
    min-height: 32px;
    font-size: 16px;
  }

  .m-artboard { padding: 72px 0 72px; }
  .m-title { font-size: 40px; }
  .m-sub { font-size: 18px; }
  .m3-head { margin-bottom: 40px; }
  .m3-photo {
    min-height: 340px;
    border-radius: 20px;
  }
  .m3-photo.m3-photo--diagram { border-radius: 0; }
  .m3-panel { padding: 30px 28px 26px; }
  .m3-panel-title { font-size: 25px; }
  .m3-pillars-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 24px 0 18px;
    padding: 6px 0 0;
  }
  .m3-pillar-line {
    display: none;
  }
  .m3-pillar { --step-size: 52px; }
  .m3-pillar .num {
    width: 52px;
    height: 52px;
    font-size: 32px;
  }
  .m3-pillar .name {
    font-size: 16px;
    align-self: end;
  }
  .m3-pillar .desc {
    display: block;
    grid-column: 2;
    font-size: 13px;
  }
  .m3-pillar .bar { display: none; }
}

/* ============================================================
 * 8. RESPONSIVO — MOBILE (<= 600px)
 * Hero: instrutora no topo, texto centralizado abaixo.
 * Problema e Método: empilhados em coluna única.
 * ============================================================ */
@media (max-width: 600px) {

  /* ---------- nav ---------- */
  .hero-container,
  .p-container,
  .m-container { padding-inline: 24px; }
  .h-nav-inner { height: 68px; }
  .h-nav-logo img { height: 44px; }
  .h-nav-links { display: none; }
  .h-nav-cta { padding: 11px 18px; font-size: 12px; min-height: 48px; }

  /* ---------- hero: foto no topo + texto centralizado ----------
     Foto da instrutora limpa no topo (sem moldura/matte), copy
     editorial centralizada abaixo. Mantém o dark da marca. */
  /* Fundo igual à base azul da foto -> continuidade sem emenda,
     desbotando para o near-black da marca na área do CTA. */
  .hero-artboard.v2-portrait {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #0b2440 0%, #0b2440 68%, #060A12 100%);
  }
  .v2-photo,
  .hero-arc,
  .hero-bg { display: none; }

  .v2-photo-mobile {
    display: block;
    width: 100%;
    height: auto;
    max-height: 58vh;
    object-fit: cover;
    object-position: top center;
  }
  /* Scrim: dissolve a metade inferior da foto na cor de fundo
     (#0b2440) exatamente onde o texto fica. Transparente em cima
     (rosto/torso nítidos), sólido na base da foto (emenda invisível
     com o fundo). Fica acima da foto, abaixo do texto. */
  .hero-artboard.v2-portrait::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 28vh;
    height: 30vh;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 36, 64, 0) 0%, #0b2440 86%);
  }

  /* Texto sobe sobre a foto. Escopo .hero-artboard para não afetar
     nav nem outras seções. */
  .hero-artboard .hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -110px;
  }
  .v2-portrait-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0 0 48px;
    text-align: center;
  }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  /* esconde a 2ª coluna vazia do grid no mobile */
  .v2-portrait-layout > div:last-child { display: none; }

  .h-badge {
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 7px 13px 8px;
    margin-bottom: 16px;
    max-width: 100%;
  }

  /* headline centralizado no mobile, R$350K bem grande e limpo */
  .hero-headline {
    align-items: center;
    text-align: center;
    margin: 0 0 22px;
  }
  .hl-setup { gap: 8px; }
  .hl-from { font-size: clamp(34px, 9.5vw, 48px); }
  .hl-word, .hl-per { font-size: 15px; }
  .hl-to { font-size: clamp(78px, 22vw, 108px); }
  .hl-method {
    margin-top: 8px;
    font-size: clamp(18px, 5.2vw, 22px);
    max-width: 18ch;
  }
  .h-support { font-size: 15px; max-width: 100%; margin-bottom: 24px; }

  .h-ctas { margin: 4px 0 20px; justify-content: center; }
  .h-btn-primary { padding: 16px 24px; font-size: 14px; }
  .h-trust { font-size: 12px; flex-wrap: wrap; gap: 6px; justify-content: center; }

  /* ---------- problema ---------- */
  .p-artboard { padding: 64px 0 72px; }
  .v5-head { text-align: left; margin-bottom: 36px; }
  .p-kicker { font-size: 15px; }
  .v5-head .p-title {
    font-size: 34px;
    margin-inline: 0;
    text-align: left;
  }
  .v5-head .p-lead {
    font-size: 16px;
    max-width: 100%;
    text-align: left;
    margin-inline: 0;
  }
  .v5-panel {
    border-radius: 20px;
    padding: 32px 26px;
  }
  .v5-side-title { font-size: 22px; margin-bottom: 22px; }
  .v5-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .v5-list li { font-size: 15px; }

  .v5-foot { margin-top: 40px; }
  .v5-foot .big { font-size: 20px; }
  .v5-foot .small { font-size: 18px; }

  /* ---------- método ---------- */
  .m-artboard { padding: 64px 0 64px; }
  .m3-head { margin-bottom: 32px; }
  .m-title { font-size: 34px; margin: 16px 0 12px; max-width: 100%; }
  .m-sub { font-size: 17px; max-width: 100%; }
  .m3-stage { grid-template-columns: 1fr; }
  .m3-photo {
    min-height: 260px;
    border-radius: 18px;
  }
  .m3-photo.m3-photo--diagram { border-radius: 0; }
  .m3-panel { padding: 28px 22px 22px; }
  .m3-panel-title { font-size: 22px; margin: 0 0 16px; }
  .m3-pillars-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 20px 0 16px;
    padding: 4px 0 0;
  }
  .m3-pillar-line {
    display: none;
  }
  .m3-pillar-line::before,
  .m3-pillar-line::after { display: none; }
  .m3-pillar {
    --step-size: 44px;
    --step-gap: 30px;
    --step-line-x: calc(var(--step-size) / 2);
    --step-connector-x: calc(var(--step-size) + 8px);
    --step-line-top: calc(var(--step-size) + 7px);
    --step-line-bottom: 2px;
    min-height: auto;
    padding: 0 0 var(--step-gap);
    display: grid;
    grid-template-columns: var(--step-size) 1fr;
    column-gap: 22px;
    row-gap: 4px;
  }
  .m3-pillar .num {
    grid-row: 1 / span 2;
    font-size: 30px;
    width: var(--step-size);
    height: var(--step-size);
    flex-shrink: 0;
    text-align: center;
  }
  .m3-pillar .name {
    font-size: 15px;
    align-self: end;
  }
  .m3-pillar .desc {
    display: block;
    grid-column: 2;
    font-size: 12.5px;
  }
  .m3-pillar .bar { display: none; }
  .m3-panel-foot { padding-top: 14px; margin-top: 8px; }
  .m3-foot {
    font-size: 16px;
    margin-top: 28px;
    padding-inline: 4px;
  }
}

/* ============================================================
 * INSTRUTORA — Autoridade da operação
 * Mobile-first: imagem, prova curta e CTA direto.
 * ============================================================ */
.a-artboard {
  position: relative;
  overflow: clip;
  padding: 64px 0 72px;
  background: #F4F1E8;
  background:
    radial-gradient(ellipse 84% 70% at 98% 0%, rgba(253, 136, 0, 0.10), transparent 58%),
    radial-gradient(ellipse 58% 54% at 4% 12%, rgba(19, 50, 83, 0.08), transparent 64%),
    linear-gradient(180deg, oklch(97% 0.012 82) 0%, oklch(92.5% 0.018 225) 100%);
  color: var(--evo-ink, #101820);
}
.a-container {
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.a-media {
  position: relative;
  min-height: 310px;
  border-radius: 24px;
  overflow: clip;
  background: #061B32;
  border: 1px solid rgba(19, 50, 83, 0.10);
  box-shadow: 0 28px 70px rgba(6, 27, 50, 0.18);
}
.a-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 27, 50, 0) 46%, rgba(6, 27, 50, 0.68) 100%),
    radial-gradient(circle at 88% 30%, rgba(253, 136, 0, 0.22), transparent 28%);
  pointer-events: none;
}
.a-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}
.a-copy {
  max-width: 640px;
}
.a-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.a-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.18);
}
.a-title {
  margin: 0;
  font-size: clamp(38px, 11vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--evo-navy, #133253);
  text-wrap: balance;
}
.a-lead {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(31, 42, 59, 0.76);
  max-width: 56ch;
}
/* Tira de métricas: strip com separadores finos, sem cards */
.a-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 32px 0 0;
  border-top: 1px solid rgba(19, 50, 83, 0.12);
  border-bottom: 1px solid rgba(19, 50, 83, 0.12);
}
.a-proof-item {
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid rgba(19, 50, 83, 0.12);
}
.a-proof-item:nth-child(3),
.a-proof-item:nth-child(4) {
  border-bottom: none;
}
.a-proof-item:nth-child(even) {
  padding: 22px 0 22px 20px;
  border-left: 1px solid rgba(19, 50, 83, 0.12);
}
.a-proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 9.5vw, 52px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--evo-orange);
}
.a-proof-item span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(31, 42, 59, 0.58);
}
.a-cta {
  width: 100%;
  min-height: 52px;
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--evo-orange);
  color: oklch(99% 0.005 60);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .2s;
}
.a-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
}
.a-cta:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

@media (min-width: 769px) {
  .a-artboard { padding: 84px 0 92px; }
  .a-container {
    padding-inline: 40px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    gap: 46px;
  }
  .a-media {
    min-height: 560px;
    border-radius: 28px;
  }
  .a-media img { object-position: 62% center; }
  /* Proof strip: 4 colunas, sem separador de linha */
  .a-proof { grid-template-columns: repeat(4, 1fr); }
  .a-proof-item {
    padding: 28px 20px;
    border-bottom: none;
  }
  .a-proof-item:nth-child(3),
  .a-proof-item:nth-child(4) {
    border-bottom: none;
  }
  .a-proof-item:nth-child(even) {
    padding: 28px 20px;
    border-left: none;
  }
  .a-proof-item:nth-child(n+2) {
    border-left: 1px solid rgba(19, 50, 83, 0.12);
  }
  .a-proof-item:first-child { padding-left: 0; }
  .a-proof-item:last-child { padding-right: 0; }
  .a-cta { width: auto; padding-inline: 28px; }
}

@media (min-width: 1025px) {
  .a-artboard { padding: 104px 0 112px; }
  .a-container {
    padding-inline: 56px;
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
    gap: 64px;
  }
  .a-media { min-height: 620px; }
  .a-title { max-width: 10ch; }
}

/* ============================================================
 * PLATAFORMA — Conteúdo do curso (#conteudo)
 * Layout: copy esquerda · mockup direita
 * ============================================================ */
.pl-artboard {
  position: relative;
  overflow: clip;
  padding: 80px 0 72px;
  background: #EEF3F4;
  background:
    radial-gradient(ellipse 60% 78% at 82% 48%, rgba(253, 136, 0, 0.075), transparent 60%),
    radial-gradient(ellipse 74% 62% at 0% 18%, rgba(19, 50, 83, 0.075), transparent 64%),
    linear-gradient(180deg, oklch(96.5% 0.013 225) 0%, oklch(94.5% 0.016 96) 100%);
  color: var(--evo-ink, #101820);
}
/* Textura de pontos: concentrada atrás do mockup, dissolve onde há texto */
.pl-artboard::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(19, 50, 83, 0.16) 1.4px, transparent 1.8px);
  background-size: 21px 21px;
  -webkit-mask-image: radial-gradient(ellipse 75% 88% at 76% 50%, #000 28%, transparent 82%);
  mask-image: radial-gradient(ellipse 75% 88% at 76% 50%, #000 28%, transparent 82%);
}
.pl-container {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.pl-kicker::before {
  content: '';
  width: 7px; height: 7px; border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.18);
}
.pl-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--evo-navy, #133253);
  text-wrap: balance;
}
.pl-title .em-orange { color: var(--evo-orange); }
.pl-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-500, #3B4654);
  max-width: 52ch;
}
.pl-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
}
.pl-features li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.28;
  color: rgba(19, 50, 83, 0.86);
}
.pl-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--evo-orange);
  background: linear-gradient(180deg, rgba(253, 136, 0, 0.11), rgba(253, 136, 0, 0.045));
  border: 1px solid rgba(253, 136, 0, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(253, 136, 0, 0.10);
}
.pl-ico svg {
  width: 21px;
  height: 21px;
  display: block;
}
.pl-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--evo-orange);
  color: oklch(99% 0.005 60);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .2s;
}
.pl-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
}
.pl-cta:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.pl-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Sombra de chão: ancora o mockup no espaço em vez de flutuar */
.pl-media::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: 74%;
  height: 44px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(6, 27, 50, 0.20), transparent 72%);
  filter: blur(17px);
  z-index: 0;
}
.pl-media picture { position: relative; z-index: 1; display: block; width: 100%; }
.pl-media img {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 24px 56px rgba(6, 27, 50, 0.18))
    drop-shadow(0 6px 20px rgba(6, 27, 50, 0.09));
}

@media (min-width: 769px) {
  .pl-artboard { padding: 96px 0 88px; }
  .pl-container {
    padding-inline: 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    grid-template-rows: auto auto 1fr;
    column-gap: 56px;
    row-gap: 24px;
    align-items: start;
  }
  .pl-title   { grid-column: 1; grid-row: 1; }
  .pl-lead    { grid-column: 1; grid-row: 2; margin: 0; }
  .pl-media   { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
  .pl-features { grid-column: 1; grid-row: 3; margin: 0; }
}

@media (min-width: 1025px) {
  .pl-artboard { padding: 112px 0 104px; }
  .pl-container {
    padding-inline: 56px;
    grid-template-columns: minmax(360px, 1fr) minmax(0, 1.25fr);
    column-gap: 88px;
    row-gap: 28px;
  }
}

/* ============================================================
 * CURSO — O que você vai aprender (#curso)
 * Currículo tipo syllabus numerado · bônus contido · resultados
 * ============================================================ */
.cu-artboard {
  position: relative;
  overflow: clip;
  padding: 80px 0 76px;
  background:
    radial-gradient(ellipse 70% 48% at 50% 0%, rgba(253, 136, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #050F1C 0%, #081A2D 100%);
  color: #fff;
}
.cu-container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 24px;
}
.cu-head { max-width: 760px; margin-bottom: 44px; }
.cu-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}
.cu-title .em-orange { color: var(--evo-orange); }
.cu-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
  max-width: 56ch;
}

/* Currículo numerado */
.cu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
/* Linha de módulo: número + título, escaneável (sem descrição) */
.cu-mod {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.cu-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--evo-orange);
  letter-spacing: 0.02em;
  min-width: 2.1ch;
}
.cu-mt {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

/* Bônus — uma linha, não um bloco */
.cu-bonus-line {
  margin: 24px 0 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}
.cu-bonus-line strong { color: #fff; font-weight: 700; }
.cu-bonus-plus {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1;
  color: var(--evo-orange);
}

/* Resultados — o payoff (a parte que de fato lê-se); ganha peso */
.cu-outcomes {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.cu-outcomes-label {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cu-outcomes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px 40px;
}
.cu-outcomes-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.32;
  color: #fff;
}
.cu-outcomes-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--evo-orange);
  font-weight: 700;
}

@media (min-width: 769px) {
  .cu-artboard { padding: 96px 0 92px; }
  .cu-container { padding-inline: 40px; }
  .cu-head { margin-bottom: 56px; }
  .cu-list { grid-template-columns: 1fr 1fr; column-gap: 64px; }
  /* última linha (itens 9 e 10) sem borda inferior */
  .cu-mod:nth-last-child(-n+2) { border-bottom: none; }
  .cu-bonus-line { margin-top: 30px; }
  .cu-outcomes-list { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1025px) {
  .cu-artboard { padding: 112px 0 104px; }
  .cu-container { padding-inline: 56px; }
  .cu-mod { padding: 14px 4px; }
  .cu-outcomes-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* coluna única: só o último (10) perde a borda */
  .cu-mod:last-child { border-bottom: none; }
}

/* ============================================================
 * CTA inline estratégico — fim do Método e fim do Curso
 * (pontos de pico desejo×crença; não 1 por seção)
 * ============================================================ */
.section-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.section-cta--center { justify-content: center; }
.section-cta--faq { margin-top: 8px; }
.section-cta__btn {
  width: min(100%, 380px);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--evo-orange);
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: 14.5px;
  line-height: 1.16;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .2s;
}
.section-cta__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
}
.section-cta__btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.pv-anchor .section-cta { margin-top: 26px; }

@media (min-width: 769px) {
  .section-cta { margin-top: 32px; }
  .section-cta__btn {
    width: auto;
    min-height: 54px;
    padding: 16px 30px;
    font-size: 15.5px;
  }
  #conteudo .section-cta {
    grid-column: 1;
    grid-row: 4;
    margin-top: 4px;
  }
}

.cta-inline {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-inline-line {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: #fff;
  max-width: 32ch;
  text-wrap: balance;
}
.cta-inline-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.cta-inline-aux {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.58);
}
.cta-inline-aux strong {
  font-weight: 700;
  color: #fff;
}
.cta-inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 999px;
  background: var(--evo-orange);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-cta);
  border: none;
  cursor: pointer;
  transition: transform .2s var(--ease-out), filter .2s var(--ease-out), box-shadow .2s;
}
.cta-inline-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: var(--shadow-cta-hover);
}
.cta-inline-btn:active { transform: translateY(0); filter: brightness(0.97); }

/* Variante justa: sem divisória/linha, botão colado à frase anterior
   (usado no fim do Método, onde o m3-foot já é o gancho) */
.cta-inline--tight {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}
.cta-inline--button-only { gap: 0; }

@media (min-width: 769px) {
  .cta-inline { margin-top: 52px; padding-top: 44px; gap: 22px; }
  .cta-inline--tight { margin-top: 24px; padding-top: 0; }
  .cta-inline--button-only { gap: 0; }
}

@media (max-width: 600px) {
  .section-cta,
  .h-ctas {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .section-cta__btn,
  .cta-inline-btn,
  .h-btn-primary {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .h-btn-primary {
    position: relative;
    justify-content: center;
    padding-inline: 48px;
    text-align: center;
  }

  .h-btn-primary span {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cta-inline {
    align-items: center;
    text-align: center;
  }
}

/* ============================================================
 * TRAJETÓRIA (#trajetoria) — Projeção de crescimento 12 meses.
 * Gráfico de barras horizontais: improviso (navy frio) evolui
 * até sistema (laranja). Mobile-first: meta acima, barra abaixo;
 * desktop vira 2 colunas. Cor de cada barra interpola navy->laranja
 * via --i (índice 0-11); largura via --w (valor / 350k).
 * ============================================================ */
.tr-artboard {
  position: relative;
  overflow: clip;
  padding: 80px 0 84px;
  background: #F2EDE1;
  background:
    radial-gradient(ellipse 64% 44% at 50% 0%, rgba(253, 136, 0, 0.13), transparent 62%),
    radial-gradient(ellipse 76% 62% at 100% 32%, rgba(19, 50, 83, 0.08), transparent 68%),
    linear-gradient(180deg, oklch(96% 0.018 82) 0%, oklch(92% 0.024 90) 100%);
  color: var(--evo-ink, #101820);
}
.tr-container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
}
.tr-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.tr-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.tr-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--evo-navy, #133253);
  text-wrap: balance;
}
.tr-title .em-orange { color: var(--evo-orange); }
.tr-lead {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(31, 42, 59, 0.72);
  max-width: 44ch;
}

/* ---- Gráfico do mercado solar (dados ABSOLAR) ----
 * 4 barras (2018/2020/2022/2024). Poucos pontos = cabe folgado
 * no mobile, rótulos horizontais, sem scroll nem rotação. */
.tr-chart {
  margin: 0 auto;
  max-width: 600px;
  padding: 24px 20px 20px;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 86% 70% at 50% 0%, rgba(253, 136, 0, 0.22), transparent 62%),
    linear-gradient(165deg, #0A1F38 0%, #133253 100%);
  box-shadow: 0 26px 60px rgba(6, 27, 50, 0.28);
  color: #fff;
}
.tr-chart-label {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.tr-plot {
  --plot-h: 196px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 34px;            /* espaço p/ o rótulo de valor do pico */
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.tr-bar-cell {
  position: relative;
  height: var(--plot-h);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tr-bar-fill {
  width: min(46px, 64%);
  height: var(--h);
  min-height: 5px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #FFA63D 0%, var(--evo-orange) 100%);
}
.tr-bar-val {
  position: absolute;
  left: 50%;
  bottom: calc(var(--h) + 7px);
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}
.tr-bar-cell--peak .tr-bar-fill {
  box-shadow: 0 0 0 1px rgba(253, 136, 0, 0.4),
              0 10px 30px rgba(253, 136, 0, 0.4);
}
.tr-bar-cell--peak .tr-bar-val { color: var(--evo-orange); }
.tr-years {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 9px;
}
.tr-years span {
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.54);
}
.tr-years span:last-child { color: rgba(255, 255, 255, 0.9); }

/* Dois números de apoio, dentro do card */
.tr-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tr-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 30px);
  line-height: 1;
  color: var(--evo-orange);
}
.tr-stat-desc {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.66);
}

/* A virada: o argumento depois do gráfico (sobre o artboard claro) */
.tr-turn {
  max-width: 560px;
  margin: 30px auto 0;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--evo-navy, #133253);
}
.tr-turn .em-orange { color: var(--evo-orange); }

.tr-foot {
  margin: 18px auto 0;
  max-width: 540px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(31, 42, 59, 0.48);
  text-align: center;
}

@media (min-width: 720px) {
  .tr-artboard { padding: 104px 0 108px; }
  .tr-head { margin-bottom: 52px; }
  .tr-chart { max-width: 640px; padding: 32px 30px 26px; }
  .tr-plot { --plot-h: 264px; gap: 22px; padding-top: 40px; }
  .tr-years { gap: 22px; }
  .tr-bar-val { font-size: 24px; }
  .tr-years span { font-size: 15px; }
  .tr-turn { margin-top: 38px; }
  .tr-foot { margin-top: 22px; }
}

/* ============================================================
 * PROVA (#prova) — Deck de criativos reais (palco escuro em
 * seção clara). Carrossel scroll-snap nativo, swipe no mobile.
 * ============================================================ */
.pv-artboard {
  position: relative;
  overflow: clip;
  padding: 80px 0 84px;
  background: #FAFAF7;
  color: var(--evo-ink, #101820);
}
.pv-container {
  width: min(100%, 1140px);
  margin-inline: auto;
  padding-inline: 24px;
}
.pv-head { max-width: 720px; margin-bottom: 40px; }
.pv-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--evo-navy, #133253);
  text-wrap: balance;
}
.pv-title .em-orange { color: var(--evo-orange); }
.pv-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-500, #3B4654);
  max-width: 58ch;
}

/* Palco escuro: galeria sobre parede escura, criativos brilham */
.pv-stage {
  position: relative;
  margin-top: 8px;
  padding: 52px 0 36px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(253, 136, 0, 0.10), transparent 55%),
    linear-gradient(180deg, #061528 0%, #0A2138 100%);
}
.pv-deck {
  --card-w: clamp(260px, 78vw, 320px);
  position: relative;          /* offsetLeft dos cards fica no eixo do deck */
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pv-deck::-webkit-scrollbar { display: none; }
.pv-track {
  list-style: none;
  margin: 0;
  display: flex;
  gap: 16px;
  padding: 6px calc(50% - var(--card-w) / 2);
}
.pv-card {
  flex: 0 0 var(--card-w);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: clip;
  background: #0A1A2C;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.22);
  scroll-snap-align: center;
}
.pv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controles abaixo do palco, na superfície clara */
.pv-controls {
  width: min(100%, 1140px);
  margin: 26px auto 0;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.pv-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(19, 50, 83, 0.18);
  background: #fff;
  color: var(--evo-navy, #133253);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s var(--ease-out), border-color .18s, transform .18s;
}
.pv-nav:hover {
  background: rgba(19, 50, 83, 0.04);
  border-color: rgba(19, 50, 83, 0.32);
}
.pv-nav:active { transform: scale(0.96); }
.pv-nav:focus-visible { outline: 2px solid var(--evo-orange); outline-offset: 3px; }
.pv-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}
.pv-dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  border: none;
  padding: 0;
  background: rgba(19, 50, 83, 0.25);
  cursor: pointer;
  transition: background .2s var(--ease-out), width .2s, transform .18s;
}
.pv-dot:hover { background: rgba(19, 50, 83, 0.5); }
.pv-dot.is-active {
  background: var(--evo-orange);
  width: 22px;
}
.pv-dot:focus-visible { outline: 2px solid var(--evo-orange); outline-offset: 3px; }

@media (min-width: 769px) {
  .pv-artboard { padding: 96px 0 100px; }
  .pv-container, .pv-controls { padding-inline: 40px; }
  .pv-head { margin-bottom: 52px; }
  .pv-stage { padding: 64px 0 44px; }
  .pv-deck { --card-w: clamp(340px, 48vw, 420px); }
  .pv-track { gap: 22px; }
}

@media (min-width: 1025px) {
  .pv-artboard { padding: 112px 0 116px; }
  .pv-container, .pv-controls { padding-inline: 56px; }
  .pv-stage { padding: 72px 0 52px; }
  .pv-deck { --card-w: clamp(400px, 36vw, 460px); }
}

/* Âncora — número-prova abaixo do deck */
.pv-anchor {
  width: min(100%, 1140px);
  margin: 56px auto 0;
  padding-inline: 24px;
  text-align: center;
}
.pv-num {
  font-family: var(--font-display);
  font-size: clamp(86px, 14vw, 168px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--evo-navy, #133253);
  margin-bottom: 14px;
}
.pv-num-label {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--evo-navy, #133253);
  text-wrap: balance;
  max-width: 28ch;
  margin-inline: auto;
}
.pv-num-sub {
  margin: 12px 0 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: #5A6571;
  text-wrap: balance;
  max-width: 34ch;
  margin-inline: auto;
}
.pv-num-sub strong {
  color: var(--evo-orange);
  font-weight: 700;
}

@media (min-width: 769px) {
  .pv-anchor { margin-top: 64px; padding-inline: 40px; }
  .pv-num-sub { font-size: 15.5px; }
}
@media (min-width: 1025px) {
  .pv-anchor { margin-top: 80px; padding-inline: 56px; }
}

/* ============================================================
 * FAQ (#faq) — Objeções antes da oferta
 * Accordion nativo, denso e touch-friendly.
 * ============================================================ */
.fq-artboard {
  position: relative;
  overflow: clip;
  padding: 80px 0 84px;
  background:
    radial-gradient(ellipse 70% 55% at 0% 10%, rgba(253, 136, 0, 0.13), transparent 56%),
    radial-gradient(ellipse 68% 58% at 100% 100%, rgba(18, 62, 128, 0.24), transparent 64%),
    linear-gradient(180deg, #07111D 0%, #102A46 100%);
  color: oklch(98% 0.006 235);
}
.fq-container {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.fq-head {
  max-width: 640px;
}
.fq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.fq-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--evo-orange);
  box-shadow: 0 0 0 4px rgba(253, 136, 0, 0.18);
}
.fq-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: oklch(98% 0.006 235);
  text-wrap: balance;
}
.fq-lead {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244, 247, 252, 0.68);
  max-width: 48ch;
}
.fq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.fq-item {
  border: 1px solid rgba(244, 247, 252, 0.10);
  border-radius: 8px;
  background: rgba(244, 247, 252, 0.055);
  box-shadow: 0 10px 30px rgba(2, 10, 18, 0.18);
  overflow: clip;
}
.fq-item summary {
  min-height: 56px;
  padding: 18px 58px 18px 18px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: oklch(98% 0.006 235);
}
.fq-item summary::-webkit-details-marker { display: none; }
.fq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(253, 136, 0, 0.15);
  color: var(--evo-orange);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}
.fq-item[open] summary::after {
  content: '–';
  padding-bottom: 3px;
}
.fq-item p {
  margin: 0;
  padding: 0 18px 20px;
  font-size: 14.5px;
  line-height: 1.56;
  color: rgba(244, 247, 252, 0.66);
}
.fq-item[open] {
  border-color: rgba(253, 136, 0, 0.30);
  background: rgba(244, 247, 252, 0.078);
}

@media (min-width: 769px) {
  .fq-artboard { padding: 96px 0 100px; }
  .fq-container {
    padding-inline: 40px;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
  }
  .fq-head {
    position: sticky;
    top: 112px;
  }
  .fq-item summary {
    min-height: 60px;
    padding: 20px 64px 20px 22px;
    font-size: 16px;
  }
  .fq-item summary::after { right: 22px; }
  .fq-item p {
    padding: 0 22px 22px;
    font-size: 15px;
  }
}

@media (min-width: 1025px) {
  .fq-artboard { padding: 112px 0 116px; }
  .fq-container {
    padding-inline: 56px;
    gap: 72px;
  }
}

/* ============================================================
 * 10. OFERTA (#oferta) — A matrícula. Card escuro com o preço
 * parcelado como herói tipográfico e a oferta empilhada (benefícios
 * + CTA + garantia). O parcelado é ~6x maior que o preço à vista.
 * ============================================================ */
.of-artboard {
  position: relative;
  overflow: clip;
  padding: 88px 0 96px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(253, 136, 0, 0.18), transparent 64%),
    linear-gradient(180deg, #061528 0%, #0A1F38 100%);
  color: #fff;
}
.of-container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 56px);
}

/* Head — centralizado */
.of-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}
.of-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--evo-orange);
}
.of-title {
  margin: 0;
  font-size: clamp(34px, 5.6vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}
.of-title .em-orange { color: var(--evo-orange); }
.of-lead {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 48ch;
}

/* Card */
.of-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 30px 26px 26px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 110% 60% at 50% 0%, rgba(253, 136, 0, 0.22), transparent 70%),
    linear-gradient(165deg, #0E2440 0%, #133253 100%);
  border: 1px solid rgba(253, 136, 0, 0.22);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(253, 136, 0, 0.08);
  scroll-margin-top: 84px;
}
.of-card-tag {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* Preço — parcelado em destaque, à vista bem menor */
.of-price {
  margin-top: 10px;
  text-align: center;
}
.of-price-pre {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.of-price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(82px, 19vw, 130px);
  line-height: 0.84;
  letter-spacing: 0.01em;
  color: var(--evo-orange);
  text-shadow: 0 8px 36px rgba(253, 136, 0, 0.38);
}
.of-price-cur { font-size: 0.32em; }
.of-price-int { font-size: 1em; }
.of-price-cents { font-size: 0.42em; }
.of-price-alt {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.66);
}
.of-price-alt b { color: #fff; font-weight: 700; }
.of-price-alt-meta { color: rgba(255, 255, 255, 0.5); }

/* Divisória */
.of-divider {
  margin: 24px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Benefícios */
.of-includes-label {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.of-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.of-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.of-includes b { color: #fff; font-weight: 700; }
.of-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: rgba(253, 136, 0, 0.16);
  color: var(--evo-orange);
  margin-top: 1px;
}

/* CTA — botão laranja grande */
.of-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 28px;
  padding: 18px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #FFA63D 0%, #FD8800 100%);
  color: #0A1421;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  box-shadow:
    0 14px 32px rgba(253, 136, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 180ms var(--ease-out, ease-out),
              box-shadow 180ms var(--ease-out, ease-out),
              filter 180ms var(--ease-out, ease-out);
}
.of-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 38px rgba(253, 136, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.04);
}
.of-cta:active { transform: translateY(0); filter: brightness(0.96); }
.of-cta-arrow { font-size: 1.05em; line-height: 1; }

/* Garantia — ícone + bloco de texto */
.of-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.of-guarantee-icon {
  flex-shrink: 0;
  color: var(--evo-orange);
  margin-top: 1px;
}
.of-guarantee-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.of-guarantee-text b { color: #fff; font-weight: 700; }

/* Linha de confiança fora do card */
.of-trust {
  margin: 22px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.5);
}
.of-trust b { color: rgba(255, 255, 255, 0.82); font-weight: 700; }

@media (min-width: 720px) {
  .of-artboard { padding: 108px 0 116px; }
  .of-head { margin-bottom: 52px; }
  .of-card { max-width: 560px; padding: 38px 34px 32px; }
  .of-includes { gap: 13px; }
  .of-includes li { font-size: 16px; }
  .of-cta { padding: 20px 24px; font-size: 18px; }
  .of-trust { margin-top: 28px; }
}
