/* ================================================================
   CAMADA-MED — styles.css V6
   Base mantida + componentes novos: carrossel, accordion FAQ,
   hamburger, stats bar, como funciona, Atlas, Sora, animações
   ================================================================ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  --black:  #000000;
  --navy:   #0B0E1A;
  --navy2:  #050914;
  --card:   #0A0F1F;
  --card2:  #11172A;
  --gold:   #D4AF37;
  --gold2:  #C9952A;
  --white:  #F5F5F0;
  --muted:  #CFCFC8;
  --soft:   #8F94A3;
  --danger: #FF6B6B;
  --border:      rgba(212,175,55,.34);
  --border-soft: rgba(212,175,55,.16);
  --shadow: 0 0 65px rgba(212,175,55,.13);
  --radius: 24px;
}

/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
button, a { touch-action: manipulation; }
img { max-width: 100%; height: auto; display: block; }

/* ── TIPOGRAFIA ─────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Sora', 'Inter', system-ui, sans-serif;
  margin-top: 0;
}
p { margin-top: 0; }
h1 {
  font-size: clamp(34px, 6.5vw, 74px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 22px;
  font-weight: 800;
}
h1 .gold, h2 .gold, h3 .gold { color: var(--gold); }

/* ── SCROLL PROGRESS ──────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
  z-index: 999;
  transition: width .12s linear;
}

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.anchor-offset { scroll-margin-top: 90px; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
}
.brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800; letter-spacing: 1.6px;
  text-decoration: none; font-size: clamp(18px, 3.5vw, 26px);
  white-space: nowrap;
}
.brand span { color: var(--gold); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-wrap: nowrap; }
.nav-link {
  font-size: 13px; font-weight: 700; text-decoration: none;
  color: var(--muted); padding: 10px; white-space: nowrap;
  transition: color .2s;
}
.nav-link:hover { color: var(--white); }
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 999px; padding: 11px 18px;
  font-weight: 800; letter-spacing: .2px; border: 1px solid var(--border);
  transition: .22s ease; white-space: nowrap; font-size: 13px;
}
.pill:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(212,175,55,.18); }
.pill.gold { background: var(--gold); color: #000; border-color: var(--gold); }
.pill.ghost { background: transparent; color: var(--gold); }

/* ── HAMBURGER ─────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 6px;
  background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ─────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed; top: 65px; left: 0; right: 0;
  background: rgba(5,9,20,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 49; padding: 16px 24px 24px;
  transform: translateY(-10px); opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1; transform: translateY(0);
  pointer-events: all;
}
.mobile-link {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 700; text-decoration: none;
  color: var(--muted); font-size: 16px;
  transition: color .2s;
}
.mobile-link:hover { color: var(--white); }
.mobile-link:last-child { border-bottom: 0; }
.mobile-link-gold { color: var(--gold) !important; font-weight: 800; }

/* ── WHATSAPP FLOAT ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 100;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,.5);
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(60px, 9vw, 110px) 0;
}
.public-hero {
  background:
    radial-gradient(circle at 14% 8%, rgba(212,175,55,.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(201,149,42,.1), transparent 30%),
    linear-gradient(135deg, #000 0%, #050914 50%, #0B0E1A 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(212,175,55,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(212,175,55,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); color: var(--gold);
  padding: 8px 14px; border-radius: 999px;
  font-weight: 800; font-size: 12px; letter-spacing: .8px;
  text-transform: uppercase; margin-bottom: 22px;
  background: rgba(10,15,31,.62);
}
.lead {
  font-size: clamp(16px, 2.4vw, 21px);
  line-height: 1.78; color: var(--muted); font-weight: 500;
  margin-bottom: 18px;
}
.sublead {
  font-size: clamp(14px, 1.9vw, 17px);
  line-height: 1.78; color: var(--soft); margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-line { margin-top: 20px; color: var(--soft); font-size: 13px; }

.hero-card {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(10,15,31,.94), rgba(2,4,10,.98));
  border-radius: 32px; padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card-inner {
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  padding: clamp(24px, 4vw, 42px);
  min-height: 430px;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(212,175,55,.14), transparent 60%);
}
.brain-logo-hero {
  width: min(200px, 65%);
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 32px rgba(212,175,55,.22));
}
.mock-book {
  width: 70%; min-height: 280px;
  border-radius: 20px; border: 2px solid rgba(212,175,55,.6);
  background: linear-gradient(145deg, #050914, #111827);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4.5vw, 50px);
  line-height: 1.05; letter-spacing: -1px;
  box-shadow: 0 24px 90px rgba(212,175,55,.14);
}
.mock-book span { color: var(--gold); }
.mock-sub { color: var(--gold); font-weight: 800; font-size: clamp(13px, 1.8vw, 17px); margin-top: 16px; }
.mock-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 22px; width: 100%; }
.mock-chip {
  border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 12px 8px; color: var(--muted); font-size: 12px;
  font-weight: 700; background: rgba(0,0,0,.24); text-align: center;
}

/* ── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--navy2) 0%, #020509 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px 0;
}
.stats-row {
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap; gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800; color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block; color: var(--soft);
  font-size: 13px; font-weight: 600;
  margin-top: 6px; letter-spacing: .3px;
}
.stat-divider {
  width: 1px; height: 52px;
  background: var(--border-soft);
}

/* ── SECTION ────────────────────────────────────────────────────── */
.section {
  padding: clamp(60px, 9vw, 110px) 0;
  border-top: 1px solid var(--border-soft);
  background: var(--black);
}
.section.alt {
  background: linear-gradient(180deg, #000 0%, var(--navy2) 100%);
}
.section-title {
  text-align: center; font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.12; letter-spacing: -1px;
  font-weight: 800; margin-bottom: 16px;
}
.section-sub {
  text-align: center; color: var(--muted);
  font-size: clamp(15px, 2.3vw, 19px);
  line-height: 1.78; width: min(860px, 100%);
  margin: 0 auto 44px;
}
.two-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px); align-items: center;
}
.text-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.12; letter-spacing: -1px;
  font-weight: 800; margin-bottom: 22px;
}
.body-text {
  font-size: clamp(15px, 2.2vw, 19px);
  line-height: 1.82; color: var(--muted); margin-bottom: 18px;
}
.punch {
  color: var(--gold);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800; line-height: 1.65;
}
.eyebrow-small {
  display: inline-block; color: var(--gold);
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-center {
  display: block; text-align: center; color: var(--gold);
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── PAIN LIST ─────────────────────────────────────────────────── */
.pain-list {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.pain-row {
  display: flex; gap: 12px; align-items: flex-start;
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 0; color: var(--muted);
  font-size: clamp(14px, 1.9vw, 17px);
}
.pain-row:last-child { border-bottom: 0; }
.num { color: var(--gold); font-weight: 800; min-width: 34px; }

/* ── CARDS MÉTODO ──────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(145deg, var(--card), #05070f);
  border: 1px solid var(--border); border-radius: 22px;
  padding: 28px; box-shadow: none;
  transition: transform .22s ease, box-shadow .22s ease;
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute;
  inset: auto -20% -50% -20%; height: 120px;
  background: radial-gradient(circle, rgba(212,175,55,.1), transparent 64%);
  pointer-events: none;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-icon {
  color: var(--gold); margin-bottom: 14px;
  width: 44px; height: 44px;
  border: 1px solid var(--border-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,.06);
}
.card-number {
  color: var(--gold); font-size: 28px; font-weight: 800;
  margin-bottom: 12px; opacity: .5;
}
.card h3 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 2.2vw, 22px); line-height: 1.24;
  font-weight: 800; margin-bottom: 10px;
}
.card p { color: var(--muted); line-height: 1.7; margin: 0; font-size: 15px; }

/* ── COMO FUNCIONA ─────────────────────────────────────────────── */
.how-steps {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.step-item {
  flex: 1; min-width: 180px; max-width: 240px;
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 20px; padding: 26px 22px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--gold); color: #000;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px;
  flex-shrink: 0;
}
.step-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px; line-height: 1.3;
}
.step-body p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }
.step-arrow {
  color: var(--gold); font-size: 26px;
  display: flex; align-items: center; padding: 0 8px;
  margin-top: 24px; align-self: flex-start;
  opacity: .6;
}

/* ── VITRINE ───────────────────────────────────────────────────── */
.visual-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 36px;
}
.visual-tile {
  background: linear-gradient(145deg, #0A0F1F, #02040A);
  border: 1px solid rgba(212,175,55,.28); border-radius: 22px;
  padding: 16px; box-shadow: 0 20px 70px rgba(0,0,0,.32);
  transition: transform .22s ease, box-shadow .22s ease;
}
.visual-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.visual-tile img {
  width: 100%; border-radius: 14px;
  aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid rgba(212,175,55,.15);
}
.visual-tile h3 {
  font-size: 17px; margin: 14px 0 6px;
  font-family: 'Sora', sans-serif; font-weight: 700;
}
.visual-tile p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ── OFERTAS ───────────────────────────────────────────────────── */
.offer-duo {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; align-items: stretch;
}
.offer-box {
  border-radius: 26px; padding: clamp(24px, 4vw, 44px);
  background: var(--card); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.offer-box.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(145deg, var(--card), #050505);
}
.badge {
  display: inline-flex; border-radius: 999px;
  background: var(--gold); color: #000;
  padding: 8px 14px; font-size: 11px;
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 18px;
}
.badge-gold { background: var(--gold); color: #000; }
.price {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 7vw, 62px);
  font-weight: 800; color: var(--gold); margin: 10px 0 18px;
  display: flex; align-items: baseline; gap: 4px;
}
.price small {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--soft); font-weight: 500;
}
.clean-list {
  list-style: none; padding: 0; margin: 22px 0;
  color: var(--muted); font-size: clamp(14px, 1.9vw, 17px);
  line-height: 2.1;
}
.clean-list li { border-bottom: 1px solid var(--border-soft); padding: 8px 0; }
.clean-list li:last-child { border-bottom: 0; }
.mini-note { font-size: 13px; color: var(--soft); line-height: 1.55; margin-top: 14px; }

/* ── BOTÕES ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; border-radius: 12px;
  font-size: clamp(13px, 1.8vw, 16px); font-weight: 800;
  letter-spacing: .2px; padding: 15px 24px;
  transition: transform .22s ease, box-shadow .22s ease;
  text-align: center; border: 2px solid var(--gold);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(212,175,55,.22); }
.btn-primary { background: var(--gold); color: #050505; }
.btn-secondary { background: transparent; color: var(--gold); }
.btn-large { padding: 17px 30px; font-size: clamp(14px, 2vw, 17px); }
.btn-wa {
  background: #25D366; color: #fff;
  border-color: #25D366;
}
.btn-wa:hover { box-shadow: 0 0 32px rgba(37,211,102,.3); }
.center-actions { justify-content: center; }

/* ── ACESSO FUNDADOR ─────────────────────────────────────────── */
.book-feature {
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.14), transparent 36%),
    linear-gradient(145deg, #0A0F1F, #02050B);
  border: 2px solid var(--gold); border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 24px 90px rgba(212,175,55,.1);
}
.book-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.guarantee-line {
  color: var(--muted); font-size: 15px; margin: 12px 0 22px;
}
.feature-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.feature-item:last-child { border-bottom: 0; }
.feature-check {
  color: var(--gold); font-weight: 800; font-size: 18px;
  flex-shrink: 0; margin-top: 2px;
}
.feature-item strong { display: block; margin-bottom: 4px; font-size: 15px; }
.feature-item p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

/* ── BIBLIOTECA BUBBLES ──────────────────────────────────────── */
.bubble-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px; margin-top: 28px;
}
.bubble {
  position: relative; background: var(--card);
  border: 1px solid rgba(212,175,55,.24); border-radius: 24px;
  padding: 22px; color: var(--white); line-height: 1.58;
  box-shadow: 0 18px 50px rgba(0,0,0,.26);
}
.bubble::after {
  content: ''; position: absolute;
  left: 28px; bottom: -12px;
  width: 24px; height: 24px;
  background: var(--card);
  border-right: 1px solid rgba(212,175,55,.24);
  border-bottom: 1px solid rgba(212,175,55,.24);
  transform: rotate(45deg);
}
.bubble small {
  display: block; color: var(--gold);
  font-weight: 800; margin-top: 14px; letter-spacing: .5px;
  font-size: 11px; text-transform: uppercase;
}
.compact-bubbles { margin-top: 0; }

/* ── ATLAS VIDEO ─────────────────────────────────────────────── */
.atlas-block {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 56px); align-items: start;
  margin-top: 16px;
}
.atlas-video-wrap {
  border: 1px solid var(--border); border-radius: 28px;
  padding: 12px; background: linear-gradient(145deg, var(--card), #02040A);
  box-shadow: var(--shadow);
}
.atlas-video {
  width: 100%; aspect-ratio: 9/16; max-height: 480px;
  display: block; border-radius: 20px;
  background: #04040a; object-fit: cover;
}
.atlas-quote-block {
  display: flex; flex-direction: column; gap: 24px;
}
.atlas-quote {
  background: rgba(212,175,55,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 22px 24px;
}
.atlas-quote p {
  font-family: 'Sora', sans-serif;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600; line-height: 1.65;
  color: var(--white); margin: 0 0 12px;
  font-style: italic;
}
.atlas-author { color: var(--gold); font-size: 13px; font-weight: 700; }
.atlas-keypoints { display: flex; flex-direction: column; gap: 14px; }
.atlas-kp {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--muted); font-size: 15px; line-height: 1.6;
}
.kp-dot {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0; margin-top: 6px;
}

/* ── CARROSSEL DE DEPOIMENTOS ─────────────────────────────────── */
.carousel-outer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 8px;
}
.carousel-btn {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50%; color: var(--gold);
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.carousel-btn:hover { background: rgba(212,175,55,.14); transform: scale(1.08); }
.carousel-viewport {
  overflow: hidden; flex: 1;
}
.carousel-track {
  display: flex;
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
}
.tcard {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 22px; padding: 28px;
  flex-shrink: 0; display: flex; flex-direction: column;
  gap: 18px;
  box-sizing: border-box;
}
.tcard-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.tcard-text {
  font-size: 15px; line-height: 1.78;
  color: var(--muted); margin: 0; flex: 1;
  font-style: italic;
}
.tcard-author { display: flex; gap: 14px; align-items: center; }
.tcard-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: #000; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tcard-info { display: flex; flex-direction: column; }
.tcard-info strong { font-size: 15px; font-weight: 800; }
.tcard-info span { color: var(--soft); font-size: 13px; margin-top: 2px; }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 22px;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }
.testimonials-note {
  text-align: center; color: var(--soft);
  font-size: 12px; margin-top: 20px;
}

/* ── TRANSPARÊNCIA ───────────────────────────────────────────── */
/* (bubbles já definidos acima) */

/* ── FAQ ACORDEÃO ─────────────────────────────────────────────── */
.faq { max-width: 920px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq .section-title { text-align: center; margin-bottom: 28px; }
.faq-item {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: 16px; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px; text-align: left; gap: 16px;
  font-size: clamp(15px, 2.2vw, 18px); font-weight: 700;
  font-family: 'Sora', sans-serif;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; font-size: 22px; font-weight: 400;
  color: var(--gold); width: 28px; text-align: center;
  transition: transform .28s ease;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease;
}
.faq-answer p {
  padding: 0 22px 22px;
  color: var(--muted); font-size: 15px; line-height: 1.78; margin: 0;
}

/* ── CTA FINAL ────────────────────────────────────────────────── */
.cta-final {
  text-align: center;
  background: radial-gradient(circle at center, rgba(212,175,55,.13), transparent 36%), #000;
}
.cta-final-actions { gap: 16px; flex-wrap: wrap; }
.disclaimer {
  margin: 26px auto 0; color: var(--soft);
  font-size: 13px; line-height: 1.7; max-width: 820px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px; text-align: center;
}
.footer-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 18px; margin-bottom: 8px;
}
.footer-tagline { color: var(--muted); margin-bottom: 22px; font-size: 14px; }
.footer-social {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: opacity .2s;
}
.footer-social a:hover { opacity: .78; }
.footer-links {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 20px;
}
.footer-links a {
  color: var(--muted); font-weight: 700; text-decoration: none;
  font-size: 14px; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-disclaimer {
  color: var(--soft); font-size: 12px;
  line-height: 1.65; max-width: 700px; margin: 0 auto;
}

/* ── MÓDULOS (biblioteca) ─────────────────────────────────────── */
.modules-hero {
  padding: clamp(48px, 7vw, 86px) 0;
  background: radial-gradient(circle at 15% 12%, rgba(212,175,55,.13), transparent 28%),
    linear-gradient(135deg, #000, #0B0E1A);
}
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin: 32px 0;
}
.filter-btn {
  background: rgba(10,15,31,.95); border: 1px solid var(--border-soft);
  color: var(--muted); border-radius: 999px;
  padding: 10px 15px; font-weight: 700; cursor: pointer; transition: .2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); border-color: var(--gold); color: #000;
}
.year-block { margin-bottom: 54px; }
.year-head {
  display: flex; justify-content: space-between;
  gap: 16px; align-items: end;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px; margin-bottom: 22px;
}
.year-head h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin: 0; }
.year-head p { color: var(--soft); margin: 0; }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.module-card {
  background: linear-gradient(145deg, var(--card), #05070f);
  border: 1px solid var(--border-soft); border-radius: 22px;
  overflow: hidden; transition: .22s; display: flex; flex-direction: column;
}
.module-card:hover { transform: translateY(-3px); border-color: var(--border); box-shadow: var(--shadow); }
.module-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  background: #090b12; border-bottom: 1px solid var(--border-soft);
}
.module-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.module-kicker { font-size: 11px; font-weight: 800; letter-spacing: .8px; color: var(--gold); text-transform: uppercase; }
.module-title { font-size: 19px; font-weight: 800; margin: 0; }
.module-desc { color: var(--muted); font-size: 14px; line-height: 1.58; margin: 0; flex: 1; }
.module-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.small-btn {
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; border-radius: 10px;
  padding: 11px 12px; font-size: 12px; font-weight: 800;
  border: 1px solid var(--border); transition: .2s; min-height: 42px;
}
.small-btn.gold { background: var(--gold); color: #000; }
.small-btn.dark { background: transparent; color: var(--gold); }
.small-btn.disabled { opacity: .46; cursor: not-allowed; color: var(--soft); border-color: rgba(255,255,255,.08); }
.flash-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flash-card { background: var(--card); border: 1px solid var(--border-soft); border-radius: 20px; overflow: hidden; }
.flash-card img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.flash-card div { padding: 15px; }
.flash-card h3 { margin: 0 0 8px; font-size: 17px; }
.flash-card p { margin: 0; color: var(--soft); font-size: 14px; }

/* ── SUPERPREMIUM ─────────────────────────────────────────────── */
.super-hero { padding-top: 110px; }
.super-hero h1 { font-size: clamp(34px, 6vw, 68px); }
.three-offers { grid-template-columns: repeat(3, 1fr); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .book-feature-grid { grid-template-columns: 1fr; }
  .atlas-block { grid-template-columns: 1fr; }
  .atlas-video { max-height: 340px; aspect-ratio: 16/9; }
  .visual-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .nav-actions { display: none; }

  .two-grid, .offer-duo { grid-template-columns: 1fr; }
  .cards-grid, .module-grid, .flash-grid { grid-template-columns: 1fr; }
  .visual-showcase { grid-template-columns: 1fr; }
  .hero-actions, .cta-final-actions { flex-direction: column; }
  .btn, .pill { width: 100%; text-align: center; justify-content: center; }
  .mock-stack { grid-template-columns: 1fr; }
  h1 { letter-spacing: -1.2px; }
  .section-title { text-align: left; }
  .section-sub { text-align: left; }
  .eyebrow-center { text-align: left; }
  .stats-row { gap: 28px; }
  .stat-divider { display: none; }
  .how-steps { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); align-self: center; margin-top: 0; }
  .year-head { flex-direction: column; align-items: flex-start; }
  .module-actions { grid-template-columns: 1fr; }
  .book-feature-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .how-steps { gap: 12px; }
  .step-item { min-width: 0; max-width: 100%; }
}

/* ── LEGENDA DO VÍDEO ATLAS ───────────────────────────── */
::cue {
  background: rgba(0,0,0,0.82);
  color: #FFFFFF;
  font-size: clamp(14px, 2.2vw, 20px);
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.5;
  padding: 6px 12px;
  border-radius: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
  white-space: pre-wrap;
}
.atlas-video::cue {
  font-size: clamp(15px, 2.4vw, 22px);
}
/* Aumentar área visível de legenda no container */
.atlas-video-wrap {
  position: relative;
}
.atlas-video {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 520px;
}

/* ── PROGRAMA FUNDADOR ──────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0 30px;
}
.founder-card {
  background: linear-gradient(135deg, #0F0E08, #1a1700);
  border: 1px solid rgba(200,168,50,0.25);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all .3s ease;
}
.founder-card:hover {
  border-color: rgba(200,168,50,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,168,50,0.12);
}
.founder-num {
  display: inline-block;
  background: #C8A832;
  color: #08080A;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.founder-card h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
}
.founder-card p {
  color: #999;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.founder-cta {
  text-align: center;
  margin: 40px 0 16px;
}
.founder-note {
  color: #666;
  font-size: 13px;
  margin: 16px auto 0;
  max-width: 540px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .founder-grid { grid-template-columns: 1fr; gap: 14px; }
  .founder-card { padding: 22px 20px; }
}


/* ── YOUTUBE SHORTS EMBED ─────────────────────────── */
.yt-shorts-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(200,168,50,0.18);
}
.atlas-video-yt {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── YOUTUBE SHORTS EMBED ─────────────────────────────────────── */
.yt-shorts-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(200,168,50,0.18);
}
.atlas-video-yt {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── SUPERPREMIUM GRID ─────────────────────────────────────────── */
.sp-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.sp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(200,168,50,0.06);
  border-left: 2px solid #C8A832;
  border-radius: 0 8px 8px 0;
}
.sp-icon {
  color: #C8A832;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.sp-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-text strong {
  color: #F5EFE3;
  font-size: 15px;
  font-weight: 600;
}
.sp-text span {
  color: #9B8E7A;
  font-size: 13px;
  line-height: 1.5;
}
