/* ============================================================================
   DO ZERO AO TUDO — Workshop Carlos Hering / Prosperidade Financeira
   Página de captura (lista de prioridade). Impero Solutions.
   Direção v3: meia-noite protagonista · ouro como único acento · azul de ação.
   Tipografia editorial distinta: Instrument Serif (display) + Hanken Grotesk (corpo).
   Motion como coreografia, performance como restrição de design.
   ========================================================================== */

/* ---------- Fontes self-hosted (sem chamada externa: mais rápido + LGPD) --- */
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/instrument-serif.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('../assets/fonts/instrument-serif-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url('../assets/fonts/hanken-grotesk.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens --------------------------------------------------------- */
:root {
  /* ---- Identidade v3 "Meia-noite & Ouro" ---------------------------------
     Manual e kit completo: identidade/MANUAL-DE-MARCA.md
     Use ESTES nomes em código novo. Os nomes da v1 verde (--green*, --ink…)
     seguem logo abaixo como APELIDOS apontando pra cá — foi o que permitiu
     repintar o site inteiro sem reescrever as 400 linhas de regras.
     Regra dura: azul e ouro se JUSTAPÕEM, nunca se misturam num gradiente
     (são complementares — o meio vira cinza lamacento).
  ------------------------------------------------------------------------- */
  --noite: #0A1128;       /* fundo escuro dominante — "o zero"            */
  --noite-2: #101A3D;     /* seção escura alternada                       */
  --indigo: #16205C;      /* marca profunda no claro — 15:1 no branco     */
  --azul: #2E45B8;        /* ação e link no claro — 7,9:1 no branco       */
  --azul-700: #24379A;    /* hover/press                                  */
  --azul-300: #7B93F0;    /* acento só no escuro — 6,5:1 na noite         */
  --ouro: #C9A227;        /* único acento quente — CTA no escuro, 7,7:1   */
  --ouro-esc: #A8851A;    /* hover/press · display grande no claro        */
  --champanhe: #E8C766;   /* acento no escuro — 11,4:1 na noite           */
  --tinta: #111A38;       /* texto no claro — 17,1:1                      */
  --tinta-suave: #47527A; /* secundário no claro — 7,4:1 (AAA)            */
  --gelo: #E8ECF7;        /* faixa/tinta de fundo                         */
  --gelo-txt: #B9C4E0;    /* secundário no escuro — 10,7:1 na noite       */
  --papel: #F4F6FB;       /* fundo claro frio                             */
  --linha: #DCE2F0;       /* hairline                                     */

  /* ---- Apelidos da v1 verde (não use em código novo) --------------------- */
  --ink: var(--tinta);
  --ink-soft: var(--tinta-suave);
  --green: var(--azul);
  --green-700: var(--azul-700);
  --green-deep: var(--noite);
  --green-bright: var(--ouro);
  --green-mist: var(--gelo);
  --green-mist-2: #F8FAFF;
  --paper: var(--papel);
  --white: #ffffff;
  --gold: var(--ouro);
  --gold-deep: var(--ouro-esc);
  --gold-soft: #F2E3B0;
  --line: var(--linha);
  --line-dark: rgba(232,199,102,.20);

  --shadow-sm: 0 1px 2px rgba(17,26,56,.06), 0 2px 8px rgba(17,26,56,.05);
  --shadow-md: 0 6px 18px rgba(17,26,56,.09), 0 14px 40px rgba(17,26,56,.08);
  --shadow-lg: 0 18px 50px rgba(17,26,56,.16), 0 4px 14px rgba(17,26,56,.08);
  --shadow-gold: 0 10px 26px rgba(168,133,26,.32);
  --shadow-azul: 0 10px 26px rgba(46,69,184,.30);

  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-display: clamp(2.9rem, 9.4vw, 7rem);
  --fs-h2: clamp(2rem, 5vw, 3.5rem);
  --fs-h3: clamp(1.3rem, 2.6vw, 1.9rem);
  --fs-lead: clamp(1.1rem, 2.1vw, 1.45rem);
  --fs-body: 1.0625rem;
  --fs-label: .78rem;

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --gap: clamp(1.5rem, 4vw, 3rem);
  --pad-x: clamp(1.15rem, 5vw, 4rem);
  --sec-y: clamp(4rem, 9vw, 8rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 30px;

  --ease-cine: cubic-bezier(.76, 0, .24, 1);
  --ease-out: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
  overflow-x: clip;
}

img, svg, picture { display: block; max-width: 100%; }
/* o <picture> precisa de altura pra que o height:% do <img> tenha contra o que
   resolver — sem isto a imagem de fundo não cobre bandas/heróis altos. */
.hero-bg picture, .band-bg picture, .article-hero .ah-bg picture, .lt-bg picture { height: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--azul); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 8px; top: -60px; z-index: 10001; background: var(--green); color: #fff; padding: .7rem 1rem; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 8px; }

/* film grain sutil — tira o "plástico" sem pesar */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* grão é decorativo — não faz aparelho fraco pagar por ele */
@media (max-width: 900px) { body::after { display: none; } }

/* ---------- Layout helpers ------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.narrow { max-width: var(--wrap-narrow); margin-inline: auto; }
.section { padding-block: var(--sec-y); position: relative; }
.eyebrow {
  display: inline-block; line-height: 1.55;
  font-size: var(--fs-label); font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; display: inline-block; width: 26px; height: 2px; background: var(--gold-deep); border-radius: 2px; vertical-align: middle; margin: -2px .6em 0 0; }
.sec-num {
  font-size: var(--fs-label); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-soft);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -.005em; color: var(--ink); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); }
p + p { margin-top: 1em; }
strong, b { font-weight: 700; color: var(--ink); }
.hl { color: var(--green); font-style: italic; }
.text-gold { color: var(--gold-deep); }

/* ---------- Botões / CTA --------------------------------------------------- */
/* O CTA muda de cor conforme o chão, e isso é regra de marca, não capricho:
   no claro o ouro tem 1,6:1 contra o fundo e o botão some — então vale azul.
   Na noite o ouro é a cor da conquista e o azul é que sumiria. */
.btn {
  --btn-bg: var(--azul); --btn-hover: var(--azul-700); --btn-fg: #fff;
  --btn-shadow: var(--shadow-azul); --btn-shadow-hover: 0 16px 34px rgba(46,69,184,.38);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 700; font-size: 1.02rem; line-height: 1;
  letter-spacing: .005em; text-align: center;
  padding: 1.05rem 1.7rem; border: none; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  box-shadow: var(--btn-shadow);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out), background-color .2s;
  text-wrap: balance;
}
.btn:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: var(--btn-shadow-hover); will-change: transform; }
.btn:active { transform: translateY(0); }
.btn .arw { transition: transform .3s var(--ease-out); }
.btn:hover .arw { transform: translateX(4px); }
.btn--lg { font-size: 1.12rem; padding: 1.25rem 2.1rem; width: 100%; }
.btn--ghost {
  --btn-bg: transparent; --btn-hover: var(--indigo); --btn-fg: var(--indigo);
  --btn-shadow: none; --btn-shadow-hover: var(--shadow-md);
  border: 1.5px solid var(--indigo); padding: .8rem 1.35rem;
}
.btn--ghost:hover { color: #fff; }
.btn--sm { padding: .7rem 1.15rem; font-size: .92rem; --btn-shadow: 0 6px 16px rgba(46,69,184,.26); }

/* Fundo escuro: o CTA vira ouro */
.hero .btn, .carlos .btn, .band .btn, .article-cta .btn,
.fmt-card.feature .btn, .site-footer .btn, .lt .btn {
  --btn-bg: var(--ouro); --btn-hover: var(--champanhe); --btn-fg: var(--noite);
  --btn-shadow: var(--shadow-gold); --btn-shadow-hover: 0 16px 34px rgba(201,162,39,.40);
}
.hero .btn--ghost, .carlos .btn--ghost, .band .btn--ghost, .article-cta .btn--ghost,
.site-footer .btn--ghost {
  --btn-bg: transparent; --btn-hover: var(--champanhe); --btn-fg: var(--champanhe);
  --btn-shadow: none; border-color: var(--champanhe);
}
.hero .btn--ghost:hover, .carlos .btn--ghost:hover, .band .btn--ghost:hover,
.article-cta .btn--ghost:hover, .site-footer .btn--ghost:hover { color: var(--noite); }

.cta-note { margin-top: .95rem; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.cta-note strong { color: var(--green); }

/* ---------- Scroll progress ------------------------------------------------ */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 10000;
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
  background: linear-gradient(90deg, var(--ouro-esc), var(--champanhe));
}

/* ---------- Header --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 900; padding-block: .7rem;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.3) blur(8px);
  -webkit-backdrop-filter: saturate(1.3) blur(8px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background-color .3s;
}
.header-inner { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.5rem); }
.header-link { font-weight: 600; font-size: .96rem; color: var(--ink); }
.header-link:hover { color: var(--green); }
@media (max-width: 420px) { .header-link { display: none; } }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--paper) 94%, transparent); }
/* celular ganha header opaco e barato (blur é caro no mobile) */
@media (max-width: 900px) { .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: color-mix(in srgb, var(--paper) 96%, transparent); } }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand svg { width: 40px; height: 40px; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; white-space: nowrap; }
@media (max-width: 400px) { .brand-word b { font-size: 1rem; } .brand svg { width: 34px; height: 34px; } }
.brand-word b span { color: var(--green); }
.brand-word small { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }
.site-header .btn--sm { flex-shrink: 0; }
@media (max-width: 560px) { .brand-word small { display: none; } .site-header .btn--sm .full { display: none; } }

/* ---------- HERO ----------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-block: 3.4rem 2.2rem; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 58% 42%;
  transform: scale(1.06); animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06) translate3d(0,0,0); } to { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(130% 95% at 14% 22%, rgba(6,12,34,.55) 0%, rgba(6,12,34,0) 58%),
    linear-gradient(180deg, rgba(10,17,40,.42) 0%, rgba(12,20,48,.16) 45%, rgba(10,17,40,.38) 80%, rgba(8,14,36,.66) 100%),
    linear-gradient(90deg, rgba(8,14,36,.66) 0%, rgba(8,14,36,.22) 52%, rgba(8,14,36,0) 86%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad-x); }
.hero-col { max-width: 40ch; }
.hero .eyebrow { color: var(--gelo-txt); }
.hero .eyebrow::before { background: var(--gold); } /* único destaque dourado permitido fora do CTA: acento editorial do herói */
.hero-kick-detail { color: #C7D2E8; font-size: .96rem; font-weight: 500; margin-top: .55rem; text-shadow: 0 1px 12px rgba(4,10,28,.5); }
.hero h1 {
  color: #fff; font-weight: 400; letter-spacing: -.005em; line-height: .94;
  font-size: var(--fs-display); margin: .55rem 0 0;
  text-shadow: 0 2px 34px rgba(4,10,28,.5);
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { color: #E6ECF8; margin-top: 1.05rem; font-size: var(--fs-lead); line-height: 1.45; max-width: 42ch; text-shadow: 0 1px 14px rgba(4,10,28,.4); }
.hero-cta { margin-top: 1.6rem; }
.hero-cta .cta-note { color: var(--gelo-txt); }
.hero-cta .cta-note strong { color: #fff; }
.hero-trust {
  margin-top: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.4rem;
  padding-top: 1.05rem; border-top: 1px solid rgba(255,255,255,.2); max-width: 42ch;
}
.hero-trust .t-name { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.05rem; }
.hero-trust .t-item { display: inline-flex; align-items: center; gap: .45rem; color: #C7D2E8; font-size: .86rem; font-weight: 500; }
.hero-trust .t-item b { color: var(--gold); font-weight: 800; }
.scroll-cue {
  position: absolute; bottom: 1.3rem; left: 50%; right: auto; transform: translateX(-50%); z-index: 3;
  color: var(--gelo-txt); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
@media (max-width: 900px), (max-height: 720px) { .scroll-cue { display: none; } }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(#B9C4E0, transparent); animation: cue 1.9s var(--ease-cine) infinite; transform-origin: top; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.5 } 50%{ transform: scaleY(1); opacity:1 } }

/* ---------- Reveal / motion ------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; } .js .reveal.d4 { transition-delay: .32s; }
/* headline mask reveal (hero) */
.js .hero h1 .ln > span { transform: translateY(112%); transition: transform 1s var(--ease-cine); }
.js .hero.ready h1 .ln > span { transform: translateY(0); }
.js .hero.ready h1 .ln:nth-child(2) > span { transition-delay: .09s; }
.js .hero .hero-fade { opacity: 0; transform: translateY(16px); transition: opacity .9s var(--ease-out) .35s, transform .9s var(--ease-out) .35s; }
.js .hero.ready .hero-fade { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg img { animation: none; transform: scale(1.04); }
  .scroll-cue i { animation: none; }
  .js .reveal, .js .hero h1 .ln > span, .js .hero .hero-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
  .form-card.done .form-success { animation: none !important; }
}

/* ---------- Bloco: Identificação (dor) ------------------------------------- */
.split { display: grid; grid-template-columns: 1fr; gap: var(--gap); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 5rem); } .split.rev > .split-media { order: -1; } }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.split-media .tag {
  position: absolute; left: 1rem; bottom: 1rem; background: color-mix(in srgb, var(--green-deep) 88%, transparent);
  color: var(--gelo); font-size: .78rem; font-weight: 600; padding: .5rem .85rem; border-radius: 100px; backdrop-filter: blur(6px);
}
.pain-list { list-style: none; margin-top: 1.8rem; display: grid; gap: .95rem; }
.pain-list li { position: relative; padding-left: 2.3rem; font-size: 1.08rem; line-height: 1.5; }
.pain-list li::before {
  content: ""; position: absolute; left: 0; top: .12em; width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: var(--green-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%232E45B8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M4 8h8M9 5l3 3-3 3'/%3E%3C/svg%3E") center/16px no-repeat;
}
.after-line { margin-top: 1.6rem; font-family: var(--font-display); font-size: clamp(1.25rem,2.4vw,1.7rem); font-weight: 500; font-style: italic; color: var(--green); }

/* ---------- Bloco: A virada / Quem é Carlos -------------------------------- */
.carlos { background: var(--noite); color: #E6ECF8; overflow: hidden; }
.carlos h2, .carlos h3 { color: #fff; }
.carlos .eyebrow { color: var(--champanhe); } .carlos .eyebrow::before { background: var(--gold); }
.carlos .lead, .carlos p { color: #C7D2E8; }
.carlos .split-media { box-shadow: 0 30px 70px rgba(0,0,0,.4); border: 1px solid rgba(255,255,255,.1); }
.carlos-quote { font-family: var(--font-display); font-size: clamp(1.4rem,2.6vw,2rem); font-weight: 500; font-style: italic; color: var(--gold); line-height: 1.25; margin: 0 0 1.3rem; }
.stats { display: flex; flex-wrap: wrap; gap: 2rem 3rem; margin: 2rem 0; padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1; color: #fff; }
.stat .num span { color: var(--gold); }
.stat .lbl { font-size: .9rem; color: var(--gelo-txt); margin-top: .5rem; max-width: 20ch; }
.carlos-sign { display: inline-flex; align-items: center; gap: .7rem; margin-top: .5rem; font-weight: 600; color: #fff; }
.carlos-sign span { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold); }

/* ---------- Bloco: O que vai descobrir ------------------------------------- */
.discover { background: var(--white); }
.disc-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 2.5rem; }
@media (min-width: 680px) { .disc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .disc-grid { grid-template-columns: 1fr 1fr 1fr; } }
.disc-item { background: var(--white); padding: 1.5rem 1.4rem; display: flex; gap: 1rem; transition: background-color .3s, transform .3s; }
.disc-item:hover { background: var(--green-mist); }
.disc-num { flex-shrink: 0; width: 1.9rem; height: 1.9rem; font-size: 0; position: relative; margin-top: .1rem; }
.disc-num::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, var(--indigo) 20%, var(--azul) 105%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill-rule='evenodd' d='M2 32a30 30 0 1 0 60 0a30 30 0 1 0 -60 0ZM9.71 35.39a18.9 18.9 0 1 0 37.8 0a18.9 18.9 0 1 0 -37.8 0Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill-rule='evenodd' d='M2 32a30 30 0 1 0 60 0a30 30 0 1 0 -60 0ZM9.71 35.39a18.9 18.9 0 1 0 37.8 0a18.9 18.9 0 1 0 -37.8 0Z'/%3E%3C/svg%3E") center/contain no-repeat; }
.disc-body b { display: block; font-size: 1.06rem; color: var(--ink); margin-bottom: .25rem; }
.disc-body span { font-size: .96rem; color: var(--ink-soft); line-height: 1.5; }
.disc-cap { background: var(--green-mist); align-items: center; }
.disc-cap:hover { background: var(--green-mist); }
.disc-cap .disc-body b { color: var(--green); }

/* ---------- Bloco: Para quem é / não é ------------------------------------- */
.audience { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 2.5rem; }
@media (min-width: 760px) { .audience { grid-template-columns: 1fr 1fr; gap: 1.6rem; } }
.aud-card { border-radius: var(--radius); padding: 2rem clamp(1.4rem,3vw,2.2rem); border: 1px solid var(--line); }
.aud-card.yes { background: var(--green-mist); border-color: color-mix(in srgb, var(--green) 22%, transparent); }
.aud-card.no { background: var(--white); }
.aud-card h3 { font-size: 1.35rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: .6rem; }
.aud-card ul { list-style: none; display: grid; gap: .9rem; }
.aud-card li { position: relative; padding-left: 2.1rem; line-height: 1.5; }
.aud-card.yes li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 7.5l3 3 6-6.5'/%3E%3C/svg%3E") center/1.4rem no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 7.5l3 3 6-6.5'/%3E%3C/svg%3E") center/1.4rem no-repeat;
}
.aud-card.no li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  border: 1.5px solid var(--line); background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%2347527A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 3l6 6M9 3l-6 6'/%3E%3C/svg%3E") center/12px no-repeat;
}
.aud-card.no li { color: var(--ink-soft); }

/* ---------- Bloco: Formato ------------------------------------------------- */
.format-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2.5rem; }
@media (min-width: 760px) { .format-grid { grid-template-columns: 1fr 1fr; } }
.fmt-card { position: relative; border-radius: var(--radius); padding: 2.1rem; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); overflow: hidden; }
.fmt-card.feature { background: var(--noite); color: var(--gelo); border-color: var(--green-deep); }
.fmt-card.feature h3 { color: #fff; }
.fmt-card .fmt-ico { width: 2.6rem; height: 2.6rem; border-radius: 12px; display: grid; place-items: center; background: var(--green-mist); color: var(--green); margin-bottom: 1.1rem; }
.fmt-card.feature .fmt-ico { background: rgba(255,255,255,.12); color: var(--gelo-txt); }
.fmt-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.fmt-card p { color: var(--ink-soft); } .fmt-card.feature p { color: #C7D2E8; }
.fmt-badge { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1rem; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gelo); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); padding: .4rem .72rem; border-radius: 8px; }
.fmt-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gelo); box-shadow: 0 0 0 3px rgba(255,255,255,.16); }
.fmt-note { margin-top: 2rem; text-align: center; font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.fmt-note b { color: var(--green); }

/* ---------- Bloco: CTA final + Formulário ---------------------------------- */
.enroll { background: linear-gradient(180deg, var(--white) 0%, var(--paper) 100%); }
.enroll-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap); align-items: start; }
@media (min-width: 940px) { .enroll-grid { grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); } }
.enroll-copy h2 { margin-bottom: 1.2rem; }
.enroll-copy .decisor { margin-top: 1.6rem; padding: 1.5rem 1.7rem; background: var(--green-mist); border-radius: var(--radius); }
.enroll-copy .decisor .decisor-k { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--green); margin-bottom: .5rem; }
.enroll-copy .decisor p { color: var(--ink); font-size: 1.02rem; }

/* Form card */
.form-card { background: var(--white); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-lg); border: 1px solid var(--line); position: relative; }
.form-card .fc-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .3rem; }
.form-card .fc-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(201,162,39,.20); }
.form-card .fc-top span { font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.form-card h3 { font-size: clamp(1.35rem,2.4vw,1.7rem); margin-bottom: .3rem; }
.form-card .fc-sub { font-size: .96rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: var(--green); }
.field input[type=text], .field input[type=tel] {
  width: 100%; font-size: 16px; padding: .95rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: var(--paper); transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: #7A85A8; }
.field input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(46,69,184,.14); background: #fff; }
.field.invalid input { border-color: #8A4B12; box-shadow: 0 0 0 4px rgba(138,75,18,.14); }
.field .err { display: none; margin-top: .4rem; font-size: .82rem; color: #7A400F; font-weight: 600; }
.field.invalid .err { display: block; }

/* Segmented intent (nunca <select> nativo no mobile) */
.seg { display: grid; grid-template-columns: 1fr; gap: .6rem; }
@media (min-width: 420px) { .seg { grid-template-columns: 1fr 1fr 1fr; } }
.seg label {
  display: flex; align-items: center; justify-content: center; gap: .45rem; text-align: center;
  min-height: 48px; padding: .7rem .6rem; font-size: .92rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color .2s, background-color .2s, color .2s; margin: 0;
}
.seg input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg label:hover { border-color: var(--green); }
.seg input:checked + span { color: #fff; }
.seg label:has(input:checked) { background: var(--green); border-color: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.seg label:has(input:focus-visible) { outline: 3px solid var(--azul); outline-offset: 2px; }
.seg input:focus-visible + span { text-decoration: underline; }

/* LGPD */
.consent { display: flex; align-items: flex-start; gap: .7rem; margin: .3rem 0 1.3rem; }
.consent input { margin-top: .22rem; width: 20px; height: 20px; flex-shrink: 0; accent-color: var(--green); }
.consent label { font-size: .84rem; color: var(--ink-soft); line-height: 1.45; }
.consent a { color: var(--green); text-decoration: underline; }
.form-foot { margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: .5rem; font-size: .82rem; color: var(--ink-soft); }
.form-foot svg { width: 15px; height: 15px; color: var(--green); }

/* Success state */
.form-success { display: none; text-align: center; padding: 1rem .5rem; }
.form-card.done .form-body { display: none; }
.form-card.done .form-success { display: block; animation: pop .6s var(--ease-out) both; }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.success-check { width: 74px; height: 74px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--green-mist); display: grid; place-items: center; color: var(--green); }
.success-check svg { width: 38px; height: 38px; }
.form-success h3 { font-size: 1.6rem; margin-bottom: .7rem; }
.form-success p { color: var(--ink-soft); margin-bottom: .6rem; }
.form-success .next { margin: 1.4rem 0; padding: 1.1rem; background: var(--green-mist-2); border-radius: var(--radius-sm); font-size: .95rem; text-align: left; }
.form-success .next b { color: var(--green); }
.btn-wa { --btn-bg: var(--ouro); --btn-hover: var(--champanhe); --btn-fg: var(--noite);
  --btn-shadow: var(--shadow-gold); --btn-shadow-hover: 0 16px 34px rgba(201,162,39,.40); }

.share-row { margin-top: 1rem; display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ------------------------------------------------------------ */
.faq { max-width: var(--wrap-narrow); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.35rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem,1.9vw,1.35rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .ic { flex-shrink: 0; width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1.5px solid var(--green); display: grid; place-items: center; color: var(--green); transition: transform .3s var(--ease-out), background-color .3s; position: relative; }
.faq-item .ic::before, .faq-item .ic::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-item .ic::before { width: 12px; height: 2px; } .faq-item .ic::after { width: 2px; height: 12px; transition: transform .3s var(--ease-out); }
.faq-item[open] .ic { background: var(--green); color: #fff; }
.faq-item[open] .ic::after { transform: scaleY(0); }
.faq-item .ans { padding: 0 0 1.4rem; color: var(--ink-soft); line-height: 1.6; max-width: 60ch; }
.faq-item .ans b { color: var(--green); }

/* ---------- Footer --------------------------------------------------------- */
.site-footer { background: var(--noite); color: var(--gelo-txt); padding-block: clamp(3rem,6vw,5rem) 2rem; overflow: hidden; position: relative; }
.footer-claim { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(1.5rem,3.4vw,2.6rem); color: #fff; line-height: 1.2; max-width: 24ch; }
.footer-claim b { color: var(--gold); font-style: normal; font-weight: 600; }
.footer-meta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center; justify-content: space-between; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand b { font-family: var(--font-display); color: #fff; font-size: 1.05rem; }
.footer-brand small { display: block; color: #8C97BC; font-size: .8rem; letter-spacing: .01em; margin-top: 2px; }
.footer-legal { font-size: .8rem; color: #8C97BC; line-height: 1.6; max-width: 46ch; }
.footer-legal a { color: var(--gelo-txt); text-decoration: underline; }
.footer-credit { margin-top: 1.5rem; font-size: .78rem; color: #7A85A8; }
.footer-credit a { color: var(--gold); }
.footer-word { position: absolute; right: -2%; bottom: -8%; font-family: var(--font-display); font-weight: 600; font-size: clamp(6rem,22vw,20rem); color: rgba(255,255,255,.035); line-height: .8; pointer-events: none; user-select: none; letter-spacing: -.03em; }

/* ---------- WhatsApp FAB --------------------------------------------------- */
.wa-fab {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 950; display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ouro); color: var(--noite); font-weight: 700; font-size: .95rem;
  padding: .85rem 1.1rem; border-radius: 100px; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.wa-fab svg { width: 22px; height: 22px; }
.wa-fab .wa-txt { white-space: nowrap; }
@media (max-width: 640px) { .wa-fab .wa-txt { display: none; } .wa-fab { padding: .95rem; } }

/* ---------- Band cinematográfica ------------------------------------------- */
.band { position: relative; min-height: 58vh; display: flex; align-items: center; overflow: hidden; }
.band-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.band-bg img { width: 100%; height: 116%; object-fit: cover; object-position: center 42%; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,14,36,.88) 0%, rgba(8,14,36,.55) 55%, rgba(8,14,36,.26) 100%); }
.band-inner { position: relative; z-index: 2; }
.band-line { font-family: var(--font-display); color: #fff; font-weight: 600; font-size: clamp(1.9rem, 5.4vw, 4rem); line-height: 1.1; letter-spacing: -.02em; text-shadow: 0 2px 26px rgba(4,10,28,.5); max-width: 20ch; }
.band-line em { font-style: italic; color: var(--gold); }
.band--right .band-bg::after { background: linear-gradient(270deg, rgba(8,14,36,.88) 0%, rgba(8,14,36,.55) 55%, rgba(8,14,36,.24) 100%); }
.band--right .band-inner { display: flex; justify-content: flex-end; }
.band--right .band-line { text-align: right; }

/* ---------- Utilidades ----------------------------------------------------- */
.center { text-align: center; }
.mt-cta { margin-top: 2.2rem; }
.sec-head { max-width: 42ch; }
.sec-head.center { margin-inline: auto; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Blog ----------------------------------------------------------- */
.blog-hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(1.4rem, 3vw, 2.4rem); }
.blog-hero h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); line-height: .98; margin-top: .6rem; max-width: 15ch; }
.blog-hero p { margin-top: 1.1rem; max-width: 48ch; }
.post-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
@media (min-width: 680px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease-out), box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .cover { aspect-ratio: 16 / 10; overflow: hidden; background: var(--green-mist); }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.post-card:hover .cover img { transform: scale(1.05); }
.post-card .pc-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card .pc-tag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.post-card h2 { font-size: 1.5rem; line-height: 1.08; }
.post-card p { color: var(--ink-soft); font-size: .98rem; line-height: 1.5; }
.post-card .pc-more { margin-top: auto; padding-top: .7rem; color: var(--green); font-weight: 700; font-size: .95rem; }

.article-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
.article-hero .ah-bg { position: absolute; inset: 0; z-index: 0; }
.article-hero .ah-bg img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .ah-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,36,.52) 0%, rgba(8,14,36,.66) 55%, rgba(6,11,30,.94) 100%); }
.article-hero .ah-inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.article-hero .eyebrow { color: var(--champanhe); }
.article-hero .eyebrow::before { background: var(--gold); }
.article-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1; max-width: 20ch; margin-top: .8rem; text-shadow: 0 2px 26px rgba(4,10,28,.5); }
.article-hero .ah-meta { color: var(--gelo-txt); margin-top: 1.1rem; font-size: .9rem; font-weight: 500; }
.prose { max-width: 66ch; margin-inline: auto; }
.prose > p:first-of-type { font-size: 1.25rem; color: var(--ink); line-height: 1.6; }
.prose p { margin-bottom: 1.3rem; font-size: 1.12rem; line-height: 1.72; color: var(--ink); }
.prose h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 2.4rem 0 1rem; }
.prose blockquote { margin: 2rem 0; padding: 0; border: 0; font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.25; color: var(--indigo); }
.prose ul { margin: 0 0 1.4rem 0; list-style: none; display: grid; gap: .7rem; }
.prose ul li { position: relative; padding-left: 1.8rem; line-height: 1.6; font-size: 1.08rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .55em; width: .7rem; height: .7rem; border-radius: 50%; background: var(--azul); }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.article-back { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1.4rem; color: var(--green); font-weight: 600; font-size: .95rem; }
.article-cta { background: var(--noite); color: var(--gelo); text-align: center; }
.article-cta h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.article-cta p { color: #C7D2E8; margin: 1rem auto 1.8rem; max-width: 40ch; }
