/* ================================================================
   main.css — Identidade visual compartilhada
   Ninho Narrativo · Formação + Newsletter Lucrativa
   ================================================================ */

/* ── TOKENS / VARIÁVEIS ────────────────────────────────────────── */
:root {
  /* ── SISTEMA NINHO NARRATIVO (novo) ──────────────────────────── */
  --color-sand:        #EAE3DA;
  --color-terra:       #9D6340;
  --color-terra-dark:  #7d4e30;
  --color-white:       #FFFFFF;
  --color-black:       #000000;
  --color-navy:        #222D3A;
  --color-terra-dim:   rgba(157, 99, 64, 0.15);
  --color-sand-dim:    rgba(234, 227, 218, 0.08);
  --space-section:     clamp(80px, 12vw, 160px);
  --radius-card:       2px;
  --transition-base:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-mono:         'DM Mono', 'Courier New', monospace;

  /* ── LEGADO (Newsletter Lucrativa) ───────────────────────────── */
  --bg:            #F5F5F7;
  --surface:       #FFFFFF;
  --text:          #1D1D1F;
  --secondary:     #6E6E73;
  --divider:       #D2D2D7;
  --accent:        #9D6340;
  --accent-h:      #8a5436;
  --accent-a:      #7a4a2e;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bg-primary:        #fafafa;
  --bg-secondary:      #ffffff;
  --bg-dark:           #0a0a0a;
  --bg-dark-secondary: #141414;
  --text-primary:      #1d1d1f;
  --text-secondary:    #6e6e73;
  --text-light:        #86868b;
  --text-inverse:      #f5f5f7;
  --accent-hover:      #8a5436;
  --success:           #34c759;
  --error:             #ff3b30;
  --border:            #d2d2d7;
  --border-light:      #e8e8ed;

  /* Radii */
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-full: 980px;

  /* Sombras */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.12);

  /* Easing */
  --ease-out:    cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);

  /* Fontes */
  --font-sans:  'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ── SCROLL PROGRESS BAR ───────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--accent);
  z-index: 9999;
  transition: width .1s linear;
}

/* ── REVEAL (animação de entrada) ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Variações de delay */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── NAV ───────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 52px; z-index: 900;
  background: rgba(250,250,250,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  /* Estado padrão: oculto (usado pela Newsletter) */
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}
/* Versão visível desde o início (Formação) */
#nav.nav--always-visible {
  transform: translateY(0);
  height: 44px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 0.5px solid rgba(0,0,0,0.12);
}
#nav.visible { transform: translateY(0); }

.nav__inner {
  max-width: 980px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-size: 16px; font-weight: 600; color: var(--text-primary);
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex; gap: 28px; list-style: none;
}
.nav__links a {
  font-size: 14px; color: var(--text-secondary);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--accent); }

.nav__cta {
  background: var(--accent); color: #fff;
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500; border: none;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--accent-hover); }

/* ── BOTÕES ────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 17px; font-weight: 500; border: none;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.btn-primary:hover  { background: var(--accent-hover); transform: scale(1.02); box-shadow: 0 8px 32px rgba(157,99,64,0.3); }
.btn-primary:active { background: var(--accent-a); transform: scale(0.98); }

.btn-primary--lg { font-size: 19px; padding: 18px 40px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 4px;
  background: none; color: var(--accent);
  font-size: 17px; font-weight: 400; border: none; padding: 0;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.7; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; border-radius: var(--radius-full);
  border: 0.5px solid rgba(255,255,255,0.12);
  background: none; font-size: 15px; color: rgba(245,245,247,0.7);
  cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.btn-whatsapp:hover { border-color: rgba(255,255,255,0.3); color: var(--text-inverse); }

/* Variante clara (Formação) */
.btn-whatsapp--light {
  border-color: var(--divider); color: var(--text);
  font-size: 17px; font-weight: 400; padding: 14px 22px;
}
.btn-whatsapp--light:hover { background: var(--bg); border-color: var(--divider); color: var(--text); }

/* ── LAYOUT: SEÇÕES E CONTAINERS ───────────────────────────────── */
.section     { padding: 120px 24px; }
.section--sm { padding: 80px 24px; }

.inner        { max-width: 980px;  margin: 0 auto; }
.inner--narrow{ max-width: 680px;  margin: 0 auto; }
.inner--wide  { max-width: 1200px; margin: 0 auto; }

/* ── EYEBROW ───────────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 12px;
}
.eyebrow--light { color: rgba(245,245,247,0.45); }

/* ── DIVIDER ───────────────────────────────────────────────────── */
hr { border: none; border-top: 1px solid var(--divider); }

/* ── TEXTO DESTACADO (highlight) ───────────────────────────────── */
.highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #c4855c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── TÍTULOS DE SEÇÃO ──────────────────────────────────────────── */
.section__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section__sub {
  font-size: 18px; color: var(--text-secondary);
  line-height: 1.65; max-width: 560px; margin-bottom: 64px;
}

/* ================================================================
   HERO
   ================================================================ */
#hero {
  background: var(--bg-secondary);
  padding: 160px 24px 140px;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Gradiente decorativo de fundo */
#hero::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(157,99,64,0.05) 0%, transparent 50%);
  animation: heroPulse 15s ease-in-out infinite;
  pointer-events: none;
}
.hero__inner    { position: relative; z-index: 1; }
.hero__eyebrow  { margin-bottom: 16px; }
.hero__headline {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.03em; color: var(--text-primary);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 19px; font-weight: 400;
  color: rgba(29,29,31,0.72); line-height: 1.55;
  max-width: 540px; margin: 0 auto 44px;
}
.hero__cta-group,
.hero__ctas {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

/* Indicador de scroll (Newsletter) */
.scroll-indicator {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-indicator span {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-light);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ================================================================
   PROOF BAR
   ================================================================ */
/* Versão clara — Formação */
#proof-bar {
  background: var(--bg);
  border-top: 0.5px solid var(--divider);
  border-bottom: 0.5px solid var(--divider);
  padding: 28px 24px;
}
.proof-bar__inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.proof-bar__label {
  font-size: 12px; color: var(--secondary);
  letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0;
}
.proof-bar__logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.proof-bar__logos span {
  font-size: 15px; font-weight: 600;
  color: var(--text); opacity: 0.28; letter-spacing: -0.01em;
}

/* Versão dark — Newsletter (grid de stats) */
.proof-bar__grid {
  max-width: 720px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.proof-stat { text-align: center; padding: 0 32px; border-right: 0.5px solid rgba(255,255,255,0.08); }
.proof-stat:last-child { border-right: none; }
.proof-stat__number {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600; color: var(--text-inverse); line-height: 1; margin-bottom: 8px;
}
.proof-stat__label { font-size: 13px; color: rgba(245,245,247,0.45); letter-spacing: 0.04em; }

/* ================================================================
   DIAGNÓSTICO
   ================================================================ */
/* Versão clara — Formação */
#diag { background: var(--surface); }

.diag__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 20px; max-width: 600px;
}
.diag__sub {
  font-size: 17px; color: var(--secondary);
  line-height: 1.65; max-width: 560px;
}
.diag__sub p { margin-bottom: 16px; }
.diag__sub p:last-child { margin-bottom: 0; }
.diag__sub strong { color: var(--text); font-weight: 600; }

/* Grid da Newsletter (dark) */
.diag__grid {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 80px; align-items: center;
}
.diag__text p {
  font-size: 17px; line-height: 1.75;
  color: rgba(245,245,247,0.6); margin-bottom: 18px;
}
.diag__text p:last-child { margin-bottom: 0; }
.diag__text strong { color: var(--text-inverse); font-weight: 600; }

/* Stat Circle (Newsletter) */
.stat-circle-wrap { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.stat-circle {
  width: 240px; height: 240px; border-radius: 50%;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.stat-circle__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(var(--accent) 0deg, var(--accent) 18deg, rgba(255,255,255,0.06) 18deg);
  animation: ringRotate 12s linear infinite;
}
.stat-circle__ring::after {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  background: var(--bg-dark);
}
.stat-circle__inner { position: relative; z-index: 1; text-align: center; }
.stat-circle__number {
  font-family: var(--font-serif); font-size: 56px;
  font-weight: 600; color: var(--text-inverse); line-height: 1;
}
.stat-circle__label {
  font-size: 13px; color: rgba(245,245,247,0.45);
  margin-top: 6px; letter-spacing: 0.04em;
}

/* ================================================================
   PROBLEMA vs SOLUÇÃO (VS-GRID)
   ================================================================ */
#enemy { background: var(--bg-primary); }

.enemy__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.enemy__sub {
  font-size: 17px; color: var(--text-secondary);
  line-height: 1.65; max-width: 580px; margin-bottom: 64px;
}
.enemy__sub p { margin-bottom: 12px; }
.enemy__sub p:last-child { margin-bottom: 0; }

.vs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.vs-card {
  border-radius: var(--radius-lg); padding: 40px;
}
/* Variantes da Formação */
.vs-card--problem  { background: var(--bg); }
.vs-card--solution { background: var(--surface); border: 0.5px solid var(--divider); }

/* Variantes da Newsletter (com cores) */
.vs-card--problem.vs-card--colored  { background: rgba(255,59,48,0.05);  border: 0.5px solid rgba(255,59,48,0.12); }
.vs-card--solution.vs-card--colored { background: rgba(52,199,89,0.05);  border: 0.5px solid rgba(52,199,89,0.12); }

.vs-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.vs-card--problem  .vs-card__icon { background: rgba(255,59,48,0.1); }
.vs-card--solution .vs-card__icon { background: rgba(52,199,89,0.1); }

.vs-card__label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
/* Formação: rótulo neutro */
.vs-card--problem  .vs-card__label { color: var(--secondary); }
.vs-card--solution .vs-card__label { color: var(--secondary); }
/* Newsletter: rótulo colorido */
.vs-card--problem.vs-card--colored  .vs-card__label { color: var(--error); }
.vs-card--solution.vs-card--colored .vs-card__label { color: var(--success); }

.vs-list { list-style: none; }
.vs-list li {
  font-size: 15px; line-height: 1.6;
  padding: 10px 0 10px 24px;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  position: relative;
}
.vs-list li:last-child { border-bottom: none; }

.vs-card--problem .vs-list li  { color: var(--text-secondary); }
.vs-card--problem .vs-list li::before { content: '—'; position: absolute; left: 0; color: var(--error); font-weight: 700; }
.vs-card--solution .vs-list li { color: var(--text-primary); font-weight: 500; }
.vs-card--solution .vs-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 13px; }

/* ================================================================
   PILARES / FEATURE GRID
   ================================================================ */
#solution { background: var(--bg-secondary); }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  background: var(--bg-primary); border-radius: var(--radius-lg);
  padding: 36px; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
/* Linha decorativa no topo ao hover */
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

/* Versão Formação: ícone SVG */
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(157,99,64,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon svg { width: 22px; height: 22px; }

/* Versão Newsletter: número grande */
.feature-card__num {
  font-size: 64px; font-weight: 700; line-height: 1;
  color: var(--border); margin-bottom: 20px; transition: color 0.3s;
}
.feature-card:hover .feature-card__num { color: var(--accent); }

.feature-card__title {
  font-size: 19px; font-weight: 600; color: var(--text-primary);
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.feature-card__desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.65;
}

/* ================================================================
   ACCORDION (Estrutura do conteúdo)
   ================================================================ */
#structure { background: var(--bg-primary); }

.accordion { margin-top: 0; }
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-item:first-child { border-top: 1px solid var(--border-light); }

.accordion-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 24px 0;
  background: none; border: none; text-align: left;
  gap: 16px; cursor: pointer;
  transition: background 0.2s;
}
.accordion-trigger:hover { background: rgba(0,0,0,0.01); }

.accordion-trigger__left { display: flex; align-items: baseline; gap: 20px; }

.accordion-trigger__num {
  font-size: 13px; color: var(--text-light);
  flex-shrink: 0; min-width: 20px;
}
.accordion-trigger__title {
  font-size: 17px; font-weight: 600;
  color: var(--text-primary); line-height: 1.3;
}
.accordion-trigger__subtitle {
  font-size: 14px; color: var(--text-secondary); margin-top: 3px;
}
.accordion-trigger__chevron {
  flex-shrink: 0; color: var(--text-light);
  transition: transform 0.4s var(--ease-out);
}
.accordion-item.open .accordion-trigger__chevron { transform: rotate(180deg); }

.accordion-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

/* Formação: indentação maior */
.accordion-content__inner { padding: 8px 0 32px 40px; }

/* Newsletter: indentação alternativa */
.accordion-content__inner--wide { padding: 4px 0 36px 92px; }

/* Módulos (Formação) */
.module { margin-bottom: 28px; }
.module:last-child { margin-bottom: 0; }
.module__title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.module__desc  { font-size: 15px; font-weight: 400; color: var(--secondary); line-height: 1.65; }

/* Tópicos das semanas (Newsletter) */
.week-topics { list-style: none; margin-bottom: 20px; }
.week-topics li {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6; padding: 8px 0 8px 20px; position: relative;
}
.week-topics li::before {
  content: '·'; position: absolute; left: 0;
  color: var(--accent); font-size: 18px; line-height: 1.2;
}
.week-result {
  background: rgba(157,99,64,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 20px;
}
.week-result p    { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.week-result strong { color: var(--text-primary); font-weight: 600; }

/* ================================================================
   PARA QUEM É (BENTO GRID)
   ================================================================ */
#audience { background: var(--bg-secondary); }

.bento-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bento-card {
  background: var(--bg-primary); border-radius: var(--radius-lg); padding: 40px;
}
.bento-card__eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px;
}
.bento-card--yes .bento-card__eyebrow { color: var(--success); }
.bento-card--no  .bento-card__eyebrow { color: var(--error); }

.bento-list { list-style: none; }
.bento-list li {
  font-size: 15px; line-height: 1.6;
  padding: 10px 0 10px 24px;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
  position: relative; color: var(--text-primary);
  transition: transform 0.2s;
}
.bento-list li:last-child { border-bottom: none; }
.bento-list li:hover { transform: translateX(4px); }

.bento-card--yes .bento-list li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; font-size: 13px; }
.bento-card--no  .bento-list li         { color: var(--text-secondary); }
.bento-card--no  .bento-list li::before { content: '✗'; position: absolute; left: 0; color: var(--error); font-weight: 700; }

/* ================================================================
   INSTRUTOR (Formação)
   ================================================================ */
#instructor { background: var(--bg); }

.instructor__grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 72px; align-items: start;
}
.instructor__photo-wrap { position: sticky; top: 64px; }
.instructor__photo {
  width: 100%; aspect-ratio: 3/4;
  background: var(--divider); border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.instructor__photo span { font-size: 12px; color: var(--secondary); letter-spacing: 0.06em; }

.instructor__name {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.05; margin-bottom: 8px;
}
.instructor__role { font-size: 17px; color: var(--secondary); margin-bottom: 40px; }
.instructor__bio p { font-size: 17px; color: var(--secondary); line-height: 1.7; margin-bottom: 18px; }
.instructor__bio p:last-child { margin-bottom: 0; }

/* ================================================================
   DEPOIMENTOS
   ================================================================ */
#social { background: var(--bg-primary); }

/* Grade fixa (Formação) */
.video-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 48px;
}
.video-slot {
  aspect-ratio: 16/9; background: var(--bg); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer; position: relative;
  border: 0.5px solid var(--divider); overflow: hidden;
}
.video-slot__play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
}
.video-slot__play svg { width: 14px; height: 14px; fill: #fff; margin-left: 3px; }
.video-slot__label { font-size: 13px; color: var(--secondary); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.testimonial-card {
  background: var(--surface); border-radius: 18px;
  border: 0.5px solid var(--divider); padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-card__stars svg { width: 13px; height: 13px; fill: #FF9F0A; }
.testimonial-card__text  { font-size: 17px; font-weight: 400; color: var(--text); line-height: 1.6; margin-bottom: 20px; }
.testimonial-card__author{ font-size: 13px; color: var(--secondary); }

/* Seção depoimentos: clipar o overflow do carousel com margem negativa */
#social { overflow-x: clip; }

/* Carrossel (Newsletter) */
.social__headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 56px;
}
.carousel-wrap {
  overflow: hidden; margin: 0 -24px; padding: 8px 0 16px;
}
.carousel-track {
  display: flex; gap: 20px; width: max-content;
  animation: carouselScroll 40s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

.depo-card {
  background: var(--bg-secondary); border-radius: var(--radius-lg);
  border: 0.5px solid var(--border-light); padding: 28px 32px;
  width: 360px; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.depo-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.depo-card__stars svg { width: 13px; height: 13px; fill: #FF9F0A; }
.depo-card__text  { font-size: 15px; color: var(--text-primary); line-height: 1.65; margin-bottom: 20px; }
.depo-card__name  { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.depo-card__role  { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ================================================================
   OFERTA
   ================================================================ */

/* Versão clara — Formação */
#offer { background: var(--bg); }

.offer-card {
  background: var(--surface); border-radius: 18px;
  border: 0.5px solid var(--divider);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 56px 52px; max-width: 680px; margin: 0 auto;
}
.offer-card__name    { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin-bottom: 8px; }
.offer-card__tagline { font-size: 17px; color: var(--secondary); margin-bottom: 40px; }

/* Features da Formação */
.offer-features          { list-style: none; margin-bottom: 32px; }
.offer-features li       { font-size: 15px; color: var(--secondary); line-height: 1.6; padding: 10px 0 10px 20px; border-bottom: 0.5px solid var(--divider); position: relative; }
.offer-features li:last-child { border-bottom: none; }
.offer-features li::before    { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 13px; font-weight: 600; }
.offer-features li strong     { color: var(--text); font-weight: 600; }

/* Mentoria spotlight */
.offer-mentoria {
  background: rgba(157,99,64,0.08); border: 0.5px solid rgba(157,99,64,0.25);
  border-radius: 12px; padding: 24px 28px; margin: 24px 0 36px;
}
.offer-mentoria__tag   { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.offer-mentoria__title { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.offer-mentoria__desc  { font-size: 15px; color: var(--secondary); line-height: 1.6; }

/* Preço — Formação */
.offer-price-block { padding-top: 32px; border-top: 1px solid var(--divider); margin-bottom: 28px; }
.offer-price       { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--text); line-height: 1; margin-bottom: 6px; }
.offer-price__note         { font-size: 15px; color: var(--secondary); margin-bottom: 4px; }
.offer-price__installments { font-size: 17px; color: var(--secondary); }
.offer-price__installments strong { color: var(--text); }

.offer-ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.offer-ctas .btn-primary { width: 100%; font-size: 17px; padding: 16px 22px; }

.offer-guarantee { font-size: 13px; color: var(--secondary); text-align: center; line-height: 1.5; }

/* Versão dark — Newsletter */
.offer__headline { font-size: clamp(32px, 4.5vw, 48px); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--text-inverse); margin-bottom: 16px; }
.offer__sub      { font-size: 17px; color: rgba(245,245,247,0.5); margin-bottom: 64px; }

.offer-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }

.offer-features__label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,245,247,0.35); margin-bottom: 20px; }

/* Override Newsletter para lista dark */
#offer.section--dark .offer-features li         { font-size: 16px; color: rgba(245,245,247,0.72); border-bottom-color: rgba(255,255,255,0.06); }
#offer.section--dark .offer-features li::before { color: var(--accent); font-size: 14px; font-weight: 700; }
#offer.section--dark .offer-features li strong  { color: var(--text-inverse); display: block; margin-bottom: 3px; }
#offer.section--dark .offer-features li span    { font-size: 14px; color: rgba(245,245,247,0.5); }

.offer-bonus__label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; margin-top: 36px; }

.bonus-card { background: rgba(157,99,64,0.08); border: 0.5px solid rgba(157,99,64,0.2); border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 12px; }
.bonus-card__title { font-size: 16px; font-weight: 600; color: var(--text-inverse); margin-bottom: 6px; }
.bonus-card__desc  { font-size: 14px; color: rgba(245,245,247,0.5); line-height: 1.6; }

/* Price Card (Newsletter) */
.price-card {
  position: sticky; top: 80px;
  background: var(--bg-dark-secondary); border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 40px 36px;
}
.price-card__name         { font-size: 17px; font-weight: 600; color: var(--text-inverse); margin-bottom: 6px; }
.price-card__access       { font-size: 14px; color: rgba(245,245,247,0.4); margin-bottom: 32px; }
.price-card__divider      { border-top: 0.5px solid rgba(255,255,255,0.08); margin-bottom: 28px; }
.price-card__price        { font-family: var(--font-serif); font-size: 56px; font-weight: 600; color: var(--text-inverse); line-height: 1; margin-bottom: 6px; }
.price-card__note         { font-size: 14px; color: rgba(245,245,247,0.4); margin-bottom: 4px; }
.price-card__installments { font-size: 16px; color: rgba(245,245,247,0.6); margin-bottom: 28px; }
.price-card__installments strong { color: var(--text-inverse); }
.price-card .btn-primary  { width: 100%; font-size: 16px; padding: 16px; margin-bottom: 12px; }
.price-card__guarantee    { font-size: 12px; color: rgba(245,245,247,0.3); text-align: center; line-height: 1.5; margin-top: 16px; }

/* ================================================================
   FAQ
   ================================================================ */
#faq { background: var(--bg-secondary); }

.faq-list { border-top: 1px solid var(--border-light); }
.faq-item  { border-bottom: 1px solid var(--border-light); }

.faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 22px 0; background: none; border: none;
  text-align: left; cursor: pointer;
}
.faq-trigger__q { font-size: 17px; font-weight: 500; color: var(--text-primary); line-height: 1.4; }

/* Chevron SVG (Formação) */
.faq-chevron { flex-shrink: 0; color: var(--text-secondary); transition: transform 0.3s ease; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* Ícone "+" (Newsletter) */
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 16px; line-height: 1;
  transition: transform 0.4s var(--ease-out), background 0.2s, border-color 0.2s;
  user-select: none;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: #fff; }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease-spring); }
.faq-content__inner { padding: 0 0 24px; }
.faq-content__inner p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }

/* Caixa de garantia (Newsletter) */
.guarantee-box {
  background: rgba(52,199,89,0.05); border: 0.5px solid rgba(52,199,89,0.2);
  border-radius: var(--radius-md); padding: 28px 32px; margin-top: 40px;
  display: flex; align-items: flex-start; gap: 16px;
}
.guarantee-box__icon  { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.guarantee-box__title { font-size: 16px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.guarantee-box__desc  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ================================================================
   CTA FINAL
   ================================================================ */
#final-cta {
  background: var(--bg-secondary);
  padding: 160px 24px; text-align: center;
  position: relative; overflow: hidden;
}
#final-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(157,99,64,0.04) 0%, transparent 50%);
  animation: heroPulse 15s ease-in-out infinite;
  pointer-events: none;
}
.final-cta__inner    { position: relative; z-index: 1; }
.final-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 16px;
}
.final-cta__sub {
  font-size: 19px; color: var(--text-secondary);
  line-height: 1.55; max-width: 540px; margin: 0 auto 44px;
}
.final-cta__price    { font-size: 15px; color: var(--text-secondary); margin-top: 16px; }
.final-cta__price strong { color: var(--text-primary); font-size: 19px; font-weight: 700; }
.final-cta__guarantee { margin-top: 12px; font-size: 13px; color: var(--text-light); }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--bg-primary);
  border-top: 0.5px solid var(--border-light);
  padding: 40px 24px 32px;
}
.footer__inner { max-width: 980px; margin: 0 auto; }
.footer__top {
  display: flex; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 0.5px solid var(--border-light);
  margin-bottom: 24px;
}
.footer__brand strong { font-size: 15px; font-weight: 600; color: var(--text-primary); display: block; }
.footer__brand span   { font-size: 12px; color: var(--text-light); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__links a { font-size: 12px; color: var(--text-secondary); transition: color 0.2s; }
.footer__links a:hover { color: var(--text-primary); }
.footer__legal { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ================================================================
   @KEYFRAMES — Animações
   ================================================================ */
@keyframes heroPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.1); opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.4; }
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  #hero, #final-cta { padding: 120px 20px 100px; }
  #offer { padding: 80px 20px; }

  .nav__links { display: none; }

  .vs-grid        { grid-template-columns: 1fr; }
  .feature-grid   { grid-template-columns: 1fr; }
  .bento-grid     { grid-template-columns: 1fr; }
  .diag__grid     { grid-template-columns: 1fr; }

  .instructor__grid      { grid-template-columns: 1fr; gap: 40px; }
  .instructor__photo-wrap{ position: static; max-width: 240px; }

  .video-row        { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .offer-card       { padding: 36px 28px; }
  .proof-bar__inner { justify-content: center; }

  .stat-circle-wrap { justify-content: flex-start; }
  .proof-bar__grid  { grid-template-columns: 1fr; gap: 40px; max-width: 280px; }
  .proof-stat       { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); padding: 0 0 32px; }
  .proof-stat:last-child { border-bottom: none; padding-bottom: 0; }

  .scroll-indicator { display: none; }
  .accordion-content__inner { padding-left: 0; }
  .accordion-content__inner--wide { padding-left: 0; }
  .footer__top { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .section { padding: 80px 20px; }
  #hero    { padding: 120px 20px 80px; }
}

/* ================================================================
   MODAL — Política de Privacidade
   ================================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9200;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal {
  background: var(--bg-secondary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%; max-height: 88vh;
  overflow: hidden; display: flex; flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-spring);
}
.modal-overlay.open .modal { transform: translateY(0); }

@media (min-width: 640px) {
  .modal-overlay { align-items: center; padding: 24px; }
  .modal {
    max-width: 680px; width: 100%; margin: 0 auto;
    border-radius: var(--radius-lg);
    max-height: 80vh;
    transform: translateY(16px) scale(0.98);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
}

.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 18px;
  border-bottom: 0.5px solid var(--border-light);
  flex-shrink: 0;
}
.modal__title { font-size: 17px; font-weight: 600; color: var(--text-primary); }
.modal__close {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-primary); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-secondary);
  font-size: 18px; line-height: 1; flex-shrink: 0;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--border-light); }

.modal__body {
  overflow-y: auto; padding: 24px;
  flex: 1; -webkit-overflow-scrolling: touch;
}
.modal__body h2 {
  font-size: 18px; font-weight: 700; color: var(--text-primary);
  margin: 28px 0 10px; letter-spacing: -0.01em;
}
.modal__body h2:first-child { margin-top: 0; }
.modal__body h3 {
  font-size: 12px; font-weight: 600; color: var(--text-light);
  margin: 20px 0 8px; letter-spacing: 0.06em; text-transform: uppercase;
}
.modal__body p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.modal__body ul { padding-left: 18px; margin-bottom: 12px; }
.modal__body li { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 5px; }
.modal__body strong { color: var(--text-primary); font-weight: 600; }
.modal__body hr { border: none; border-top: 0.5px solid var(--border-light); margin: 24px 0; }
.modal__company {
  background: var(--bg-primary); border-radius: var(--radius-md);
  padding: 18px 22px; margin-top: 24px;
}
.modal__company p { font-size: 13px; color: var(--text-secondary); margin-bottom: 3px; line-height: 1.6; }
.modal__company p:last-child { margin-bottom: 0; }

/* ================================================================
   COOKIE BANNER
   ================================================================ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 24px 20px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-spring);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 980px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 220px; }
.cookie-banner__text p { font-size: 13px; color: rgba(245,245,247,0.65); line-height: 1.55; }
.cookie-banner__text a { color: var(--accent); cursor: pointer; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; cursor: pointer; border: none;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--deny { background: rgba(255,255,255,0.1); color: rgba(245,245,247,0.65); }
.cookie-btn:hover { opacity: 0.82; }
