/* ==========================================================================
   TALK FAMÍLIA: styles.css
   Mobile-first. Breakpoints: 360 (base) / 768 / 1024 / 1440.
   Sistema: paleta clara e quente do próprio jogo (papel/tabuleiro sobre a
   mesa), tipografia grande com tracking negativo, fotografia real como
   herói, trilha de tabuleiro como espinha estrutural da página.
   ========================================================================== */

:root {
  --bg: #FBF6EC;          /* papel/mesa, base clara e quente */
  --bg-raised: #F1E4C8;   /* tom de placa de madeira, painéis alternados */
  --bg-raised-2: #E8D6AC; /* um tom mais fundo, pra dar profundidade dentro de um painel já elevado */
  --ink: #2B1710;         /* tinta rocha, texto principal */
  --muted: #6B5B48;       /* texto secundário */
  --line: rgba(43, 23, 16, 0.14);
  --action: #D6291D;      /* vermelho do logo, calibrado pro contraste em claro */
  --action-bright: #EF2A1E; /* vermelho vivo do logo, glow/decoração */
  --action-dark: #B31C13;
  --sky: #1AA0CE;         /* céu do tabuleiro */
  --sky-deep: #0E7A99;
  --terracota: #B0492F;
  --verde: #2F7A38;
  --gold: #B8790A;        /* dourado calibrado pro contraste em claro */
  --gold-bright: #F2B84B; /* dourado vivo, preenchimento decorativo */

  --font-display: 'Baloo 2', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;

  --container: 1240px;
  --gutter: 20px;
  --radius: 18px;

  color-scheme: light;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul[class], ol[class] { list-style: none; padding: 0; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

/* ---------- focus visibility ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 18px;
  z-index: 100;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ==========================================================================
   TIPOGRAFIA DE DESTAQUE: a assinatura agora é escala + tracking, não caixa
   ========================================================================== */
.display-huge {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: clamp(2rem, 6.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

/* balão: assinatura reservada só pro hero (raro = memorável) */
.balao {
  --fill: var(--ink);
  position: relative;
  display: inline-block;
  background: var(--fill);
  color: var(--bg);
  border-radius: 20px;
  padding: 0.85em 1.05em;
}
.balao::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 34px;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 20px solid transparent;
  border-top: 18px solid var(--fill);
}
.balao-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--bg);
  font-size: clamp(1.7rem, 6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

/* ==========================================================================
   BOTÕES / CTA
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 1em 2em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--action);
  color: var(--bg);
  box-shadow: 0 8px 30px -6px rgba(239, 42, 30, 0.55);
}
.btn--primary:hover { background: var(--action-dark); transform: translateY(-2px); box-shadow: 0 14px 36px -8px rgba(239, 42, 30, 0.65); }
.btn--block { width: 100%; }

.btn-wrap { display: flex; justify-content: center; margin-top: 2rem; }

/* ==========================================================================
   TRILHA DO TABULEIRO: presente em todas as telas, mais rica em telas largas
   ========================================================================== */
.board-path-layer {
  display: block;
  position: absolute;
  top: 0;
  left: 2px;
  width: 34px;
  pointer-events: none;
  z-index: 2;
}
.board-path-svg { position: absolute; top: 0; left: 0; overflow: visible; }
#board-path-line {
  fill: none;
  stroke: #2B1710;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 1 18;
  opacity: 0.4;
}
.board-piece {
  position: absolute;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #FF6B5E, var(--action) 72%);
  box-shadow: 0 4px 10px rgba(43,23,16,0.35), inset 0 -3px 5px rgba(43,23,16,0.3);
  border: 2px solid var(--ink);
  transition: transform 0.05s linear;
}
@media (min-width: 640px) {
  .board-path-layer { left: 8px; width: 46px; }
  .board-piece { width: 24px; height: 24px; }
  #board-path-line { stroke-width: 5; }
}
@media (min-width: 1360px) {
  .board-path-layer { left: max(6px, calc(50vw - 691px)); width: 56px; }
}

/* balões decorativos no hero */
.hero-balloon {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-balloon img { width: 100%; height: auto; display: block; }
.hero-balloon--1 { top: -6px; right: 2%; width: 52px; animation: float 9s ease-in-out infinite; }
.hero-balloon--2 { top: 60%; right: 14%; width: 40px; animation: float 7s ease-in-out infinite 1.2s; display: none; }
@media (min-width: 640px) {
  .hero-balloon--1 { top: 6%; right: 4%; width: 90px; }
  .hero-balloon--2 { display: block; width: 56px; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-balloon { animation: none !important; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: transparent;
}
.site-header__logo img { height: 34px; width: auto; }
.selo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(43, 23, 16, 0.18);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   HERO: céu do tabuleiro
   ========================================================================== */
.hero {
  padding: 94px var(--gutter) 72px;
  overflow: hidden;
  position: relative;
  background: url("assets/elementos-3d/ceu.svg") center top / cover no-repeat, var(--sky);
}
.hero::after {
  /* washes out the clouds with a light veil so the dark headline text stays the focal point */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 246, 236, 0.82) 0%, rgba(251, 246, 236, 0.6) 30%, rgba(251, 246, 236, 0.22) 55%, rgba(251, 246, 236, 0) 75%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }
.hero__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__copy { max-width: 680px; }
.hero__copy .display-huge { margin-top: 0.3em; }
.hero__sub {
  color: rgba(43, 23, 16, 0.85);
  font-size: 1.15rem;
  max-width: 36ch;
  margin-top: 1.2rem;
}
.hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-raised);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__yt {
  position: absolute;
  inset: 0;
  display: none;
}
.hero__yt iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero__yt::after {
  /* covers the small YouTube watermark that shows in the player controls bar */
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 104px;
  height: 36px;
  background: linear-gradient(to left, rgba(10, 10, 12, 0.94), rgba(10, 10, 12, 0.94) 75%, rgba(10, 10, 12, 0) 100%);
  pointer-events: none;
}
.hero__media.is-playing .hero__yt { display: block; }
.hero__media.is-playing img,
.hero__media.is-playing .hero__play { display: none; }
.hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 13, 16, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}
.hero__play-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--action);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(239, 42, 30, 0.6);
  transition: transform 0.2s ease;
}
.hero__play:hover .hero__play-icon { transform: scale(1.08); }
.hero__play-icon svg { width: 26px; height: 26px; fill: var(--ink); margin-left: 3px; }
.hero__play[data-playing="true"] { display: none; }

/* ==========================================================================
   SEÇÕES: um único fundo dominante, painéis sutis pra separar
   ========================================================================== */
.section { padding: 96px var(--gutter); }
.section--raised { background: var(--bg-raised); }
.section-head { max-width: 760px; margin-bottom: 3rem; }
.step-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.1em;
}
.step-marker__island { width: 52px; height: auto; flex-shrink: 0; }
.step-marker__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 1rem; }

/* ==========================================================================
   REVEAL (scroll)
   ========================================================================== */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   AGITAÇÃO: lista numerada, sem caixa
   ========================================================================== */
.cenas { display: grid; gap: 0; margin-top: 1rem; }
.cena {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.cena:first-child { border-top: 1px solid var(--line); }
.cena__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  white-space: nowrap;
}
.cena p { font-size: 1.2rem; color: var(--ink); }
.ponte {
  margin-top: 3rem;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  max-width: 26ch;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   CATEGORIA NOVA
   ========================================================================== */
.categoria { text-align: center; }
.categoria .display-lg { max-width: 15ch; margin-inline: auto; }
.categoria p { color: var(--muted); font-size: 1.15rem; margin-top: 1.6rem; max-width: 40ch; margin-inline: auto; }

/* ==========================================================================
   COMO FUNCIONA
   ========================================================================== */
.mecanismo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1rem;
}
.peca {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.peca:first-child { border-top: 1px solid var(--line); }
.peca__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  grid-row: 1 / 3;
}
.peca h3 { grid-column: 2; font-size: 1.2rem; margin-bottom: 0.35em; letter-spacing: -0.01em; }
.peca p { grid-column: 2; font-size: 1rem; color: var(--muted); }

.vence-frase {
  margin-top: 3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* ==========================================================================
   O QUE VEM NA CAIXA
   ========================================================================== */
.caixa-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.caixa-lista { display: grid; grid-template-columns: 1fr; width: 100%; }
.caixa-lista li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.caixa-lista li:first-child { border-top: 1px solid var(--line); }
.caixa-lista li strong {
  font-family: var(--font-display);
  color: var(--gold);
  min-width: 1.8em;
  font-size: 1.1rem;
}
.caixa-qr-note {
  margin-top: 1.4rem;
  font-style: italic;
  color: var(--muted);
  max-width: 40ch;
}

/* ==========================================================================
   PARA QUEM É / NÃO É
   ========================================================================== */
.qualifica-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}
.qualifica-card { padding: 32px 0; border-bottom: 1px solid var(--line); }
.qualifica-card h3 {
  margin-bottom: 1.1em;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.qualifica-card--sim h3 { color: var(--verde); }
.qualifica-card--nao h3 { color: var(--muted); }
.qualifica-card ul { display: grid; gap: 0.9em; }
.qualifica-card li { padding-left: 1.7em; position: relative; font-size: 1.05rem; }
.qualifica-card--sim li::before { content: "✓"; position: absolute; left: 0; color: var(--verde); font-weight: 800; }
.qualifica-card--nao li::before { content: "–"; position: absolute; left: 0; color: var(--muted); font-weight: 800; }
.qualifica-rodape {
  margin-top: 2rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 46ch;
}

/* ==========================================================================
   O QUE ACONTECE NA MESA
   ========================================================================== */
.mesa-layout { display: flex; flex-direction: column; gap: 36px; }
.mesa-bullets { display: grid; gap: 20px; }
.mesa-bullets li {
  padding-left: 1.9em;
  position: relative;
  font-size: 1.15rem;
}
.mesa-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 10px; height: 10px;
  background: var(--action);
  border-radius: 50%;
}
.mesa-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7); }
.photo-frame { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7); }
.section--terracota {
  background: var(--terracota);
  color: var(--bg);
  --ink: var(--bg);
  --muted: rgba(255, 255, 255, 0.9);
  --line: rgba(255, 255, 255, 0.28);
  --bg-raised: rgba(255, 255, 255, 0.14);
  --gold: var(--gold-bright);
}
.section--terracota .btn--primary { background: var(--gold-bright); color: #2B1710; box-shadow: 0 8px 30px -6px rgba(0,0,0,0.35); }
.section--terracota .btn--primary:hover { background: #FFCE73; }

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.depoimentos-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.depoimento-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  max-width: 320px;
}
.depoimento-balao {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
}
.depoimento-video-wrap { position: relative; aspect-ratio: 1/1; background: var(--bg-raised-2); }
.depoimento-video-wrap video, .depoimento-video-wrap img { width: 100%; height: 100%; object-fit: cover; }
.depoimento-video-wrap video { display: none; }
.depoimento-video-wrap.is-playing video { display: block; }
.depoimento-video-wrap.is-playing img,
.depoimento-video-wrap.is-playing .depoimento-play { display: none; }
.depoimento-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,13,16,0.2);
  border: none; cursor: pointer; padding: 0;
}
.depoimento-play[data-playing="true"] { display: none; }
.depoimento-play-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--action);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(239,42,30,0.6);
}
.depoimento-play-icon svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 2px; }
.depoimento-nome {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 16px 4px 4px;
  font-size: 1.05rem;
}
.prova-intro { max-width: 46ch; margin: 0 0 2rem; font-size: 1.15rem; color: var(--muted); }

/* ==========================================================================
   OS 4 BÔNUS
   ========================================================================== */
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1rem;
}
.bonus-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.bonus-card:first-child { border-top: 1px solid var(--line); }
.bonus-card img { border-radius: 8px; }
.bonus-card h3 { font-size: 1.1rem; margin-bottom: 0.35em; letter-spacing: -0.01em; }
.bonus-card p { font-size: 0.98rem; color: var(--muted); }
.bonus-nota { margin-top: 2rem; color: var(--muted); font-size: 1.05rem; }

/* ==========================================================================
   OFERTA
   ========================================================================== */
.oferta-layout { display: flex; flex-direction: column; gap: 40px; }
.oferta-img,
.caixa-media {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.oferta-img img,
.caixa-media img {
  filter: drop-shadow(0 24px 30px rgba(43, 23, 16, 0.35));
}

.stack-table {
  width: 100%;
  border-collapse: collapse;
}
.stack-table td { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.stack-table tr:first-child td { padding-top: 0; }
.stack-table tr:last-child td { border-bottom: none; }
.stack-table td:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.stack-table .row-total td { font-weight: 700; color: var(--muted); }
.stack-table .row-total .old-price { text-decoration: line-through; }
.stack-table .row-hoje td {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-bright);
  border-bottom: none;
  padding-top: 20px;
}

.kit-card {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.94);
  color: #2B1710;
  --ink: #2B1710;
  --muted: #6B5B48;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.kit-selo {
  position: absolute;
  top: -14px; right: 20px;
  background: var(--gold-bright);
  color: #2B1710;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
}
.kit-card h3 { font-size: 1.3rem; margin-bottom: 0.5em; letter-spacing: -0.01em; }
.kit-card p { color: var(--muted); }
.kit-preco { font-family: var(--font-display); font-size: 1.8rem; color: var(--ink); margin: 0.5em 0 0; }
.kit-preco small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 400; color: var(--muted); }

/* ==========================================================================
   GARANTIA
   ========================================================================== */
.garantia-box {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.garantia-selo {
  width: 154px; height: 154px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--action);
}
.garantia-selo span:first-child { font-size: 4.9rem; line-height: 1; }
.garantia-selo span:last-child { font-size: 0.7rem; color: var(--muted); }
.garantia-box p { font-size: 1.15rem; color: var(--muted); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 0; margin-top: 1rem; max-width: 780px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.faq-icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(45deg); color: var(--action); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item[data-open="true"] .faq-a { max-height: 240px; }
.faq-a p { padding: 0 0 22px; font-size: 1rem; color: var(--muted); }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final { text-align: center; }
.cta-final .display-lg { max-width: 20ch; margin-inline: auto; }
.cta-final .garantia-lembrete { color: var(--muted); font-size: 0.95rem; margin-top: 1.2rem; }

.cta-final-scene {
  max-width: 380px;
  margin: 0 auto 1.6rem;
}
.cta-final-island {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(43, 23, 16, 0.3));
  animation: float 10s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cta-final-island { animation: none !important; }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--gutter) 26px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  max-width: var(--container);
  margin-inline: auto;
}
.footer-brand p { margin-top: 12px; font-size: 0.9rem; color: var(--muted); }
.footer-links { display: grid; gap: 8px; font-size: 0.88rem; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-legal { font-size: 0.75rem; color: var(--muted); opacity: 0.7; margin-top: 24px; }

/* ==========================================================================
   BREAKPOINT 768px
   ========================================================================== */
@media (min-width: 768px) {
  body { font-size: 18px; }
  .hero__inner { flex-direction: row; align-items: center; }
  .hero__copy { flex: 1 1 52%; }
  .hero__media { flex: 1 1 48%; }

  .cenas { grid-template-columns: 1fr; }
  .mecanismo-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .peca { border-bottom: 1px solid var(--line); }
  .qualifica-grid { grid-template-columns: repeat(2, 1fr); border-top: none; }
  .qualifica-card { border-top: 1px solid var(--line); border-right: 1px solid var(--line); padding: 0 40px 32px 0; }
  .qualifica-card:last-child { border-right: none; padding-left: 40px; }
  .caixa-lista { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
  .mesa-layout { flex-direction: row; align-items: center; }
  .mesa-bullets { flex: 1 1 48%; }
  .mesa-img { flex: 1 1 52%; }
  .oferta-layout { flex-direction: row; align-items: flex-start; }
  .oferta-img { flex: 1 1 42%; }
  .oferta-stack { flex: 1 1 58%; }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* ==========================================================================
   BREAKPOINT 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  .section { padding: 140px var(--gutter); }
  .mecanismo-grid { grid-template-columns: repeat(4, 1fr); }
  .peca { grid-template-columns: 1fr; text-align: left; border: none !important; padding: 0; }
  .peca__icon { width: 88px; height: 88px; margin-bottom: 6px; grid-row: auto; grid-column: 1; }
  .peca h3, .peca p { grid-column: 1; }
  .depoimento-card { flex: 0 0 30%; }
  .caixa-layout { flex-direction: row; align-items: center; }
  .caixa-lista { flex: 1 1 55%; }
  .caixa-media { flex: 1 1 45%; }
  .bonus-grid { grid-template-columns: repeat(4, 1fr); }
  .bonus-card { grid-template-columns: 1fr; text-align: left; border: none !important; padding: 0; }
  .bonus-card img { width: 100%; height: auto; }
}

/* ==========================================================================
   BREAKPOINT 1440px
   ========================================================================== */
@media (min-width: 1440px) {
  .hero__sub { font-size: 1.3rem; }
}
