@charset "UTF-8";
/* =========================================================
   Margareth Drebes — Landing high-ticket
   Design system: diagnostico/docs/manual-design-system-high-ticket.md
   Tokens:        docs/brand-margareth.md — Revisão 2 (azul-pó).
                  Contraste AA validado, 28/28 pares (script palette.py).
   Arquétipo: autoridade pessoal premium (a pessoa é o produto).
   Registro visual: derivado de #B4D9EF (azul-pó da capa do podcast),
   por decisão da cliente (2026-07-27). Hue-família 202–210°.
   ========================================================= */

:root {
  /* — Superfícies — derivadas do hue 202° de #B4D9EF — */
  --color-surface-brand:    #1D2932;  /* aço profundo — hero, palestra, CTA final */
  --color-surface-brand-2:  #222F39;  /* 2º stop do gradiente */
  --color-surface-dark:     #090D10;  /* preto-azulado — sobre, mentoria, imprensa, footer */
  --color-surface-light:    #EEF3F6;  /* gelo — temas, podcast */
  --color-surface-light-2:  #E0E8EE;  /* gelo mais denso — blocos internos */
  --color-surface-podcast:  #B4D9EF;  /* azul-pó — AMOSTRA DIRETA (capa do podcast).
                                         Único fill sólido claro de grande área: o painel do podcast. */

  /* — Acento (azul-pó) — */
  --color-accent:           #B4D9EF;  /* texto/traço sobre escuro + fill de botão em seção escura */
  --color-accent-strong:    #C7E4F4;  /* hover/realce sobre escuro */
  --color-accent-deep:      #638DAB;  /* SÓ bordas, fios e ícones (3,17:1 no gelo, 4,19:1 na marca) */
  --color-accent-on-light:  #264F6D;  /* ÚNICO azul p/ texto sobre gelo (7,76:1)
                                         e ÚNICO fill de botão em seção clara (8,00:1 c/ label claro) */

  /* — Texto — */
  --color-text-on-dark:     #F3F6F9;
  --color-text-muted-dark:  #AABCCB;  /* 7,61:1 sobre marca */
  --color-text-on-light:    #151E26;
  --color-text-muted-light: #455868;
  --color-text-muted-on-podcast: #384B5C; /* SÓ dentro do painel azul-pó (6,06:1) */
  --color-taupe:            #8FA5B5;  /* aço médio — labels discretos sobre escuro */

  /* — Divisórias e elevação — */
  --divider-on-dark:   rgba(243, 246, 249, 0.10);
  --divider-on-light:  rgba(21, 30, 38, 0.12);
  --divider-accent:    rgba(180, 217, 239, 0.32);
  --shadow:            0 30px 70px -32px rgba(0, 0, 0, 0.55);

  /* — Tipografia (INVARIANTE — jamais trocar o par serif+sans) — */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Jost", "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Corpo dimensionado para público 45+: base 17px, mínimos nunca abaixo de 15px */
  --fs-display-xl: 4.5rem;
  --fs-display-lg: 3rem;
  --fs-display-md: 2rem;
  --fs-stat:       2.875rem;
  --fs-body-lg:    1.1875rem;
  --fs-body:       1.0625rem;
  --fs-small:      0.9375rem;
  --fs-eyebrow:    0.8125rem;

  --ls-eyebrow: 0.22em;
  --ls-label:   0.12em;
  --ls-display: -0.01em;
  --lh-display: 1.08;
  --lh-body:    1.65;

  /* — Espaçamento (base 8px) — */
  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-6:  3rem;
  --space-8:  4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-pill: 999px;

  --container-max: 1200px;
  --grid-gap:      1.5rem;
  --gutter:        clamp(1.25rem, 5vw, 2.5rem);
  --header-h:      96px;
  --section-pad:   clamp(4.5rem, 10vw, 7.5rem);
}

@media (max-width: 679px) {
  :root {
    --fs-display-xl: 2.75rem;
    --fs-display-lg: 2rem;
    --fs-display-md: 1.5rem;
    --fs-stat:       2.25rem;
    --fs-body-lg:    1.0625rem;
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent-deep) var(--color-surface-dark);
}

/* Scrollbar sob medida (WebKit) */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--color-surface-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-accent-deep), var(--color-accent-on-light));
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--color-surface-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-accent); }

::selection { background: var(--color-accent); color: var(--color-surface-dark); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--color-text-on-light);
  background: var(--color-surface-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  margin: 0;
}
p { margin: 0 0 1.1rem; }
em { font-style: italic; }
ul, ol { margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Acessibilidade ---------- */
.skip-link {
  position: absolute; left: 0; top: -120%;
  background: var(--color-accent); color: var(--color-text-on-light);
  padding: 0.7rem 1.1rem; z-index: 200; font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

:where(a, button, [tabindex]):focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.surface-light :where(a, button, [tabindex]):focus-visible {
  outline-color: var(--color-accent-on-light);
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding-inline: var(--gutter);
}
.section { padding-block: var(--section-pad); }

/* Âncoras do menu param abaixo do header fixo, não atrás dele */
section[id] { scroll-margin-top: var(--header-h); }

/* =========================================================
   SUPERFÍCIES — trocam os tokens de texto/acento em bloco.
   Uma por <section>. Garante que o cobre certo é usado
   automaticamente e evita o par reprovado (#B4D9EF sobre gelo).
   ========================================================= */
.surface-brand {
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(180, 217, 239, 0.08), transparent 55%),
    linear-gradient(160deg, var(--color-surface-brand-2) 0%, var(--color-surface-brand) 60%);
  --text:       var(--color-text-on-dark);
  --text-muted: var(--color-text-muted-dark);
  --eyebrow:    var(--color-accent);
  --btn-fill:   var(--color-accent);
  --btn-label:  var(--color-text-on-light);
  --rule:       var(--divider-on-dark);
  color: var(--text);
}
.surface-dark {
  background: var(--color-surface-dark);
  --text:       var(--color-text-on-dark);
  --text-muted: var(--color-text-muted-dark);
  --eyebrow:    var(--color-accent);
  --btn-fill:   var(--color-accent);
  --btn-label:  var(--color-text-on-light);
  --rule:       var(--divider-on-dark);
  color: var(--text);
}
.surface-light {
  background: var(--color-surface-light);
  --text:       var(--color-text-on-light);
  --text-muted: var(--color-text-muted-light);
  --eyebrow:    var(--color-accent-on-light);
  --btn-fill:   var(--color-accent-on-light);
  --btn-label:  var(--color-text-on-dark);
  --rule:       var(--divider-on-light);
  color: var(--text);
}

/* Fronteiras entre escuros consecutivos — a separação de luminância
   marca↔dark é de só 1,35:1, então toda fronteira exige marcação. */
.edge-hairline { border-top: 1px solid var(--divider-on-dark); }
.edge-accent { position: relative; }
.edge-accent::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2 * var(--gutter), var(--container-max));
  border-top: 1px solid var(--divider-accent);
}

/* ---------- Eyebrow (assinatura do sistema) ---------- */
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--eyebrow);
  margin: 0 0 var(--space-2);
}

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, var(--fs-display-lg)); }
.section-head .lede { margin-top: var(--space-2); max-width: 52ch; }

.lede { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--text-muted); }
.accent { color: var(--eyebrow); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: var(--ls-label);
  line-height: 1.2;
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
/* Seta como escape unicode: o arquivo pode ser servido sem charset e o
   literal "→" vira mojibake. \2192 é imune a isso. */
.btn::after { content: "\2192"; font-size: 1em; line-height: 1; transition: transform .2s ease; }
.btn:hover::after { transform: translateX(3px); }

/* Primário sólido — usa o cobre da superfície corrente (§2.3 do brand doc:
   cobre de meio-tom como fundo falha com qualquer label; por isso duas variantes). */
.btn-solid {
  background: var(--btn-fill);
  color: var(--btn-label);
  border-color: var(--btn-fill);
}
.btn-solid:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -10px rgba(180, 217, 239, 0.35);
}

/* Outline — borda cobre, preenche no hover */
.btn-outline {
  background: transparent;
  color: currentColor;
  border-color: var(--btn-fill);
}
.btn-outline:hover {
  background: var(--btn-fill);
  color: var(--btn-label);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

.cta-row { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }
.cta-center { justify-content: center; }
.microcopy { font-size: var(--fs-small); color: var(--text-muted); margin-top: var(--space-2); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--eyebrow); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--ls-label); font-size: var(--fs-small);
  text-decoration: none;
}
.link-arrow:hover { color: var(--color-accent-strong); }
.surface-light .link-arrow:hover { color: var(--color-accent-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  color: var(--color-text-on-dark);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  --btn-fill: var(--color-accent);
  --btn-label: var(--color-text-on-light);
}
.site-header.is-scrolled {
  background: rgba(9, 13, 16, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--divider-on-dark);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 96px; gap: var(--space-2);
}

.brand { text-decoration: none; display: flex; align-items: center; gap: 0.75rem; color: var(--color-text-on-dark); }
/* Logo = assinatura script (decisão da cliente). Branca — todo contexto do header/footer é escuro. */
.brand-logo { height: 60px; width: auto; display: block; }
.brand-tag {
  font-size: 0.72rem; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--color-text-muted-dark); margin-top: 0.22rem;
}

.primary-nav ul { list-style: none; display: flex; align-items: center; gap: clamp(1.1rem, 1.8vw, 2rem); }
.primary-nav a { white-space: nowrap; }
.primary-nav a {
  text-decoration: none; font-size: var(--fs-small); font-weight: 400;
  text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-text-muted-dark); transition: color .18s;
}
.primary-nav a:hover { color: var(--color-text-on-dark); }
.nav-cta {
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent);
  padding: 0.6rem 1.1rem; border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--color-accent); color: var(--color-text-on-light) !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--divider-on-dark);
  border-radius: var(--radius-sm); cursor: pointer; position: relative;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 1.5px; background: var(--color-text-on-dark);
  transform: translate(-50%, -50%); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bar::before { transform: translate(-50%, -7px); }
.nav-toggle-bar::after  { transform: translate(-50%, 5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero ---------- */
/* padding-bottom 0: o retrato recortado encosta na fronteira da seção (briefing).
   O respiro do texto vem de .hero-copy. */
.hero {
  margin-top: calc(-1 * var(--header-h));
  padding-block: calc(var(--header-h) + clamp(2rem, 6vw, 4rem)) 0;
  position: relative;
  overflow: hidden; /* contém o glow radial */
}
.hero-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: end; }
.hero-copy { padding-bottom: clamp(3rem, 7vw, 5rem); }
.kicker {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow); letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--color-accent); font-weight: 500; margin: 0 0 var(--space-3);
}
/* Headline principal = frase de posicionamento (decisão do cliente, story 1.3).
   Segunda frase em azul-pó — a cota de duas cores da página vive aqui. */
.hero h1 {
  font-size: clamp(2rem, 1.2rem + 2.6vw, 2.9rem);
  line-height: 1.16;
  letter-spacing: var(--ls-display);
  max-width: 24ch;
}
.hero .lede { margin-top: var(--space-4); max-width: 46ch; }

/* Retrato — recorte PNG, base colada na fronteira da seção, luz radial atrás */
.hero-portrait {
  position: relative;
  max-width: 672px; margin-inline: auto; width: 100%;
  align-self: end;
}
.hero-portrait .portrait-img {
  position: relative; z-index: 1;
  width: 100%; height: auto;
}
.hero-portrait::before {
  content: ""; position: absolute; pointer-events: none;
  left: 50%; bottom: -18%;
  width: 140%; aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  background: radial-gradient(circle,
    rgba(180, 217, 239, 0.26) 0%,
    rgba(180, 217, 239, 0.10) 38%,
    transparent 66%);
}

/* ---------- Sobre / Autoridade ---------- */
.about-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
.about-figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); }
.about-figure img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%;
  display: block;
}
/* Véu frio para unir a temperatura da foto à superfície escura */
.about-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 13, 16, 0.10) 0%, rgba(29, 41, 50, 0.68) 100%),
    linear-gradient(90deg, rgba(9, 13, 16, 0.30) 0%, rgba(9, 13, 16, 0.02) 60%);
  mix-blend-mode: multiply;
}
.about-figure .figure-cap {
  position: absolute; left: var(--space-3); bottom: var(--space-3); z-index: 1;
  font-size: 0.72rem; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-text-muted-dark);
}
.about-body { max-width: 62ch; }
.about-body h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, var(--fs-display-lg)); margin-bottom: var(--space-3); }
.about-body p { color: var(--text-muted); }
.about-body em { color: var(--color-text-on-dark); font-style: italic; }

/* Citação em destaque — aspas em --color-accent-deep (borda/ornamento, nunca texto) */
.pull-quote {
  position: relative;
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
  line-height: 1.34;
  color: var(--color-text-on-dark);
  margin: 0; padding-top: var(--space-6);
}
.pull-quote::before {
  content: "\201C"; position: absolute; top: -0.15em; left: -0.02em;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: var(--color-accent-deep);
}
.pull-quote cite {
  display: block; margin-top: var(--space-3);
  font-family: var(--font-sans); font-style: normal;
  font-size: var(--fs-eyebrow); text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-taupe);
}

/* Selos de autoridade — a prova social aparece UMA vez, aqui.
   Cards no mesmo idioma dos temas: radius-lg, elevação sutil, fio de acento. */
.badges {
  /* minmax(0,1fr): labels longas não podem entortar as colunas */
  list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap); margin-top: var(--space-6);
}
.badges li {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between; gap: var(--space-2);
  min-height: 10rem;
  background: rgba(243, 246, 249, 0.03);
  border: 1px solid var(--divider-on-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: border-color .3s ease, transform .3s ease, background-color .3s ease;
}
.badges li::before {
  content: ""; position: absolute; top: 0; left: var(--space-3);
  width: 2.25rem; height: 2px;
  background: var(--color-accent);
  border-radius: 0 0 2px 2px;
}
.badges li:hover {
  border-color: var(--divider-accent);
  background: rgba(243, 246, 249, 0.05);
  transform: translateY(-3px);
}
.badges strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-stat); line-height: 1; color: var(--color-accent);
  font-variant-numeric: tabular-nums;
}
.badges span {
  display: block;
  font-size: 0.75rem; line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--color-text-muted-dark);
}
@media (prefers-reduced-motion: reduce) { .badges li:hover { transform: none; } }
.credentials {
  margin-top: var(--space-3); font-size: var(--fs-small);
  color: var(--color-taupe);
}

/* ---------- Temas (cards sobre gelo) ---------- */
/* Cards elevados com ícone (checklist do cliente, story 1.3).
   Ícones em azul profundo (--color-accent-on-light): não consomem o
   orçamento do acento claro. */
.pillars { list-style: none; display: grid; gap: var(--grid-gap); }
.pillar {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--divider-on-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-deep);
  box-shadow: 0 22px 44px -24px rgba(29, 41, 50, 0.35);
}
.pillar h3 {
  font-size: var(--fs-body-lg); color: var(--color-text-on-light);
  margin-bottom: var(--space-2);
}
.pillar p:last-child { margin: 0; color: var(--color-text-muted-light); font-size: var(--fs-small); }

.pillar-icon {
  display: grid; place-content: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(38, 79, 109, 0.08);
  color: var(--color-accent-on-light);
  margin-bottom: var(--space-3);
  transition: background-color .3s ease, color .3s ease;
}
.pillar:hover .pillar-icon { background: var(--color-accent-on-light); color: var(--color-text-on-dark); }

@media (prefers-reduced-motion: reduce) { .pillar:hover { transform: none; } }

/* ---------- Oferta âncora (palestra) ---------- */
.offer-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.offer-visual { position: relative; width: 100%; max-width: 420px; margin-inline: auto; }
.offer-visual img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
}
.offer-visual::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(29, 41, 50, 0.35) 84%, rgba(29, 41, 50, 0.92) 100%),
    linear-gradient(270deg, rgba(29, 41, 50, 0.25) 0%, transparent 34%);
}
.offer-visual::before {
  content: ""; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--divider-accent); z-index: 1; pointer-events: none;
}
.offer-copy h2 { font-size: clamp(2rem, 1.3rem + 2.6vw, var(--fs-display-lg)); margin-bottom: var(--space-3); }
.offer-copy p { color: var(--text-muted); }

.checks { list-style: none; display: grid; gap: var(--space-2); margin: var(--space-4) 0 0; }
.checks li {
  position: relative; padding-left: 1.9rem;
  color: var(--text-muted); font-size: var(--fs-small);
}
.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.15em;
  width: 1.1rem; height: 1.1rem; border-radius: var(--radius-pill);
  border: 1px solid var(--color-accent-deep);
}
.checks li::after {
  content: ""; position: absolute; left: 0.36rem; top: 0.35em;
  width: 0.4rem; height: 0.2rem;
  border-left: 1.5px solid var(--color-accent-deep); border-bottom: 1.5px solid var(--color-accent-deep);
  transform: rotate(-45deg);
}

/* Formatos de palestra — lista com ícone em chip */
.formats { list-style: none; display: grid; gap: var(--space-2); margin: var(--space-4) 0 0; }
.formats li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  color: var(--text-muted); font-size: var(--fs-small);
}
.formats strong { color: var(--text); font-weight: 500; }
.format-icon {
  flex: none;
  display: grid; place-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--divider-accent);
  border-radius: 10px;
  color: var(--color-accent);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.formats li:hover .format-icon {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface-brand);
}
.formats li > div { padding-top: 0.35rem; }

/* ---------- Faixas de oferta secundária (01/02/03) ---------- */
.strip { display: grid; gap: clamp(1.25rem, 4vw, 2.75rem); align-items: center; }
.strip-index { display: flex; align-items: baseline; gap: var(--space-3); }
.strip-num {
  font-family: var(--font-display); font-weight: 500; line-height: 0.85;
  font-size: clamp(3.25rem, 2rem + 6vw, 5.5rem);
  color: var(--eyebrow);
}
.strip-kind {
  font-family: var(--font-sans); text-transform: uppercase; letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-eyebrow); font-weight: 500; color: var(--eyebrow);
}
/* No mobile o índice sempre vem primeiro, inclusive nas faixas invertidas —
   a inversão só faz sentido quando há duas colunas (>=780px). */
.strip--flip .strip-index { order: -1; }
.strip-body { max-width: 56ch; }
.strip-body h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem); margin-bottom: var(--space-2); }
.strip-body p { margin-bottom: var(--space-3); color: var(--text-muted); }

/* ---------- Painel do podcast (sub-marca azul-pó) ---------- */
/* Escopo restrito: 1 painel por página, só nesta seção. Nenhum cobre aqui. */
.panel-podcast {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--color-surface-podcast);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);     /* obrigatório: contraste vs cream é 1,32:1 */
  padding: clamp(2rem, 5vw, 3rem);
  --text:       var(--color-text-on-light);
  --text-muted: var(--color-text-muted-on-podcast);
  color: var(--text);
  display: grid; gap: var(--space-4); align-items: center;
}
.panel-podcast p { color: var(--text-muted); }
.podcast-logo { max-width: 232px; width: 100%; margin-inline: auto; }
.podcast-links { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-2); }
.podcast-links a {
  display: inline-flex; align-items: center; gap: .45rem;
  text-decoration: none; font-size: var(--fs-small); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-text-on-light);
  border: 1px solid rgba(21, 30, 38, 0.28);
  border-radius: var(--radius-sm); padding: 0.65rem 1.05rem;
  transition: background-color .2s ease, border-color .2s ease;
}
.podcast-links a:hover { background: rgba(21, 30, 38, 0.08); border-color: rgba(21, 30, 38, 0.5); }

/* Métrica do acervo dentro do painel */
.panel-stats { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.panel-stats strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: var(--fs-stat); line-height: 1; color: var(--color-text-on-light);
}
.panel-stats span {
  display: block; font-size: var(--fs-eyebrow); text-transform: uppercase;
  letter-spacing: var(--ls-label); color: var(--color-text-muted-on-podcast); margin-top: 0.4rem;
}

/* Bio oficial da imprensa — bloco copiável.
   É também o bloco de resposta direta da página: terceira pessoa, entidade
   nomeada, autocontido. Espelha Person.description do JSON-LD. Nunca fragmentar. */
.bio-label {
  margin: var(--space-4) 0 0;
  font-size: var(--fs-eyebrow); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-taupe);
}
.bio-label + .press-bio { margin-top: var(--space-1); }
.press-bio {
  margin: var(--space-4) 0 0;
  padding: var(--space-3) var(--space-4);
  border-left: 2px solid var(--color-accent-deep);
  background: rgba(243, 246, 249, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted-dark);
}
.press-bio em { color: var(--color-text-on-dark); }

/* ---------- CTA final ---------- */
.section-final { text-align: center; }
.final-inner { max-width: 48rem; margin-inline: auto; }
.section-final h2 { font-size: clamp(2rem, 1.3rem + 3vw, var(--fs-display-lg)); }
.section-final .lede { margin: var(--space-3) auto 0; max-width: 44ch; }
.section-final .cta-row { margin-top: var(--space-6); }
.footer-brand .brand-tag { max-width: none; }

/* Assinatura de fecho — frase real dela. Respiro generoso, nunca espremida no botão. */
.closing-line {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem);
  color: var(--color-accent);
  margin: var(--space-12) 0 0;
}
.closing-sig {
  display: block; font-style: normal; font-family: var(--font-sans);
  font-size: var(--fs-small); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--color-text-muted-dark); margin-top: var(--space-2);
}

/* ---------- Footer ---------- */
.site-footer { padding-block: var(--space-8); border-top: 1px solid var(--divider-on-dark); }
.footer-inner { display: grid; gap: var(--space-4); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
.footer-brand .brand-logo { height: 34px; }
.footer-nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-4); }
.footer-nav a {
  text-decoration: none; color: var(--color-text-muted-dark);
  font-size: var(--fs-small); text-transform: uppercase; letter-spacing: var(--ls-label);
  transition: color .18s;
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-legal {
  display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-2) var(--space-3);
  font-size: var(--fs-small); color: var(--color-text-muted-dark); margin: 0; opacity: .8;
}

/* Assinatura OCANA — logo como máscara, tinta discreta que acende no hover.
   Alinhada à direita do grid do rodapé. */
.ocana-credit { display: inline-flex; flex-shrink: 0; margin-left: auto; }
.ocana-credit span {
  display: block; width: 81px; height: 16px;
  background: rgba(243, 246, 249, 0.4);
  -webkit-mask: url("./assets/ocana.png") no-repeat center / contain;
  mask: url("./assets/ocana.png") no-repeat center / contain;
  transition: background-color .2s ease;
}
.ocana-credit:hover span { background: rgba(243, 246, 249, 0.75); }

/* ---------- FAQ ----------
   Blocos autocontidos: cada par pergunta+resposta é uma unidade de citação
   para motores generativos. Texto real, nunca injetado por JS. */
.faq-grid { display: grid; gap: var(--grid-gap); }
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--divider-on-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item:hover {
  border-color: var(--color-accent-deep);
  box-shadow: 0 18px 38px -26px rgba(29, 41, 50, 0.3);
}
.faq-item h3 {
  font-size: var(--fs-body-lg);
  color: var(--color-text-on-light);
  margin-bottom: var(--space-2);
}
.faq-item p {
  margin: 0;
  color: var(--color-text-muted-light);
  font-size: var(--fs-small);
}

/* ---------- Redes sociais (ícones) ---------- */
.social-row {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-6);
}
.social-row a {
  display: grid; place-content: center;
  width: 46px; height: 46px;
  border: 1px solid var(--rule, var(--divider-on-dark));
  border-radius: var(--radius-pill);
  color: var(--text-muted, var(--color-text-muted-dark));
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.social-row a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface-dark);
  transform: translateY(-3px);
}
.social-row--sm { justify-content: flex-start; margin-top: var(--space-3); }
.social-row--sm a { width: 40px; height: 40px; }
@media (prefers-reduced-motion: reduce) { .social-row a:hover { transform: none; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 60px; height: 60px;
  display: grid; place-content: center;
  background: var(--color-accent);
  color: var(--color-surface-dark);
  border: none; border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 14px 34px -12px rgba(9, 13, 16, 0.65);
  transition: transform .25s ease, background-color .25s ease;
}
.wa-float:hover { transform: scale(1.07); background: var(--color-accent-strong); }
.wa-float::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  border: 1.5px solid var(--color-accent);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::after { animation: none; display: none; }
  .wa-float:hover { transform: none; }
}

/* ---------- Modal de captura (first-party data) ---------- */
.lead-modal {
  width: min(30rem, calc(100% - 2rem));
  margin: auto;
  padding: 0;
  border: 1px solid var(--divider-accent);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(180, 217, 239, 0.09), transparent 55%),
    linear-gradient(160deg, var(--color-surface-brand-2), var(--color-surface-brand));
  color: var(--color-text-on-dark);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  /* O dialog vive fora de qualquer .surface-*: repõe os tokens de botão */
  --text: var(--color-text-on-dark);
  --text-muted: var(--color-text-muted-dark);
  --eyebrow: var(--color-accent);
  --btn-fill: var(--color-accent);
  --btn-label: var(--color-text-on-light);
  --rule: var(--divider-on-dark);
}
.lead-modal::backdrop {
  background: rgba(9, 13, 16, 0.72);
  backdrop-filter: blur(6px);
}
.lead-form { padding: clamp(1.75rem, 5vw, 2.5rem); position: relative; }
.lead-form h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 1.9rem);
  margin-bottom: var(--space-2);
}
.modal-sub { color: var(--color-text-muted-dark); font-size: var(--fs-small); margin-bottom: var(--space-4); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  display: grid; place-content: center;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--divider-on-dark);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted-dark); cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.modal-close:hover { color: var(--color-text-on-dark); border-color: var(--color-accent); }

.field { margin-bottom: var(--space-3); }
.field label {
  display: block;
  font-size: var(--fs-eyebrow); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-text-muted-dark);
  margin-bottom: 0.45rem;
}
.field input {
  width: 100%;
  font: inherit; font-size: var(--fs-body);
  color: var(--color-text-on-dark);
  background: rgba(243, 246, 249, 0.05);
  border: 1px solid var(--divider-on-dark);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  transition: border-color .2s ease, background-color .2s ease;
}
.field input::placeholder { color: rgba(170, 188, 203, 0.55); }
.field input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(243, 246, 249, 0.08);
}
.field input:user-invalid { border-color: #E08A8A; }

.objective { border: 0; padding: 0; margin: 0 0 var(--space-3); }
.objective legend {
  font-size: var(--fs-eyebrow); font-weight: 500;
  text-transform: uppercase; letter-spacing: var(--ls-label);
  color: var(--color-text-muted-dark);
  margin-bottom: 0.6rem; padding: 0;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span {
  display: inline-block;
  font-size: var(--fs-small); font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-muted-dark);
  border: 1px solid var(--divider-on-dark);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.05rem;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.chip input:checked + span {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-surface-brand);
}
.chip input:focus-visible + span { outline: 2.5px solid var(--color-accent); outline-offset: 2px; }

.form-error { color: #E9A0A0; font-size: var(--fs-small); margin: 0 0 var(--space-2); }
.btn-block { width: 100%; justify-content: center; }
.lead-form .microcopy { margin-top: var(--space-2); text-align: center; color: var(--color-taupe); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Stagger: os filhos entram em cascata quando o pai revela */
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible.stagger > *, .is-visible .stagger > * { opacity: 1; transform: none; }
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .13s; }
.stagger > *:nth-child(3) { transition-delay: .21s; }
.stagger > *:nth-child(4) { transition-delay: .29s; }
.stagger > *:nth-child(5) { transition-delay: .37s; }
.stagger > *:nth-child(6) { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   BREAKPOINTS
   ========================================================= */

/* Mobile: CTAs em coluna, largura total; logo e float compactos */
@media (max-width: 559px) {
  .cta-row .btn { flex: 1 1 100%; justify-content: center; }
  .brand-logo { height: 48px; }
  .header-inner { min-height: 80px; }
  .wa-float { width: 54px; height: 54px; }
}

/* Menu colapsado (< 1024px) — o logo maior não deixa a nav inteira caber antes disso */
@media (max-width: 1023px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--color-surface-dark); border-bottom: 1px solid var(--divider-on-dark);
    display: none; padding: var(--space-2) var(--gutter) var(--space-3);
  }
  .primary-nav.open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav li { border-bottom: 1px solid var(--divider-on-dark); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: var(--space-2) 0.2rem; }
  .nav-cta { display: inline-block; margin-top: var(--space-2); text-align: center; }
}

/* Tablet (≥ 680px) */
@media (min-width: 680px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  /* .badges fica SEMPRE 2×2: vive num aside estreito — 4 colunas espremem as labels */
  .panel-stats { grid-template-columns: repeat(4, 1fr); }
}

/* Faixas de oferta em duas colunas com alternância (≥ 780px) */
@media (min-width: 780px) {
  .strip { grid-template-columns: minmax(180px, 0.55fr) 1fr; }
  .strip--flip { grid-template-columns: 1fr minmax(180px, 0.55fr); }
  .strip--flip .strip-body { order: 1; }
  .strip--flip .strip-index { order: 2; justify-content: flex-end; text-align: right; }
}

/* Desktop (≥ 960px) */
@media (min-width: 960px) {
  /* Equilíbrio: o texto tem piso de 28rem (nunca esmaga); o retrato ocupa
     o máximo restante até 640px, contido no grid. */
  .hero-grid   {
    grid-template-columns: minmax(28rem, 1fr) minmax(0, 640px);
    gap: clamp(2rem, 3vw, 2.75rem);
  }
  .hero-portrait { justify-self: end; margin-inline: 0; }
  .about-grid  { grid-template-columns: 1.15fr 0.85fr; }
  .offer-grid  { grid-template-columns: 0.8fr 1.2fr; }
  .pillars     { grid-template-columns: repeat(3, 1fr); }  /* 6 temas = 2×3, sem card órfão */
  .faq-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .panel-podcast { grid-template-columns: 0.55fr 1.45fr; }
  .footer-inner {
    grid-template-columns: 1fr auto; align-items: center;
    grid-template-areas: "brand nav" "legal legal";
  }
  .footer-brand { grid-area: brand; }
  .footer-nav   { grid-area: nav; }
  .footer-legal { grid-area: legal; }
}
