/* =================================================================
   DO ZERO AO MANDATO — DESIGN SYSTEM (base)
   -----------------------------------------------------------------
   Este arquivo é a BASE compartilhada por todas as dobras.
   Os subagentes devem REUTILIZAR os tokens e as classes abaixo e
   só criar classes próprias com prefixo .dN- (ex.: .d6-grid).

   TOKENS DE COR: var(--paper) var(--ink) var(--navy) var(--card)
   var(--green) var(--amber) etc. (ver :root)

   CLASSES PRONTAS:
   .wrap                 -> container central (max 1180px)
   .section              -> espaçamento vertical de seção
   .section--paper       -> fundo claro  (texto escuro)
   .section--amber       -> fundo laranja (texto escuro)
   .section--navy        -> fundo azul-escuro (texto claro)
   .section--black       -> fundo quase preto (texto claro)
   .lead / .eyebrow      -> cabeçalho de seção centralizado
   .btn .btn--green .btn--dark .btn--lg .btn--block  -> botões
   .center-cta           -> wrapper p/ botão centralizado
   .card-dark            -> card escuro (ícone+título+texto) p/ qualquer fundo
   .card-dark__icon h3 p
   .ticks                -> lista com check verde
   .ph-portrait .ph-figure .ph-tag -> placeholders de foto
   Coloque .reveal nos blocos que devem animar ao rolar.
   Botões de compra usam a classe .js-checkout.
   ================================================================= */

:root {
  /* CLAROS */
  --paper:      #E9EEF5;
  --paper-2:    #E1E8F2;
  --ink:        #0B1F3A;
  --ink-soft:   #4A5E80;
  /* ESCUROS */
  --navy:       #0A1B33;
  --navy-deep:  #060F1F;
  --card:       #13243E;
  --card-2:     #182C49;
  --on-dark:    #FFFFFF;
  --on-dark-soft:#9DB0CE;
  /* MARCA */
  --green:      #1FD15F;
  --green-bright:#37E075;
  --green-ink:  #052A16;
  --amber:      #EE9A3A;
  --amber-ink:  #3A2300;
  /* LINHAS */
  --line-dark:  rgba(150,178,216,0.14);
  --line-light: rgba(11,31,58,0.10);

  --display: 'Sora', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --wrap: 1180px;
  --r: 18px;
  --r-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 24px; }

body {
  margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--on-dark-soft); background: var(--navy-deep);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); margin: 0; font-weight: 800; color: var(--on-dark); }
h1 { font-size: clamp(2.4rem, 1.2rem + 3.8vw, 3.7rem); line-height: 1.05; letter-spacing: -0.022em; }
h2 { font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.7rem); line-height: 1.1; letter-spacing: -0.018em; font-weight: 700; }
h3 { font-size: 1.18rem; line-height: 1.3; letter-spacing: -0.01em; font-weight: 700; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.section { padding-block: clamp(64px, 8vw, 112px); }

/* Variantes de fundo das seções */
.section--paper { background: var(--paper); color: var(--ink-soft); }
.section--paper h2, .section--paper h3 { color: var(--ink); }
.section--paper .eyebrow { color: #1A9A4B; }
.section--amber { background: linear-gradient(135deg, #F0A646, #E68A2E); color: var(--amber-ink); }
.section--amber h2, .section--amber h3 { color: var(--amber-ink); }
.section--amber .eyebrow { color: #7a4a00; }
.section--navy { background: var(--navy); color: var(--on-dark-soft); }
.section--navy h2, .section--navy h3 { color: var(--on-dark); }
.section--black { background: var(--navy-deep); color: var(--on-dark-soft); }
.section--black h2, .section--black h3 { color: var(--on-dark); }

.ic { width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex: none; }

/* Cabeçalho de seção centralizado */
.eyebrow { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.lead { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.lead h2 { margin-bottom: 14px; }
.lead p { font-size: 1.08rem; }
.center-cta { text-align: center; margin-top: clamp(36px, 4vw, 48px); }

/* Botões */
.btn { display: inline-flex; align-items: center; gap: 0.55em; font-family: var(--display); font-weight: 700; font-size: 0.98rem; line-height: 1; padding: 15px 26px; border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn .ic { width: 1.05em; height: 1.05em; }
.btn--green { background: var(--green); color: var(--green-ink); box-shadow: 0 8px 22px rgba(31,209,95,0.28); }
.btn--green:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(31,209,95,0.4); }
.btn--dark { background: var(--navy-deep); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.35); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* Card escuro reutilizável (funciona sobre fundo claro, escuro ou âmbar) */
.card-dark { background: var(--card); border: 1px solid var(--line-dark); border-radius: var(--r); padding: 30px 28px; color: var(--on-dark-soft); transition: transform .2s ease, border-color .2s ease; }
.card-dark:hover { transform: translateY(-4px); border-color: rgba(31,209,95,0.35); }
.card-dark__icon { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--line-dark); color: var(--green); margin-bottom: 18px; }
.card-dark__icon .ic { width: 24px; height: 24px; }
.card-dark h3 { color: var(--on-dark); margin-bottom: 8px; }
.card-dark p { margin: 0; }

/* Lista com check */
.ticks { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: flex-start; gap: 10px; }
.ticks .ic { color: var(--green); width: 20px; height: 20px; margin-top: 3px; }

/* Placeholders de foto */
.ph-portrait { position: relative; border-radius: var(--r); overflow: hidden; display: grid; place-items: center; border: 1px solid var(--line-dark); background: radial-gradient(80% 70% at 50% 26%, rgba(31,209,95,0.16), transparent 60%), linear-gradient(160deg, #15335c, #0a1f3d); }
.ph-figure { width: 40%; height: 40%; color: rgba(255,255,255,0.2); }
.ph-tag { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); font-size: 0.78rem; color: var(--on-dark-soft); white-space: nowrap; background: rgba(6,15,31,0.7); border: 1px solid var(--line-dark); padding: 5px 13px; border-radius: 99px; }

/* =================================================================
   MARCA (logo — usada no rodapé; sem barra/header superior)
   ================================================================= */
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(31,209,95,0.12); border: 1px solid rgba(31,209,95,0.3); color: var(--green); }
.brand__mark .ic { width: 20px; height: 20px; }
.brand__text { font-family: var(--display); font-weight: 600; color: #fff; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand__text strong { color: var(--green); font-weight: 700; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--navy-deep); border-top: 1px solid var(--line-dark); padding: 54px 0 26px; color: var(--on-dark-soft); }
.footer__top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer__brand p { color: var(--on-dark-soft); margin-top: 12px; max-width: 26em; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a:hover { color: var(--green); }
.footer__legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.footer__legal p { color: #5d729a; font-size: 0.82rem; margin-bottom: 6px; }

/* =================================================================
   CTA FIXO MOBILE + WHATSAPP
   ================================================================= */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; padding: 10px 14px; background: rgba(6,15,31,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line-dark); }
.wpp { position: fixed; right: 18px; bottom: 18px; z-index: 55; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,0.3); transition: transform .15s ease; }
.wpp .ic { width: 30px; height: 30px; }
.wpp:hover { transform: scale(1.08); }

/* =================================================================
   ANIMAÇÃO REVELAR
   ================================================================= */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* =================================================================
   RESPONSIVO (base) — grids específicos ficam em cada dobra
   ================================================================= */
@media (max-width: 680px) {
  .mobile-bar { display: block; }
  .wpp { bottom: 84px; }
  body { padding-bottom: 78px; }
  .footer__top { flex-direction: column; gap: 24px; }
}
/* =================================================================
   DOBRA 01 — HERO (fundo escuro)
   Conteúdo à esquerda, foto à direita integrada ao fundo (sem moldura),
   esteira de temas no rodapé. Reutiliza tokens/classes de base.css.
   Classes próprias com prefixo .d1-
   ================================================================= */

.d1 {
  position: relative;
  overflow: hidden;
  /* header foi removido: hero começa no topo absoluto, garante respiro em cima */
  padding-block: clamp(48px, 6vw, 88px) 0;
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  flex-direction: column;
}

/* Brilho de fundo sutil atrás de todo o hero */
.d1-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 82% 30%, rgba(31,209,95,0.10), transparent 60%),
    radial-gradient(70% 90% at 8% 0%, rgba(31,209,95,0.06), transparent 55%);
}

/* -----------------------------------------------------------------
   FOTO À DIREITA — PNG transparente (polaroides com moldura/sombra
   próprias). Imagem LIMPA, sem máscara/caixa/gradiente por cima.
   Só um brilho verde MUITO suave ATRÁS, para integrar ao fundo escuro.
   ----------------------------------------------------------------- */
.d1-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Brilho radial verde suave ATRÁS da imagem (nunca por cima) */
.d1-photo__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(46% 42% at 58% 42%, rgba(55,224,117,0.20), transparent 70%);
}

/* Imagem real: contain, preserva proporção, sangra um pouco p/ ganhar presença */
.d1-photo__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center 46%;
  /* leve transbordo p/ direita/baixo, dando mais presença às pessoas */
  transform: translate(2.5%, 2%) scale(1.06);
  transform-origin: center;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.40));
}

/* -----------------------------------------------------------------
   CONTEÚDO À ESQUERDA
   ----------------------------------------------------------------- */
.d1-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.d1-content { max-width: 600px; }

.d1-title { margin-bottom: 22px; }
.d1-hl { color: var(--green); }

.d1-lead {
  font-size: 1.12rem;
  color: var(--on-dark-soft);
  max-width: 52ch;
  margin-bottom: clamp(26px, 3vw, 34px);
}

.d1-cta { display: flex; }

/* -----------------------------------------------------------------
   ESTEIRA DE TEMAS (rodapé da dobra)
   ----------------------------------------------------------------- */
.d1-strip {
  position: relative;
  z-index: 2;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line-dark);
  background: rgba(6,15,31,0.35);
}

.d1-strip__list {
  list-style: none;
  margin: 0 auto;
  padding: 18px 22px;
  width: 100%;
  max-width: var(--wrap);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
}

.d1-strip__item {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  white-space: nowrap;
}

/* Divisores entre os temas */
.d1-strip__item + .d1-strip__item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: var(--line-dark);
}

.d1-strip__item.is-hl { color: var(--green); }

/* -----------------------------------------------------------------
   MOBILE (≤900px): foto vira banner no topo, conteúdo abaixo,
   esteira rola horizontalmente.
   ----------------------------------------------------------------- */
@media (max-width: 900px) {
  .d1 {
    /* mantém um respiro no topo mesmo empilhado (header removido) */
    padding-top: clamp(24px, 5vw, 40px);
    min-height: 0;
    display: block;
  }

  .d1-photo {
    position: relative;
    width: 100%;
    height: auto;
  }
  .d1-photo__glow {
    background: radial-gradient(60% 70% at 50% 50%, rgba(55,224,117,0.18), transparent 72%);
  }
  .d1-photo__img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .d1-wrap {
    display: block;
    padding-top: clamp(28px, 6vw, 40px);
    padding-bottom: clamp(28px, 6vw, 40px);
  }
  .d1-content { max-width: 100%; }
  .d1-cta .btn { width: 100%; justify-content: center; }

  .d1-strip { margin-top: 0; }
  .d1-strip__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .d1-strip__list::-webkit-scrollbar { display: none; }
}
/* =================================================================
   DOBRA 02 — O PROBLEMA
   Fundo claro (.section--paper) + 3 cards escuros (.card-dark).
   Reutiliza tokens e classes de base.css. Classes próprias: .d2-
   ================================================================= */

.d2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
}

@media (max-width: 680px) {
  .d2-grid {
    grid-template-columns: 1fr;
  }
}
/* =================================================================
   DOBRA 03 — APRESENTAÇÃO DO MÉTODO (fundo claro)
   Layout: 2 colunas (janela de navegador c/ screenshot | texto).
   Mobile (≤900px): janela em cima, texto embaixo.
   Classes próprias com prefixo .d3- . Cores só via var(--...).
   ================================================================= */

.d3-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

/* ---- Coluna do texto ---- */
.d3-content h2 { margin-bottom: 18px; }
.d3-content p { font-size: 1.08rem; max-width: 34em; }

/* ---- Coluna da mídia / janela de navegador ---- */
.d3-media {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Moldura "browser window" com o screenshot real da plataforma */
.d3-window {
  width: 100%;
  max-width: 600px;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  box-shadow:
    0 1px 2px rgba(11,31,58,0.06),
    0 28px 60px rgba(11,31,58,0.16);
}

/* Barra superior escura e fina com os 3 traffic lights */
.d3-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--line-dark);
}
.d3-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--on-dark-soft);
}
.d3-dot:nth-child(1) { background: #ED6A5E; }
.d3-dot:nth-child(2) { background: #F4BE4F; }
.d3-dot:nth-child(3) { background: #61C554; }

/* Screenshot: ocupa todo o card, sem esticar (proporção 1223×697) */
.d3-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1223 / 697;
}

/* ---- Mobile: janela em cima, texto embaixo ---- */
@media (max-width: 900px) {
  .d3-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 7vw, 48px);
  }
  .d3-media { order: -1; }
  .d3-window { max-width: 520px; }
  .d3-content p { max-width: none; }
}
/* =================================================================
   DOBRA 04 — AS TRÊS FRENTES DO MÉTODO
   Fundo âmbar (.section--amber) | cards escuros | botão verde
   Classes próprias com prefixo .d4-  |  cores só via var(--...)
   ================================================================= */

.d4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 26px);
}

@media (max-width: 680px) {
  .d4-grid {
    grid-template-columns: 1fr;
  }
}
/* =================================================================
   DOBRA 05 — AUTORIDADE / MENTORES
   Fundo claro (.section--paper) | texto escuro (--ink / --ink-soft)
   2 mentores empilhados em cards HORIZONTAIS: foto + lista de credenciais.
   Classes próprias com prefixo .d5-  |  cores só via var(--...)
   ================================================================= */

.d5-list {
  display: grid;
  gap: clamp(20px, 2.6vw, 30px);
  max-width: 920px;
  margin: 0 auto;
}

/* Cada mentor: cartão horizontal claro */
.d5-mentor {
  display: grid;
  grid-template-columns: clamp(260px, 28vw, 320px) 1fr;
  gap: clamp(26px, 3.4vw, 44px);
  align-items: center;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: var(--r);
  transition: transform .2s ease, box-shadow .2s ease;
}

.d5-mentor:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(11, 31, 58, 0.10);
}

/* Foto em proporção retrato ~4/5, cantos arredondados, sem distorcer */
.d5-photo-wrap {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--line-light);
}

.d5-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}

/* Bio: nome + credenciais */
.d5-bio { min-width: 0; }

.d5-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.15rem + 1.3vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: clamp(14px, 1.6vw, 20px);
}

/* Lista de credenciais — traço laranja desenhado via ::before */
.d5-creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.d5-creds li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.d5-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber);
}

/* Fatos/números fortes em destaque */
.d5-creds b {
  color: var(--ink);
  font-weight: 700;
}

.d5-creds i {
  font-style: italic;
  color: var(--ink);
}

/* Mobile: empilha (foto em cima, bio embaixo) */
@media (max-width: 680px) {
  .d5-mentor {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .d5-photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .d5-photo {
    aspect-ratio: 4 / 5;
    object-position: 50% 18%;
  }
  .d5-name { text-align: center; }
}
/* =================================================================
   DOBRA 06 — OS PILARES
   Fundo claro (.section--paper), 4 cards escuros em 2x2 ao redor
   de um núcleo decorativo (arco âmbar + seta), esteira de temas.
   Classes próprias com prefixo .d6-  | Cores via var(--...).
   ================================================================= */

.d6 { overflow: hidden; }

/* ---- Grid 2x2 com núcleo central ---- */
.d6-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 4vw, 64px);
  max-width: 960px;
  margin: 0 auto;
}

.d6-card {
  position: relative;
  z-index: 2;
}

/* ---- Núcleo decorativo central ---- */
.d6-core {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

/* arco/círculo com borda âmbar */
.d6-core__arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--amber);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(238,154,58,0.18), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0 60%, transparent 92%);
          mask-image: linear-gradient(180deg, #000 0 60%, transparent 92%);
  box-shadow: 0 0 40px rgba(238,154,58,0.22);
}

/* seta para baixo (chevron) em âmbar */
.d6-core__arrow {
  position: relative;
  width: clamp(40px, 5vw, 56px);
  height: clamp(40px, 5vw, 56px);
  color: var(--amber);
  transform: rotate(90deg);
  filter: drop-shadow(0 6px 14px rgba(238,154,58,0.35));
}

/* ---- Esteira de temas no rodapé ---- */
.d6-belt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.74rem, 0.6rem + 0.5vw, 0.92rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.d6-belt__item { color: var(--ink-soft); }
.d6-belt__item--on { color: var(--green); }
.d6-belt__sep { color: var(--line-light); }

/* ---- Responsivo ---- */
@media (max-width: 760px) {
  .d6-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .d6-core { display: none; }
}
/* DOBRA 06b — O que tem dentro do curso (fundo claro) */
.d6b-head { margin-bottom: clamp(30px, 4vw, 46px); }
.d6b-kicker { display: block; width: 46px; height: 5px; border-radius: 3px; background: var(--ink); margin-bottom: 18px; }
.d6b-sub { font-size: 1.05rem; color: var(--ink-soft); margin-top: 8px; }
.d6b-sub strong { color: #1A9A4B; }
.d6b-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 30px; }
.d6b-item { display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 500; }
.d6b-check { width: 26px; height: 26px; border-radius: 7px; background: var(--green); color: #fff; display: grid; place-items: center; flex: none; }
.d6b-check .ic { width: 16px; height: 16px; }
@media (max-width: 780px) { .d6b-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .d6b-grid { grid-template-columns: 1fr; } }
/* =================================================================
   DOBRA 07 — O QUE VAI ALÉM (BÔNUS)
   Fundo escuro (.section--navy) + 3 cards escuros em uma linha.
   Depende de base.css (tokens var(--...) e classes prontas).
   ================================================================= */

/* Seta chevron sob o cabeçalho central */
.d7 .d7-chevron {
  width: 30px;
  height: 30px;
  margin-top: clamp(20px, 3vw, 30px);
  color: var(--green);
}

/* Grid de 3 cards numa linha (desktop) */
.d7 .d7-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 26px);
}

/* Card sem parágrafo: título alinhado abaixo do ícone */
.d7 .card-dark {
  display: flex;
  flex-direction: column;
}

.d7 .card-dark h3 {
  margin-bottom: 0;
}

/* 1 coluna no mobile */
@media (max-width: 680px) {
  .d7 .d7-grid {
    grid-template-columns: 1fr;
  }
}
/* =================================================================
   DOBRA 08 — INVESTIMENTO / PREÇO
   Fundo claro (.section--paper) + card de preço escuro -> azul.
   Classes próprias com prefixo .d8-
   ================================================================= */

/* Card central de preço */
.d8 .d8-card {
  max-width: 520px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 44px) clamp(26px, 3.5vw, 40px) clamp(26px, 3vw, 34px);
  border-radius: var(--r);
  text-align: center;
  color: var(--on-dark);
  /* gradiente: navy profundo no topo -> azul vivo no rodapé */
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(255,255,255,0.05), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 38%, #1538a8 100%);
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 70px rgba(6,15,31,0.35);
}

/* Selo / logo no topo */
.d8 .d8-card__logo {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--on-dark);
}
.d8 .d8-card__logo .ic { width: 28px; height: 28px; }

.d8 .d8-card__title {
  color: var(--on-dark);
  font-size: clamp(1.5rem, 1rem + 1.6vw, 1.95rem);
  margin-bottom: 6px;
}
.d8 .d8-card__sub {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

/* Lista de checks dentro do card escuro (texto claro) */
.d8 .d8-card .ticks {
  margin: 0 0 26px;
  padding: 18px 20px;
  text-align: left;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
}
.d8 .d8-card .ticks li { color: var(--on-dark); font-weight: 500; }
.d8 .d8-card .ticks .ic { color: var(--green-bright); }

/* Bloco de preço */
.d8 .d8-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.d8 .d8-price__pre {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  text-align: left;
}
.d8 .d8-price__big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.4rem + 3vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.d8 .d8-price__per {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  align-self: flex-end;
  padding-bottom: 4px;
}
.d8 .d8-price__cash {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  margin: 8px 0 24px;
}

.d8 .d8-card__cta { margin-bottom: 18px; }

/* Rodapé pequeno */
.d8 .d8-card__safe {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.62);
}
.d8 .d8-card__safe .ic { width: 15px; height: 15px; }

@media (max-width: 480px) {
  .d8 .d8-price { gap: 7px; }
}
/* =================================================================
   DOBRA 09 — GARANTIA (fundo claro)
   Selo "7 dias" ondulado em âmbar + título e parágrafo centralizados.
   Classes próprias com prefixo .d9- ; cores só via var(--...).
   ================================================================= */

.d9-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Selo ondulado ---- */
.d9-seal {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(26px, 3vw, 36px);
  filter: drop-shadow(0 18px 32px rgba(58, 35, 0, 0.28));
}

/* anel ondulado externo (gradiente âmbar) */
.d9-seal__blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--amber), var(--amber-ink) 78%);
  border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%;
  animation: d9-morph 9s ease-in-out infinite;
}

/* núcleo escuro com leve brilho dourado */
.d9-seal__core {
  position: relative;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%;
  display: grid;
  place-items: center;
  line-height: 1;
  color: var(--amber);
  background:
    radial-gradient(70% 70% at 50% 32%, rgba(238, 154, 58, 0.22), transparent 70%),
    linear-gradient(160deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(238, 154, 58, 0.35);
  animation: d9-morph 9s ease-in-out infinite reverse;
}

.d9-seal__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--on-dark);
  letter-spacing: -0.02em;
}

.d9-seal__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 2px;
}

/* escudo discreto, ancorado ao selo */
.d9-seal__shield {
  position: absolute;
  z-index: 2;
  bottom: 4px;
  right: 6px;
  width: 30px;
  height: 30px;
  color: var(--amber-ink);
  background: var(--amber);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 6px 14px rgba(58, 35, 0, 0.35);
}

@keyframes d9-morph {
  0%, 100% { border-radius: 42% 58% 56% 44% / 50% 44% 56% 50%; }
  50%      { border-radius: 54% 46% 44% 56% / 46% 56% 44% 54%; }
}

/* ---- Texto ---- */
.d9-title {
  margin-bottom: 16px;
}

.d9-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.08rem;
}

@media (prefers-reduced-motion: reduce) {
  .d9-seal__blob,
  .d9-seal__core { animation: none; }
}

@media (max-width: 680px) {
  .d9-seal { width: 132px; height: 132px; }
  .d9-seal__core { width: 104px; height: 104px; }
  .d9-seal__num { font-size: 3rem; }
}
/* =================================================================
   DOBRA 10 — FAQ (fundo preto)
   2 colunas: cabeçalho (esquerda) | lista de accordion (direita)
   Acordeão via <details class="faq__item"> + script externo.
   ================================================================= */

.d10-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

/* Cabeçalho à esquerda (alinhado ao topo, à esquerda) */
.d10-head {
  text-align: left;
}
.d10-head .eyebrow {
  margin-bottom: 16px;
}
.d10-head h2 {
  letter-spacing: 0.06em;
}

/* Coluna do cabeçalho fica "fixa" no topo no desktop */
@media (min-width: 901px) {
  .d10-head { position: sticky; top: 96px; }
}

/* ---------------------------------------------------------------
   Lista de acordeão
   --------------------------------------------------------------- */
.d10-list {
  display: grid;
  gap: 14px;
}

/* Item */
.faq__item {
  background: var(--card);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, background .2s ease;
}
.faq__item:hover {
  border-color: rgba(31,209,95,0.32);
}
.faq__item[open] {
  border-color: rgba(31,209,95,0.28);
}

/* Pergunta (summary) */
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--on-dark);
  letter-spacing: -0.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }

/* Ícone +/− à direita */
.d10-ico {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.05);
  color: var(--on-dark-soft);
  transition: transform .25s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.d10-ico .ic {
  width: 16px;
  height: 16px;
}
.faq__item:hover .d10-ico {
  color: var(--green);
}

/* Estado aberto: gira o "+" para virar "×" e destaca em verde */
.faq__item[open] .d10-ico {
  transform: rotate(45deg);
  color: var(--green);
  background: rgba(31,209,95,0.12);
  border-color: rgba(31,209,95,0.4);
}

/* Resposta */
.faq__a {
  padding: 0 22px 22px;
  color: var(--on-dark-soft);
}
.faq__a p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------------------------------------------------------------
   Mobile (≤900px): 1 coluna, cabeçalho em cima
   --------------------------------------------------------------- */
@media (max-width: 900px) {
  .d10-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 40px);
  }
  .d10-head { text-align: left; }
  .faq__item summary { padding: 18px 18px; font-size: 0.98rem; }
  .faq__a { padding: 0 18px 18px; }
}
