/* ===================================================================
   Teste + Relatório de Frequência Emocional™ - estilos
   Paleta: azul escuro, roxo, dourado, branco
=================================================================== */

:root {
  --bg:        #0b0a1f;
  --bg-2:      #131036;
  --bg-3:      #1a1547;
  --ink:       #f4f1ff;
  --muted:     #b8b2d8;
  --muted-2:   #8b85b0;
  --purple:    #7c6cff;
  --purple-2:  #9b8cff;
  --indigo:    #4a47b8;
  --gold:      #d9b873;
  --gold-2:    #f0d99a;
  --gold-deep: #b8954f;
  --line:      rgba(255,255,255,.08);
  --card:      rgba(255,255,255,.04);
  --card-hi:   rgba(255,255,255,.07);
  --radius:    20px;
  --radius-sm: 14px;
  --maxw:      1140px;
  --shadow:    0 30px 80px -30px rgba(0,0,0,.7);
  --serif:     "Cormorant Garamond", Georgia, serif;
  --sans:      "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -5%, rgba(124,108,255,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(74,71,184,.14), transparent 55%),
    radial-gradient(800px 500px at 100% 100%, rgba(217,184,115,.06), transparent 60%);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: .2px; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}

.section { padding: clamp(70px, 9vw, 120px) 0; position: relative; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { background: linear-gradient(180deg, #fff, #cfc8ee); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-lg { padding: 18px 42px; font-size: 1.02rem; }

.btn-gold {
  color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-deep));
  box-shadow: 0 14px 40px -12px rgba(217,184,115,.6), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(217,184,115,.75); }

.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.05);
  border-color: var(--line);
  text-transform: none;
  padding: 11px 22px;
  font-size: .9rem;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,31,.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand-mark { color: var(--gold-2); font-size: 1.2rem; }
.brand-text { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; letter-spacing: .3px; }
.brand-text sup { font-size: .5em; color: var(--gold); }

@media (max-width: 540px) { .header-cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  margin: 6px 0 22px;
  background: linear-gradient(180deg, #ffffff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 32px; }

.hero-perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 32px;
  margin-top: 28px;
}
.hero-perks li { color: var(--muted); font-size: .98rem; }
.hero-perks strong { color: var(--gold-2); }

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; }
.hero-glow-1 { width: 460px; height: 460px; background: rgba(124,108,255,.28); top: -120px; right: -80px; }
.hero-glow-2 { width: 380px; height: 380px; background: rgba(217,184,115,.16); bottom: -120px; left: -100px; }

/* PDF mockup */
.hero-art { display: flex; justify-content: center; position: relative; z-index: 1; }
.pdf-mock { position: relative; perspective: 1400px; }
.pdf-mock-glow {
  position: absolute; inset: -30px; border-radius: 30px;
  background: radial-gradient(circle at 50% 30%, rgba(217,184,115,.35), transparent 70%);
  filter: blur(40px); z-index: -1;
}
.pdf-page {
  width: min(330px, 78vw);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #fbfaff, #eee9ff);
  border-radius: 16px;
  padding: 38px 30px;
  color: #1c1747;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.5) inset;
  transform: rotateY(-14deg) rotateX(4deg) rotate(1.5deg);
  transition: transform .6s ease;
  display: flex; flex-direction: column;
}
.pdf-mock:hover .pdf-page { transform: rotateY(-6deg) rotateX(2deg); }
.pdf-emblem { font-size: 1.8rem; color: var(--gold-deep); }
.pdf-kicker { font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: #8a83b8; margin-top: 14px; }
.pdf-title { font-family: var(--serif); font-size: 1.7rem; color: #2a1f5e; line-height: 1.1; }
.pdf-divider { height: 2px; width: 56px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 16px 0 20px; border-radius: 2px; }
.pdf-lines { display: grid; gap: 9px; margin: 6px 0; }
.pdf-lines .l { height: 8px; border-radius: 4px; background: linear-gradient(90deg, #d9d3f0, #ece8fb); }
.l.w90 { width: 90%; } .l.w85 { width: 85%; } .l.w80 { width: 80%; } .l.w70 { width: 70%; } .l.w60 { width: 60%; }
.pdf-wave { margin: 18px 0; }
.pdf-wave svg { width: 100%; height: 46px; }
.pdf-wave path { fill: none; stroke: url(#g); stroke: var(--purple); stroke-width: 3; opacity: .8; }
.pdf-foot { margin-top: auto; font-size: .72rem; color: #8a83b8; letter-spacing: .04em; }

/* ---------- Você se identifica ---------- */
.identify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.id-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.id-card:hover { transform: translateY(-5px); border-color: rgba(124,108,255,.5); background: var(--card-hi); }
.id-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 12px; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(124,108,255,.25), rgba(217,184,115,.15));
  color: var(--gold-2);
}
.id-card p { color: var(--ink); font-size: 1.02rem; }
.identify-note {
  max-width: 720px; margin: 44px auto 0; text-align: center;
  font-family: var(--serif); font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--muted); font-style: italic; line-height: 1.5;
}

/* ---------- O que você recebe ---------- */
.receive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(217,184,115,.4); }
.feature-card:hover::before { opacity: 1; }
.feature-ico {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(124,108,255,.3), rgba(217,184,115,.18));
  color: var(--gold-2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.feature-card h3 { color: #fff; margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: .98rem; }

/* ---------- Como funciona (timeline) ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--gold), transparent);
  opacity: .35;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  box-shadow: 0 12px 30px -10px rgba(217,184,115,.6), 0 0 0 6px var(--bg);
  margin-bottom: 20px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; color: #fff; }
.step p { color: var(--muted); font-size: .95rem; }

@media (max-width: 820px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 480px) { .timeline { grid-template-columns: 1fr; } }

/* ---------- Exemplo do relatório ---------- */
.example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.example-copy .eyebrow { margin-bottom: 14px; }
.example-copy > p { color: var(--muted); margin: 16px 0 24px; font-size: 1.05rem; }
.example-list { list-style: none; display: grid; gap: 14px; margin-bottom: 32px; }
.example-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 1.05rem; }
.example-list span { color: var(--gold-2); }

.example-doc { display: flex; justify-content: center; }
.doc-sheet {
  width: min(420px, 92vw);
  background: linear-gradient(165deg, #fbfaff, #efeaff);
  color: #1f1a4a;
  border-radius: 18px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.doc-head { display: flex; align-items: center; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid #e0daf4; margin-bottom: 20px; }
.doc-emblem {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep)); color: #fff;
}
.doc-kicker { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: #2a1f5e; }
.doc-name { font-size: .78rem; color: #8a83b8; }
.doc-block { margin-bottom: 22px; }
.doc-block h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #7a72ad; margin-bottom: 12px; }
.bar { position: relative; height: 26px; background: #e7e2f7; border-radius: 8px; margin-bottom: 10px; overflow: hidden; display: flex; align-items: center; }
.bar span { position: absolute; inset: 0 auto 0 0; border-radius: 8px; background: linear-gradient(90deg, var(--indigo), var(--purple)); }
.bar em { position: relative; z-index: 1; font-style: normal; font-size: .78rem; color: #fff; padding-left: 12px; font-weight: 500; }
.freq-wave svg { width: 100%; height: 56px; }
.freq-wave path { fill: none; stroke: var(--purple); stroke-width: 3; opacity: .85; }
.doc-cap { font-size: .82rem; color: #6f68a0; margin-top: 6px; font-style: italic; }
.chip {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  background: linear-gradient(135deg, rgba(124,108,255,.18), rgba(217,184,115,.18));
  color: #4a3f8e; border: 1px solid rgba(124,108,255,.25);
}

@media (max-width: 860px) { .example-grid { grid-template-columns: 1fr; gap: 44px; } }

/* ---------- Para quem é ---------- */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.who-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px 26px;
  font-size: 1.05rem; color: var(--ink);
  transition: transform .3s ease, border-color .3s ease;
}
.who-card:hover { transform: translateY(-4px); border-color: rgba(217,184,115,.4); }
.who-card span {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: #2a2208;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}

/* ---------- Depoimentos ---------- */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.test-card {
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease;
}
.test-card:hover { transform: translateY(-5px); border-color: rgba(124,108,255,.4); }
.stars { color: var(--gold-2); letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
.test-card blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.5; color: #eee9ff; font-style: italic; }
.test-card figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; color: var(--muted); font-weight: 500; font-size: .95rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--a), var(--b));
}

/* ---------- Garantia ---------- */
.guarantee-card {
  display: flex; align-items: center; gap: 36px;
  max-width: 820px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(217,184,115,.12), rgba(124,108,255,.1));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.6);
}
.seal { flex: none; }
.seal-ico {
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: #2a2208;
  background: radial-gradient(circle at 35% 30%, var(--gold-2), var(--gold-deep));
  box-shadow: 0 0 0 8px rgba(217,184,115,.15), 0 18px 40px -12px rgba(217,184,115,.6);
}
.guarantee-copy h2 { margin-bottom: 12px; }
.guarantee-copy p { color: var(--muted); font-size: 1.08rem; }
@media (max-width: 620px) { .guarantee-card { flex-direction: column; text-align: center; padding: 38px 28px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 4px 26px;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item[open] { border-color: rgba(124,108,255,.45); background: var(--card-hi); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-weight: 600; font-size: 1.08rem; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { flex: none; font-size: 1.5rem; color: var(--gold-2); transition: transform .3s ease; line-height: 1; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding: 0 0 22px; font-size: 1.02rem; }

/* ---------- CTA final ---------- */
.cta { text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; width: 700px; height: 500px; left: 50%; top: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(124,108,255,.25), transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem); margin-bottom: 18px;
  background: linear-gradient(180deg, #fff, #d8d0f5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-price { color: var(--muted); font-size: 1.15rem; margin-bottom: 32px; }
.cta-price strong { color: var(--gold-2); }
.cta-perks { justify-content: center; grid-template-columns: repeat(3, max-content); margin: 32px auto 0; }
@media (max-width: 560px) { .cta-perks { grid-template-columns: 1fr; justify-items: center; } }

/* ---------- Rodapé ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 56px 0 40px; text-align: center; background: rgba(0,0,0,.2); }
.footer-brand { justify-content: center; margin-bottom: 24px; }
.footer-disclaimer { max-width: 680px; margin: 0 auto 20px; color: var(--muted-2); font-size: .92rem; line-height: 1.7; }
.footer-copy { color: var(--muted-2); font-size: .85rem; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo Hero ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-perks { justify-content: center; grid-template-columns: repeat(2, max-content); }
  .hero-art { order: -1; }
}
@media (max-width: 420px) {
  .hero-perks { grid-template-columns: 1fr; justify-items: center; }
  .btn-lg { width: 100%; }
}

/* ===================================================================
   QUIZ
=================================================================== */
.quiz {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 70px;
  overflow: hidden;
}
.quiz-glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.quiz-glow-1 { width: 520px; height: 520px; background: rgba(124,108,255,.26); top: -140px; right: -120px; }
.quiz-glow-2 { width: 420px; height: 420px; background: rgba(217,184,115,.14); bottom: -140px; left: -120px; }

/* progresso */
.quiz-progress {
  position: relative; z-index: 2;
  width: 100%; max-width: 520px; margin: 0 auto 36px;
  text-align: center;
}
.quiz-progress-track {
  height: 7px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.quiz-progress-track span {
  display: block; height: 100%; width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transition: width .5s cubic-bezier(.4,0,.2,1);
}
.quiz-progress-label { display: inline-block; margin-top: 12px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }

/* palco e telas */
.quiz-stage { position: relative; z-index: 2; width: 100%; max-width: 720px; }
.screen { display: none; }
.screen.is-active { display: block; animation: screenIn .5s ease both; }
@keyframes screenIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.screen-inner { text-align: center; }
.screen-inner h1 {
  margin: 8px auto 20px; max-width: 700px;
  background: linear-gradient(180deg, #fff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.screen-sub { font-size: 1rem; color: var(--muted); max-width: 540px; margin: 0 auto 30px; }
.screen-micro { margin-top: 22px; font-size: .88rem; color: var(--muted-2); letter-spacing: .02em; }

/* perguntas */
.q-counter { display: inline-block; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.q-title { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: 0 auto 12px; max-width: 640px; color: #fff; }
.q-help { color: var(--muted); margin: 0 auto 34px; max-width: 520px; font-size: 1.02rem; }

.q-options { display: grid; gap: 14px; max-width: 520px; margin: 0 auto; }

.q-option {
  display: flex; align-items: center; gap: 16px;
  text-align: left;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 20px 24px;
  color: var(--ink); font-family: var(--sans); font-size: 1.08rem; font-weight: 500;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  animation: optIn .5s ease both; animation-delay: var(--d, 0s);
}
@keyframes optIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.q-option:hover { transform: translateY(-3px); border-color: rgba(124,108,255,.55); background: var(--card-hi); }
.q-radio {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25); position: relative; transition: border-color .2s ease;
}
.q-option:hover .q-radio { border-color: var(--gold-2); }
.q-option.selected { border-color: var(--gold-2); background: rgba(217,184,115,.1); }
.q-option.selected .q-radio { border-color: var(--gold-2); }
.q-option.selected .q-radio::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
}

/* pergunta visual (gênero) */
.q-options-visual {
  grid-template-columns: 1fr 1fr;
  gap: 18px; max-width: 480px;
}
.q-visual {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 20px 24px;
  cursor: pointer; color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  animation: optIn .5s ease both; animation-delay: var(--d, 0s);
}
.q-visual:hover { transform: translateY(-5px); border-color: rgba(217,184,115,.6); background: var(--card-hi); }
.q-visual.selected { border-color: var(--gold-2); background: rgba(217,184,115,.12); }
.q-visual-art {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 130px;
}
.silhouette { width: 100%; height: 100%; }
.silhouette path { fill: url(#none); fill: var(--muted); transition: fill .25s ease; }
.q-visual:hover .silhouette path,
.q-visual.selected .silhouette path { fill: var(--gold-2); }
.q-visual-label { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; }

/* tela de loading */
.loading-inner { padding: 20px 0; }
.orb { position: relative; width: 90px; height: 90px; margin: 0 auto 30px; }
.orb span {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--gold-2);
  animation: spin 1.1s linear infinite;
}
.orb span:nth-child(2) { inset: 12px; border-top-color: var(--purple-2); animation-duration: 1.5s; animation-direction: reverse; }
.orb span:nth-child(3) { inset: 24px; border-top-color: var(--gold); animation-duration: .9s; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-steps { list-style: none; max-width: 360px; margin: 30px auto 0; display: grid; gap: 12px; text-align: left; }
.loading-steps li {
  color: var(--muted-2); font-size: .98rem; padding-left: 30px; position: relative;
  opacity: .5; transition: color .4s ease, opacity .4s ease;
}
.loading-steps li::before {
  content: "○"; position: absolute; left: 0; color: var(--muted-2); transition: all .4s ease;
}
.loading-steps li.done { color: var(--ink); opacity: 1; }
.loading-steps li.done::before { content: ""; color: var(--gold-2); }

/* tela de resultado */
.result-inner { max-width: 620px; margin: 0 auto; }
.result-badge {
  display: inline-flex; align-items: center; gap: 18px;
  background: linear-gradient(135deg, rgba(124,108,255,.14), rgba(217,184,115,.12));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius); padding: 18px 28px; margin: 6px auto 24px;
  text-align: left;
}
.result-emoji { font-size: 2.6rem; line-height: 1; }
.result-kicker { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-2); }
.result-name { font-size: clamp(1.3rem, 2.8vw, 1.8rem); color: #fff; line-height: 1.1; }
.result-text { color: var(--muted); font-size: .98rem; line-height: 1.6; margin-bottom: 26px; }

.result-meter { max-width: 460px; margin: 0 auto 30px; }
.result-meter-bar {
  height: 12px; border-radius: 999px; overflow: hidden; position: relative;
  background: linear-gradient(90deg, #2a2350, #3a2e6e, #c9a14a);
}
.result-meter-bar span {
  position: absolute; top: -4px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2), 0 6px 16px rgba(0,0,0,.4);
  transform: translateX(-50%); left: 0;
  transition: left .9s cubic-bezier(.4,0,.2,1);
}
.result-meter-tags { display: flex; justify-content: space-between; margin-top: 10px; font-size: .76rem; color: var(--muted-2); }
.result-cta-bridge { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--ink); margin: 0 auto 26px; max-width: 480px; }

@media (max-width: 480px) {
  .result-badge { flex-direction: column; text-align: center; gap: 10px; }
}

/* ===================================================================
   PÁGINA DE VENDA - extras
=================================================================== */
.lead { color: var(--muted); font-size: 1.12rem; max-width: 680px; margin: 18px auto 0; line-height: 1.7; }
.lead strong { color: var(--gold-2); }
.sales-hook { padding-top: clamp(80px, 10vw, 120px); }

.header-trust { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 600px) { .header-trust { display: none; } }

/* card de oferta */
.offer-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid rgba(217,184,115,.3);
  border-radius: var(--radius); padding: clamp(34px, 5vw, 56px);
  box-shadow: var(--shadow); position: relative; z-index: 1;
}
.offer-card h2 { margin-bottom: 12px; }
.offer-desc { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }
.offer-list { list-style: none; display: inline-grid; gap: 12px; text-align: left; margin: 0 auto 30px; }
.offer-list li { color: var(--ink); font-size: 1.02rem; }
.price-box {
  background: rgba(0,0,0,.25); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 24px; margin-bottom: 28px;
}
.price-old { color: var(--muted-2); font-size: 1rem; }
.price-now { font-family: var(--serif); font-size: 2.4rem; color: #fff; line-height: 1.1; margin: 4px 0; }
.price-now strong { color: var(--gold-2); }
.price-cond { color: var(--muted); font-size: .92rem; }
.offer-perks { justify-content: center; grid-template-columns: repeat(3, max-content); margin: 26px auto 0; }
@media (max-width: 560px) { .offer-perks { grid-template-columns: 1fr; justify-items: center; } }
.close { text-align: center; overflow: hidden; position: relative; padding-top: clamp(50px, 6vw, 70px); }

/* ----- Virada de chave (agitação) ----- */
.turn { padding-bottom: clamp(40px, 5vw, 60px); }
.turn-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  border-left: 3px solid var(--gold); border-right: 3px solid var(--gold);
  padding: 8px 32px;
}
.turn-card h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin-bottom: 22px;
  background: linear-gradient(180deg, #fff, #e7c98f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.turn-card p { color: var(--muted); font-size: 1.12rem; line-height: 1.75; max-width: 640px; margin: 0 auto 16px; }
.turn-card strong { color: var(--ink); }
.turn-line { font-family: var(--serif); font-style: italic; font-size: 1.3rem !important; color: var(--gold-2) !important; margin-top: 8px !important; }
.turn-line em { color: #fff; font-style: italic; }

/* ----- Escassez ----- */
.scarcity {
  display: flex; align-items: flex-start; gap: 12px; text-align: left;
  background: rgba(217,90,90,.1); border: 1px solid rgba(217,120,90,.35);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 0 auto 24px;
  max-width: 480px; font-size: .96rem; color: #f3dcc8; line-height: 1.55;
}
.scarcity-text { flex: 1; }
.scarcity strong { color: #ffd9b0; }
.scarcity-dot {
  flex: none; width: 11px; height: 11px; border-radius: 50%;
  background: #ff8a5c; box-shadow: 0 0 0 0 rgba(255,138,92,.6);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,138,92,.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,138,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,92,0); }
}

/* ----- Botão pulsante ----- */
.btn-pulse { animation: btnPulse 2.2s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 14px 40px -12px rgba(217,184,115,.6), inset 0 1px 0 rgba(255,255,255,.4); }
  50% { transform: translateY(-2px); box-shadow: 0 22px 54px -10px rgba(217,184,115,.85), inset 0 1px 0 rgba(255,255,255,.5); }
}
.btn-pulse:hover { animation: none; }

/* ----- Garantia compacta dentro da oferta ----- */
.offer-guarantee {
  display: flex; align-items: center; gap: 14px; text-align: left;
  max-width: 480px; margin: 22px auto 0;
  background: rgba(74,201,161,.08); border: 1px solid rgba(74,201,161,.28);
  border-radius: var(--radius-sm); padding: 16px 20px;
}
.offer-guarantee p { color: var(--muted); font-size: .95rem; line-height: 1.55; margin: 0; }
.offer-guarantee strong { color: #aef0d6; }
.seal-ico-sm {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #0b2a1f; font-weight: 700;
  background: radial-gradient(circle at 35% 30%, #86e9c8, #34a07a);
}
.offer-ps {
  max-width: 500px; margin: 26px auto 0; font-size: .98rem; color: var(--muted-2);
  font-style: italic; line-height: 1.6;
}
.offer-ps::first-letter { color: var(--gold-2); }

.example-foot { color: var(--muted); font-size: 1rem; margin-top: 4px; }
.example-foot strong { color: var(--gold-2); }

/* ===================================================================
   PÁGINA DE OBRIGADO
=================================================================== */
.thanks {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.thanks-glow { position: absolute; border-radius: 50%; filter: blur(100px); z-index: 0; pointer-events: none; }
.thanks-glow-1 { width: 520px; height: 520px; background: rgba(124,108,255,.24); top: -140px; right: -120px; }
.thanks-glow-2 { width: 420px; height: 420px; background: rgba(217,184,115,.16); bottom: -140px; left: -120px; }

.thanks-inner { position: relative; z-index: 1; max-width: 640px; text-align: center; }

.thanks-check {
  width: 86px; height: 86px; margin: 0 auto 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #0b2a1f; font-weight: 700;
  background: radial-gradient(circle at 35% 30%, #86e9c8, #34a07a);
  box-shadow: 0 0 0 8px rgba(74,201,161,.14), 0 18px 40px -12px rgba(74,201,161,.6);
  animation: popIn .6s cubic-bezier(.2,.8,.3,1.2) both;
}
@keyframes popIn { from { opacity: 0; transform: scale(.5); } to { opacity: 1; transform: scale(1); } }

.thanks-inner h1 {
  margin: 8px 0 18px;
  background: linear-gradient(180deg, #fff 30%, #d4ccf3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.thanks-lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
.thanks-lead strong { color: var(--gold-2); }
.thanks-after { margin-top: 22px; color: var(--muted); font-size: 1rem; }
.thanks-after strong { color: var(--gold-2); }

.thanks-card {
  margin: 40px auto 0; max-width: 460px; text-align: left;
  background: linear-gradient(160deg, var(--card-hi), var(--card));
  border: 1px solid rgba(217,184,115,.28);
  border-radius: var(--radius); padding: 30px 34px;
}
.thanks-card h2 { font-size: 1.4rem; color: #fff; margin-bottom: 18px; text-align: center; }
.thanks-list { list-style: none; display: grid; gap: 14px; }
.thanks-list li { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 1.05rem; }
.thanks-list span { font-size: 1.3rem; flex: none; }

.thanks-note {
  margin: 32px auto 0; max-width: 480px; font-size: .92rem; color: var(--muted-2);
  line-height: 1.6;
}

/* ----- Divisor entre seções ----- */
.divider {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  max-width: 720px; margin: 0 auto;
  padding: 0 24px;
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,184,115,.45), transparent);
}
.divider span {
  flex: none; color: var(--gold-2); font-size: 1.1rem; line-height: 1;
  opacity: .85;
}

/* exemplo sem o card - conteúdo centralizado */
.example-center { max-width: 560px; margin: 0 auto; text-align: center; }
.example-center .example-list { display: inline-grid; text-align: left; }

/* ----- 2 depoimentos centralizados ----- */
.test-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px; margin-left: auto; margin-right: auto;
}
@media (max-width: 640px) { .test-grid-2 { grid-template-columns: 1fr; } }

/* ----- CTA no meio (após depoimentos) ----- */
.mid-cta {
  text-align: center; margin-top: clamp(40px, 6vw, 60px);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.mid-cta p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem); color: var(--ink);
  max-width: 540px;
}
.mid-cta-section { padding: clamp(50px, 6vw, 72px) 0; }

/* ===================================================================
   Tema inspirado em Lizza Terapeuta
   Fundo claro quente, marrom profundo, taupe e sage. Sem gradientes.
=================================================================== */
:root {
  --bg: #f4efe2;
  --bg-2: #e9e4d6;
  --bg-3: #c8b19f;
  --ink: #1e0f06;
  --muted: rgba(30, 15, 6, 0.74);
  --muted-2: rgba(30, 15, 6, 0.56);
  --purple: #93a483;
  --purple-2: #aebc9f;
  --indigo: #6f7d61;
  --gold: #c8b19f;
  --gold-2: #735a45;
  --gold-deep: #1e0f06;
  --line: rgba(30, 15, 6, 0.18);
  --card: rgba(244, 239, 226, 0.72);
  --card-hi: rgba(255, 255, 255, 0.52);
  --radius: 12px;
  --radius-sm: 10px;
  --shadow: 0 24px 64px rgba(30, 15, 6, 0.12);
  --serif: ambroise-francois-std, Georgia, "Times New Roman", serif;
  --sans: "Maison Neue Extended", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: var(--ink);
  background: var(--bg);
  background-image: none;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

*,
*::before,
*::after {
  background-image: none !important;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: 0;
}

h1 { font-size: clamp(2.55rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.15rem, 5.6vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2.8vw, 2.15rem); }

.eyebrow,
.q-counter,
.quiz-progress-label,
.result-kicker {
  color: #735a45;
  letter-spacing: .18em;
}

.section-head h2,
.hero-copy h1,
.screen-inner h1,
.cta-inner h2,
.thanks-inner h1 {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--ink);
}

.site-header.scrolled {
  background: rgba(244, 239, 226, .88);
  border-bottom-color: var(--line);
}

.brand,
.q-title,
.q-visual-label,
.step h3,
.feature-card h3,
.test-card blockquote,
.faq-item summary,
.result-name,
.thanks-card h2 {
  color: var(--ink);
}

.brand-mark,
.brand-text sup,
.hero-perks strong,
.lead strong,
.example-list span,
.stars,
.faq-plus,
.cta-price strong,
.price-now strong,
.turn-line,
.thanks-lead strong,
.thanks-after strong,
.thanks-list span,
.divider span,
.example-foot strong {
  color: #735a45 !important;
}

.btn {
  border-radius: 999px;
  letter-spacing: .08em;
}

.btn-gold,
.btn-ghost {
  color: var(--bg);
  background: #1e0f06;
  border-color: #1e0f06;
  box-shadow: none;
}

.btn-gold:hover,
.btn-ghost:hover {
  background: #735a45;
  border-color: #735a45;
  box-shadow: none;
}

.btn-pulse {
  animation: none;
}

.hero-glow,
.pdf-mock-glow,
.quiz-glow,
.cta-glow,
.thanks-glow {
  display: none;
}

.id-card,
.feature-card,
.who-card,
.test-card,
.faq-item,
.offer-card,
.turn-card,
.thanks-card,
.result-badge,
.q-option,
.q-visual,
.guarantee-card {
  background: rgba(255, 255, 255, .38);
  border-color: var(--line);
  box-shadow: none;
}

.id-card:hover,
.feature-card:hover,
.who-card:hover,
.test-card:hover,
.faq-item[open],
.q-option:hover,
.q-visual:hover {
  background: rgba(255, 255, 255, .58);
  border-color: rgba(30, 15, 6, .34);
}

.feature-card::before {
  background: #c8b19f;
}

.id-icon,
.feature-ico,
.doc-emblem,
.step-num,
.who-card span,
.seal-ico,
.seal-ico-sm,
.thanks-check,
.q-option.selected .q-radio::after,
.avatar {
  color: var(--bg);
  background: #735a45;
  box-shadow: none;
}

.timeline::before,
.divider::before,
.divider::after,
.pdf-divider,
.bar span,
.quiz-progress-track span,
.result-meter-bar {
  background: #c8b19f;
}

.step-num {
  box-shadow: 0 0 0 6px var(--bg);
}

.doc-sheet,
.pdf-page {
  color: var(--ink);
  background: #fffaf0;
  border-color: rgba(30, 15, 6, .12);
}

.pdf-kicker,
.doc-name,
.doc-cap {
  color: rgba(30, 15, 6, .56);
}

.pdf-title,
.doc-kicker {
  color: var(--ink);
}

.pdf-lines .l,
.bar {
  background: #e9e4d6;
}

.chip {
  color: var(--ink);
  background: rgba(147, 164, 131, .22);
  border-color: rgba(30, 15, 6, .16);
}

.hero-perks li,
.screen-sub,
.screen-micro,
.q-help,
.step p,
.feature-card p,
.test-card figcaption,
.faq-item p,
.cta-price,
.footer-disclaimer,
.footer-copy,
.identify-note,
.example-copy > p,
.thanks-lead,
.thanks-after,
.thanks-note,
.price-old,
.price-cond,
.offer-desc,
.offer-ps,
.turn-card p {
  color: var(--muted);
}

.quiz-progress-track {
  background: rgba(30, 15, 6, .12);
}

.q-radio {
  border-color: rgba(30, 15, 6, .28);
}

.q-option:hover .q-radio,
.q-option.selected,
.q-option.selected .q-radio,
.q-visual.selected {
  border-color: #735a45;
}

.q-option.selected,
.q-visual.selected {
  background: rgba(200, 177, 159, .24);
}

.silhouette path,
.q-visual:hover .silhouette path,
.q-visual.selected .silhouette path {
  fill: #735a45;
}

.orb span {
  border-top-color: #735a45;
}

.orb span:nth-child(2),
.orb span:nth-child(3) {
  border-top-color: #93a483;
}

.loading-steps li.done::before {
  color: #735a45;
}

.result-meter-bar span {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(244, 239, 226, .75);
}

.scarcity {
  background: rgba(147, 164, 131, .18);
  border-color: rgba(30, 15, 6, .18);
}

.scarcity-dot {
  background: #93a483;
  box-shadow: none;
}

.offer-guarantee {
  background: rgba(147, 164, 131, .16);
  border-color: rgba(30, 15, 6, .18);
}

.price-box,
.site-footer {
  background: rgba(30, 15, 6, .05);
}

.q-options-area {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.quiz {
  background: #1e0f06;
  font-family: var(--sans);
  font-style: normal;
}

.quiz h1,
.quiz h2,
.quiz h3,
.quiz .q-visual-label,
.quiz .result-cta-bridge {
  font-family: var(--sans);
  font-style: normal;
}

.quiz .screen-inner h1,
.quiz .q-title,
.quiz .result-name,
.quiz .result-cta-bridge,
.quiz .loading-steps li.done {
  color: #f4efe2;
}

.quiz .screen-sub,
.quiz .screen-micro,
.quiz .q-help,
.quiz .result-text,
.quiz .result-meter-tags,
.quiz .quiz-progress-label {
  color: rgba(244, 239, 226, .78);
}

.quiz .eyebrow,
.quiz .q-counter,
.quiz .result-kicker {
  color: #f0d99a;
}

.quiz .q-counter {
  display: none;
}

.quiz .q-option,
.quiz .q-visual,
.quiz .result-badge {
  color: #1e0f06;
  background: rgba(255, 250, 240, .9);
  border-color: rgba(244, 239, 226, .28);
}

.quiz .result-inner {
  max-width: 680px;
}

.quiz .result-badge {
  background: #f4efe2;
  border-color: rgba(240, 217, 154, .5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.quiz .result-name,
.quiz .result-kicker {
  color: #1e0f06;
}

.quiz .result-map-copy {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #fffaf0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

.quiz .result-text {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.quiz .result-meter {
  margin-bottom: 24px;
}

.quiz .result-meter-bar {
  background: #c8b19f;
}

.quiz .result-meter-bar span {
  background: #fffaf0;
  box-shadow: 0 0 0 4px rgba(240, 217, 154, .38), 0 8px 20px rgba(0, 0, 0, .34);
}

.quiz .result-cta-bridge {
  max-width: 560px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.quiz .btn-gold {
  color: #1e0f06;
  background: #f4efe2;
  border-color: #f4efe2;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.quiz .btn-gold:hover {
  color: #1e0f06;
  background: #c8b19f;
  border-color: #c8b19f;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .3);
}

.q-options-area .q-option {
  min-height: 78px;
  align-items: flex-start;
}

.report-preview {
  width: min(360px, 100%);
  margin: 28px auto 30px;
}

.report-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  border: 1px solid rgba(30, 15, 6, .16);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 22px 60px rgba(30, 15, 6, .12);
}

.report-preview figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 680px) {
  .q-options-area {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   Refinos de leitura e quebras visuais para a página final
=================================================================== */
.sales-page {
  background: var(--bg);
}

.sales-page .section {
  padding: clamp(64px, 9vw, 108px) 0;
}

.sales-page .container {
  max-width: 1080px;
}

.sales-page .section-head {
  max-width: 920px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.sales-page .section-head h2,
.sales-page .offer-card h2,
.sales-page .turn-card h2,
.sales-page .cta-inner h2 {
  max-width: 820px;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: .98;
}

.sales-page .lead,
.sales-page .offer-desc,
.sales-page .turn-card p,
.sales-page .cta-price,
.sales-page .identify-note,
.sales-page .example-copy > p {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.78;
  text-align: left;
}

.sales-page .eyebrow {
  font-size: .75rem;
  line-height: 1.4;
}

.sales-page .divider {
  display: none;
}

.sales-hook {
  min-height: auto;
  padding-top: clamp(108px, 14vw, 150px) !important;
}

.sales-hook .section-head {
  padding: clamp(32px, 5vw, 54px) 0;
}

.sales-hook .lead + .lead {
  margin-top: 20px;
  padding-left: 22px;
  border-left: 1px solid rgba(30, 15, 6, .22);
}

.sales-page .identify {
  background: #fffaf0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identify-grid,
.receive-grid,
.forwho-grid,
.test-grid {
  align-items: stretch;
}

.id-card,
.feature-card,
.who-card,
.test-card {
  text-align: left;
}

.id-card p,
.feature-card p,
.who-card,
.test-card blockquote,
.test-card figcaption {
  line-height: 1.6;
}

.sales-page .receive {
  color: var(--bg);
  background: #1e0f06;
}

.sales-page .receive .section-head h2,
.sales-page .receive .feature-card h3,
.sales-page .receive .eyebrow {
  color: #f4efe2 !important;
}

.sales-page .receive .section-head p,
.sales-page .receive .feature-card p {
  color: rgba(244, 239, 226, .76);
}

.sales-page .receive .feature-card {
  background: rgba(244, 239, 226, .08);
  border-color: rgba(244, 239, 226, .22);
}

.sales-page .receive .feature-card:hover {
  background: rgba(244, 239, 226, .12);
  border-color: rgba(244, 239, 226, .38);
}

.sales-page .bonus-section {
  background: #fffaf0;
  color: #1e0f06;
}

.sales-page .bonus-section .section-head h2,
.sales-page .bonus-section .eyebrow {
  color: #1e0f06 !important;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bonus-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: #f4efe2;
  border: 1px solid rgba(30, 15, 6, .14);
  border-radius: 16px;
}

.bonus-card > span {
  color: #972a23;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.bonus-card h3 {
  margin: 12px 0 8px;
  color: #1e0f06;
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1.2;
}

.bonus-card p {
  color: #735a45;
  line-height: 1.55;
}

.bonus-image {
  display: block;
  width: min(180px, 70%);
  max-height: 210px;
  object-fit: contain;
  align-self: center;
  margin: 14px auto 4px;
}

.bonus-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.bonus-price del,
.bonus-total del {
  color: #735a45;
}

.bonus-price strong {
  color: #972a23;
  font-size: 1.05rem;
  letter-spacing: .08em;
}

.bonus-total {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 16px;
  max-width: 620px;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(30, 15, 6, .2);
}

.bonus-total span {
  grid-column: 1 / -1;
  color: #735a45;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bonus-total del {
  font-family: var(--serif);
  font-size: 2rem;
}

.bonus-total strong {
  color: #972a23;
  font-size: 1.05rem;
  line-height: 1.3;
}

@media (max-width: 620px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-total { grid-template-columns: 1fr; }
}

.sales-page .receive .feature-ico {
  color: #1e0f06;
  background: #c8b19f;
}

.sales-page .how {
  color: var(--ink);
  background-color: #f4efe2;
  background-image: none !important;
}

.sales-page .how .section-head h2,
.sales-page .how .eyebrow,
.sales-page .how .step h3,
.sales-page .how .step p {
  color: #1e0f06 !important;
}

.sales-page .timeline {
  gap: 16px;
}

.sales-page .timeline::before {
  display: none;
}

.sales-page .step {
  text-align: left;
  padding: 24px;
  border: 1px solid rgba(244, 239, 226, .56);
  background: rgba(244, 239, 226, .22);
  border-radius: var(--radius);
}

.sales-page .step-num {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #f4efe2;
  background: #1e0f06;
  box-shadow: none;
  font-size: 1.2rem;
}

.sales-page .example {
  color: var(--ink);
  background-color: #93a483;
  background-image:
    linear-gradient(rgba(244, 239, 226, .42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .42) 1px, transparent 1px) !important;
  background-size: clamp(54px, 10vw, 96px) clamp(54px, 10vw, 96px);
}

.sales-page .example .section-head h2,
.sales-page .example .eyebrow,
.sales-page .example-copy > p,
.sales-page .example-list li,
.sales-page .example-foot,
.sales-page .report-preview figcaption {
  color: #1e0f06 !important;
}

.example-center {
  max-width: 100%;
  text-align: left;
}

.example-center .example-list {
  display: grid;
  max-width: 520px;
}

.report-preview {
  margin-left: 0;
  margin-right: 0;
}

.mid-cta,
.sales-page .testimonials .mid-cta {
  align-items: flex-start;
  text-align: left;
}

.mid-cta p {
  max-width: 680px;
  line-height: 1.2;
}

.sales-page .forwho {
  background: #fffaf0;
}

.sales-page .testimonials {
  background: var(--bg);
}

.test-grid-2 {
  max-width: none;
}

.sales-page .turn {
  background: #e9e4d6;
}

.turn-card {
  max-width: 920px;
  margin-left: 0;
  text-align: left;
  border-left: 1px solid rgba(30, 15, 6, .28);
  border-right: 0;
  padding: 8px 0 8px 28px;
}

.turn-line em {
  color: var(--ink);
}

.close {
  background: #fffaf0;
}

.offer-card {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}

.offer-list {
  display: grid;
}

.price-now {
  color: var(--ink);
}

.sales-page .cta {
  background: #1e0f06;
  color: #f4efe2;
}

.sales-page .cta-inner {
  max-width: 900px;
  margin-left: 0;
  text-align: left;
}

.sales-page .cta-inner h2,
.sales-page .cta .eyebrow,
.sales-page .cta-price,
.sales-page .cta-price strong,
.sales-page .cta-perks li {
  color: #f4efe2 !important;
}

.sales-page .cta .btn-gold {
  color: #1e0f06;
  background: #f4efe2;
  border-color: #f4efe2;
}

.sales-page .cta .btn-gold:hover {
  background: #c8b19f;
  border-color: #c8b19f;
}

.sales-page .cta-perks {
  justify-content: start;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .sales-page .section {
    padding: 58px 0;
  }

  .sales-hook {
    padding-top: 88px !important;
  }

  .sales-page .section-head,
  .sales-page .screen-inner,
  .sales-page .example-center,
  .sales-page .offer-card,
  .sales-page .cta-inner,
  .sales-page .turn-card,
  .sales-page .mid-cta,
  .sales-page .test-card,
  .sales-page .feature-card,
  .sales-page .id-card,
  .sales-page .who-card,
  .sales-page .step {
    text-align: left;
  }

  .sales-page .section-head {
    margin-bottom: 32px;
  }

  .sales-page .section-head h2,
  .sales-page .offer-card h2,
  .sales-page .turn-card h2,
  .sales-page .cta-inner h2 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
    line-height: 1.03;
  }

  .sales-page .lead,
  .sales-page .offer-desc,
  .sales-page .turn-card p,
  .sales-page .cta-price,
  .sales-page .identify-note,
  .sales-page .example-copy > p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .sales-page .lead + .lead {
    padding-left: 16px;
  }

  .receive-grid,
  .identify-grid,
  .forwho-grid,
  .test-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sales-page .timeline {
    grid-template-columns: 1fr;
  }

  .id-card,
  .feature-card,
  .who-card,
  .test-card,
  .offer-card,
  .step {
    padding: 22px;
  }

  .offer-card {
    border-radius: 0;
    margin-left: -22px;
    margin-right: -22px;
    padding: 34px 22px;
    border-left: 0;
    border-right: 0;
  }

  .report-preview {
    width: 100%;
  }

  .report-preview img {
    max-height: none;
  }

  .mid-cta {
    gap: 18px;
  }

  .mid-cta p {
    font-size: 1.55rem;
    line-height: 1.15;
  }

  .btn-lg {
    width: 100%;
    padding: 16px 18px;
    font-size: .86rem;
    line-height: 1.25;
    text-align: center;
  }

  .cta-perks {
    justify-items: start !important;
  }
}

/* Correcoes de contraste nos cards finais */
.sales-page .scarcity,
.sales-page .offer-guarantee {
  color: var(--ink);
  background: rgba(147, 164, 131, .18);
  border: 1px solid rgba(30, 15, 6, .22);
}

.sales-page .scarcity {
  align-items: flex-start;
  max-width: none;
  padding: 18px 20px;
}

.sales-page .scarcity-text,
.sales-page .scarcity strong,
.sales-page .offer-guarantee p,
.sales-page .offer-guarantee strong {
  color: var(--ink) !important;
}

.sales-page .scarcity-text,
.sales-page .offer-guarantee p {
  font-size: 1rem;
  line-height: 1.65;
}

.sales-page .scarcity-dot {
  margin-top: .45em;
  background: #6f7d61;
}

.sales-page .offer-guarantee {
  max-width: none;
  align-items: flex-start;
  padding: 18px 20px;
}

.sales-page .seal-ico-sm {
  margin-top: .25em;
  color: #f4efe2;
  background: #735a45;
}

@media (max-width: 760px) {
  .sales-page .scarcity,
  .sales-page .offer-guarantee {
    padding: 18px;
  }

  .sales-page .scarcity-text,
  .sales-page .offer-guarantee p {
    font-size: .98rem;
    line-height: 1.62;
  }
}

.attention-badge {
  display: inline-block;
  margin-right: 12px;
  color: #972a23;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: .72em;
  line-height: 1;
  vertical-align: .08em;
}

.title-with-alert {
  display: block;
}

.sales-page strong,
#selectedAreaText,
.attention-red {
  color: #972a23 !important;
}

.brand-mark {
  width: 18px;
  height: 1px;
  background: currentColor;
}

.id-icon,
.feature-ico {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.example-list li,
.offer-list li,
.hero-perks li,
.thanks-list li {
  position: relative;
  padding-left: 18px;
}

.example-list li span,
.who-card span,
.seal-ico-sm {
  position: relative;
}

.example-list li span {
  display: none;
}

.example-list li::before,
.offer-list li::before,
.hero-perks li::before,
.thanks-list li::before,
.who-card span::before,
.seal-ico-sm::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #972a23;
}

.who-card span::before,
.seal-ico-sm::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #f4efe2;
}

.loading-steps li::before,
.loading-steps li.done::before {
  content: "";
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #735a45;
}

.result-emoji {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(151, 42, 35, .28);
  border-radius: 999px;
  color: #972a23;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Remove a aparência cursiva apenas dos cards da seção "No seu relatório" */
.sales-page .receive .feature-card h3 {
  font-family: var(--sans) !important;
  font-style: normal !important;
  letter-spacing: 0;
}

.sales-page .receive .feature-card h3 {
  font-weight: 700;
  line-height: 1.18;
}

.sales-page .receive .feature-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.45rem);
}

.sales-page .feature-ico,
.sales-page .id-icon {
  font-size: .8rem;
  min-width: 56px;
}

.sales-page .receive .feature-ico,
.sales-page .id-icon {
  color: #1e0f06;
}

/* Card de oferta mais chamativo */
.sales-page .close .offer-card {
  color: #f4efe2;
  background: #10233f;
  border: 1px solid rgba(244, 239, 226, .2);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(16, 35, 63, .34);
}

.sales-page .close .offer-card h2,
.sales-page .close .offer-list li,
.sales-page .close .price-now,
.sales-page .close .scarcity-text,
.sales-page .close .offer-guarantee p,
.sales-page .close .offer-ps {
  color: #f4efe2 !important;
}

.sales-page .close .offer-desc,
.sales-page .close .price-old,
.sales-page .close .price-cond {
  color: rgba(244, 239, 226, .78) !important;
}

.sales-page .close #offerEyebrow,
.sales-page .close strong,
.sales-page .close .price-now strong,
.sales-page .close .offer-list li::before {
  color: #ff6b5f !important;
}

.sales-page .close .offer-list li::before {
  background: #ff6b5f;
}

.sales-page .close .price-box {
  background: rgba(244, 239, 226, .08);
  border-color: rgba(244, 239, 226, .2);
}

.sales-page .close .scarcity,
.sales-page .close .offer-guarantee {
  background: rgba(244, 239, 226, .08);
  border-color: rgba(255, 107, 95, .34);
}

.sales-page .close .scarcity-dot,
.sales-page .close .seal-ico-sm {
  background: #ff6b5f;
}

.sales-page .close .btn-gold {
  color: #10233f;
  background: #f4efe2;
  border-color: #f4efe2;
}

.sales-page .close .btn-gold:hover {
  color: #f4efe2;
  background: #ff6b5f;
  border-color: #ff6b5f;
}

/* Início da página final do quiz: mapa completo */
.sales-page .sales-hook,
.sales-page .identify {
  color: #f4efe2;
  background: #1e0f06;
  border-color: rgba(244, 239, 226, .18);
}

.sales-page .sales-hook {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(64px, 8vw, 92px) !important;
}

.sales-page .sales-hook .section-head {
  max-width: 960px;
}

.sales-page .sales-hook .eyebrow,
.sales-page .identify .eyebrow {
  color: #f0d99a;
}

.sales-page .sales-hook h2,
.sales-page .identify h2,
.sales-page .sales-hook .lead,
.sales-page .identify .lead,
.sales-page .identify-note {
  color: #f4efe2 !important;
}

.sales-page .sales-hook .lead,
.sales-page .identify .lead {
  color: rgba(244, 239, 226, .82) !important;
}

.sales-page .sales-hook strong,
.sales-page .identify strong,
.sales-page .sales-hook #selectedAreaText,
.sales-page .sales-hook .js-selected-area,
.sales-page .identify .js-selected-area {
  color: #f0d99a !important;
}

.sales-page .sales-hook .lead + .lead {
  border-left-color: rgba(240, 217, 154, .38);
}

.sales-page .sales-hook .btn {
  margin-top: 24px;
}

.sales-page .sales-hook .btn-gold,
.sales-page .identify .btn-gold {
  color: #1e0f06;
  background: #f4efe2;
  border-color: #f4efe2;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.sales-page .sales-hook .btn-gold:hover,
.sales-page .identify .btn-gold:hover {
  color: #1e0f06;
  background: #c8b19f;
  border-color: #c8b19f;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
}

.sales-page .identify .id-card {
  color: #1e0f06;
  background: rgba(255, 250, 240, .92);
  border-color: rgba(240, 217, 154, .32);
}

.sales-page .identify .id-card h3,
.sales-page .identify .id-card p {
  color: #1e0f06 !important;
}

.sales-page .identify .id-icon {
  color: #f4efe2;
  background: #735a45;
}

.sales-page .example-bonus {
  max-width: 720px;
  margin: 18px 0 26px;
  padding: 18px 20px;
  color: #1e0f06;
  background: #fffaf0;
  border: 1px solid rgba(30, 15, 6, .14);
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.55;
}

/* Fonte legível e sem cursiva no site todo */
:root {
  --serif: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  --sans: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
}

body,
button,
input,
textarea,
select,
h1,
h2,
h3,
.brand-text,
.lead,
.identify-note,
.result-cta-bridge,
.turn-line,
.pdf-title,
.doc-kicker,
.test-card blockquote,
.price-now {
  font-family: var(--sans) !important;
  font-style: normal !important;
}

em,
i {
  font-style: normal;
}

/* Ajustes de legibilidade da página final */
.sales-page .receive {
  color: #1e0f06;
  background: #f4efe2;
}

.sales-page .receive .section-head h2,
.sales-page .receive .feature-card h3,
.sales-page .receive .eyebrow {
  color: #1e0f06 !important;
}

.sales-page .receive .section-head p,
.sales-page .receive .feature-card p {
  color: rgba(30, 15, 6, .76) !important;
}

.sales-page .receive .feature-card {
  background: #fffaf0;
  border-color: rgba(30, 15, 6, .14);
  box-shadow: 0 18px 42px rgba(30, 15, 6, .08);
}

.sales-page .receive .feature-card:hover {
  background: #fffaf0;
  border-color: rgba(30, 15, 6, .24);
}

.sales-page .receive .feature-ico {
  color: #f4efe2;
  background: #735a45;
}

.sales-page .turn {
  background: #f4efe2;
}

.sales-page .turn-card {
  max-width: 760px;
  padding: 30px 0 30px 28px;
}

.sales-page .turn-card h2 {
  max-width: 680px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
}

.sales-page .turn-card p {
  max-width: 620px;
  margin-top: 18px;
}

@media (max-width: 760px) {
  .sales-page .section {
    padding: 48px 0;
  }

  .sales-page .sales-hook {
    min-height: auto;
    padding-top: 44px !important;
    padding-bottom: 36px;
  }

  .sales-page .section-head {
    margin-bottom: 24px;
  }

  .sales-page .section-head h2,
  .sales-page .offer-card h2,
  .sales-page .turn-card h2,
  .sales-page .cta-inner h2 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.5vw, 2.45rem);
    line-height: 1.12;
    overflow-wrap: normal;
    word-break: normal;
  }

  .sales-page .lead,
  .sales-page .offer-desc,
  .sales-page .turn-card p,
  .sales-page .cta-price,
  .sales-page .identify-note,
  .sales-page .example-copy > p {
    font-size: .98rem;
    line-height: 1.58;
  }

  .sales-page .eyebrow {
    font-size: .68rem;
    letter-spacing: .12em;
    overflow-wrap: anywhere;
  }

  .sales-page .sales-hook .btn {
    margin-top: 32px;
  }

  .sales-page .feature-card h3,
  .sales-page .id-card h3,
  .sales-page .step h3 {
    font-size: 1.08rem !important;
    line-height: 1.22;
  }

  .sales-page .feature-card,
  .sales-page .id-card,
  .sales-page .step {
    padding: 18px;
  }

  .sales-page .turn-card {
    margin: 0;
    padding: 22px 0 22px 18px;
    border-left-width: 1px;
  }

  .sales-page .turn-card h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.15;
  }

  .sales-page .turn-card p {
    margin-top: 14px;
    font-size: .98rem;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .sales-page .section-head h2,
  .sales-page .offer-card h2,
  .sales-page .turn-card h2,
  .sales-page .cta-inner h2 {
    font-size: clamp(1.55rem, 7.6vw, 2.05rem);
  }

  .sales-page .receive .section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.15rem);
  }
}
