/* ===== Vamos Falar de Perfume — landing V2 premium (mobile-first) ===== */

:root {
  --roxo: #3a1d52;
  --roxo-2: #55307a;
  --roxo-3: #8a5fc9;
  --gold: #c9a15e;
  --gold-2: #e3c28c;
  --champagne: #f3e5cf;
  --rose: #f5e6e6;
  --off: #faf6f1;
  --ink: #241b2b;
  --ink-soft: #574a63;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 12px 34px rgba(58, 29, 82, .12);
  --shadow-hover: 0 22px 48px rgba(58, 29, 82, .22);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { width: min(1120px, 100% - 2.5rem); margin-inline: auto; }

/* Fraunces em tamanho de display para todos os títulos serifados */
h1, h2, h3, .plan__price strong, .step__num {
  font-variation-settings: "opsz" 144;
}

/* ---------- Botões ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 .82rem var(--sans);
  letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 4px;
  padding: .95rem 1.9rem; cursor: pointer; text-decoration: none;
  transition: transform .25s cubic-bezier(.22,.9,.36,1), box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  min-height: 48px;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px) scale(.98); }

.btn--primary {
  background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-2) 100%);
  color: var(--white); box-shadow: var(--shadow);
}
.btn--primary:hover { box-shadow: 0 16px 38px rgba(58,29,82,.35), 0 0 0 1px var(--gold-2); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--roxo); box-shadow: 0 10px 28px rgba(201,161,94,.35);
}
.btn--gold:hover { box-shadow: 0 16px 40px rgba(201,161,94,.5); }
.btn--outline { background: transparent; color: var(--roxo); border-color: var(--gold); }
.btn--outline:hover { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--roxo); border-color: transparent; }
.btn--ghost { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); border-color: var(--gold-2); }
.btn--light { background: var(--white); color: var(--roxo); }
.btn--light:hover { background: var(--champagne); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); }
.btn--outline { border-width: 1.5px; }
.btn--ghost, .btn--ghost-light { border-width: 1.5px; }
.btn--lg { padding: 1.15rem 2.4rem; font-size: .88rem; width: 100%; }
.btn--block { width: 100%; }
.btn--nav { padding: .6rem 1.2rem; min-height: 40px; font-size: .74rem; }

@media (min-width: 640px) { .btn--lg { width: auto; } }

/* ---------- Navegação ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(250, 246, 241, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,161,94,.25);
}
.nav__inner {
  width: min(1120px, 100% - 1.5rem); margin-inline: auto;
  display: flex; align-items: center; gap: 1rem;
  padding: .55rem 0;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--roxo); }
.nav__brand-logo { width: 46px; height: 40px; object-fit: contain; }
.nav__brand-name { font: 800 .7rem/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; }
.nav__links { display: none; gap: 1.5rem; margin-left: auto; }
.nav__links a {
  position: relative; color: var(--ink-soft); text-decoration: none;
  font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--roxo); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.nav__burger {
  display: flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 42px; height: 42px; padding: 10px;
  background: none; border: none; cursor: pointer;
}
.nav__burger span { height: 2px; background: var(--roxo); border-radius: 2px; transition: .2s; }
.nav__mobile {
  display: none; flex-direction: column; padding: .5rem 1.25rem 1rem;
  border-top: 1px solid rgba(201,161,94,.2);
}
.nav__mobile.open { display: flex; }
.nav__mobile a { padding: .7rem 0; color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 1px solid rgba(58,29,82,.06); }

@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__actions { margin-left: 0; }
  .nav__burger, .nav__mobile { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: var(--white);
  padding: 8.5rem 0 5rem;
  background: linear-gradient(150deg, #2c1440 0%, var(--roxo) 45%, var(--roxo-2) 100%);
}
.hero__photo {
  position: absolute; inset: 0;
  background: url("assets/foto-03.jpg") center 22% / cover no-repeat;
  opacity: .92;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(32,13,50,.55) 0%, rgba(44,20,64,.72) 55%, rgba(44,20,64,.94) 100%);
}
.hero__notes { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.sparkle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,194,140,.95) 0%, rgba(227,194,140,0) 70%);
  animation: floatUp linear infinite;
}
.sparkle--1 { width: 10px; height: 10px; left: 12%; bottom: 8%;  animation-duration: 11s; }
.sparkle--2 { width: 6px;  height: 6px;  left: 30%; bottom: 4%;  animation-duration: 14s; animation-delay: 2s; }
.sparkle--3 { width: 12px; height: 12px; left: 58%; bottom: 10%; animation-duration: 12s; animation-delay: 1s; }
.sparkle--4 { width: 7px;  height: 7px;  left: 76%; bottom: 6%;  animation-duration: 15s; animation-delay: 4s; }
.sparkle--5 { width: 9px;  height: 9px;  left: 90%; bottom: 12%; animation-duration: 13s; animation-delay: 3s; }
.sparkle--6 { width: 5px;  height: 5px;  left: 45%; bottom: 2%;  animation-duration: 16s; animation-delay: 6s; }
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: .9; }
  85%  { opacity: .35; }
  100% { transform: translateY(-78vh) translateX(24px); opacity: 0; }
}

.hero__content { position: relative; z-index: 3; }
.hero__selo {
  display: inline-flex; align-items: center; gap: .9rem;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 1.4rem;
}
.hero__selo::before {
  content: ""; width: 42px; height: 1px; background: var(--gold-2);
}
.hero__title {
  font: 500 clamp(2.2rem, 6.5vw, 4rem)/1.06 var(--serif);
  font-variation-settings: "opsz" 144;
  letter-spacing: -.015em;
  max-width: 19ch; margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(20,8,32,.45);
}
.hero__title em { font-style: italic; font-weight: 600; color: var(--gold-2); letter-spacing: 0; }
.hero__sub { max-width: 54ch; font-size: 1.05rem; font-weight: 500; opacity: .95; margin-bottom: 1.9rem; text-shadow: 0 1px 12px rgba(20,8,32,.5); }
.hero__ctas { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.6rem; }
.hero__ctas--center { align-items: center; }
.hero__trust { font-size: .88rem; opacity: .9; }
.hero__trust--light { text-align: center; margin-top: 1.4rem; }
.hero__obs { font-size: .8rem; opacity: .7; margin-top: .5rem; max-width: 60ch; }

@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; }
  .hero { padding: 10rem 0 7rem; }
}
@media (min-width: 980px) {
  .hero { padding: 11rem 0 8.5rem; }
  .hero__photo { background-position: right 18%; }
  .hero__photo::after {
    background:
      linear-gradient(90deg, rgba(36,15,56,.96) 0%, rgba(40,17,60,.82) 42%, rgba(44,20,64,.35) 75%, rgba(44,20,64,.25) 100%);
  }
}

/* ---------- Seções ---------- */
.section { padding: 4.5rem 0; position: relative; }
.section--tinted { background: linear-gradient(180deg, var(--rose) 0%, var(--champagne) 100%); }
.section__title {
  font: 500 clamp(1.65rem, 4.4vw, 2.7rem)/1.12 var(--serif);
  font-variation-settings: "opsz" 144;
  letter-spacing: -.015em;
  color: var(--roxo); text-align: center;
  max-width: 26ch; margin: 0 auto 1.2rem;
}
.section__title--left { text-align: left; margin-inline: 0; }
.section__title--light { color: var(--white); }
.section__kicker {
  display: flex; align-items: center; justify-content: center; gap: .9rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section__kicker::before, .section__kicker::after {
  content: ""; width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section__kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section__kicker--left { justify-content: flex-start; }
.section__kicker--left::before { display: none; }
.section__text { color: var(--ink-soft); max-width: 62ch; margin: 0 auto .9rem; }
.section__text--center { text-align: center; }
.section__text--light { color: rgba(255,255,255,.92); }
.section__cta { text-align: center; margin-top: 2.2rem; }

.divider {
  width: 72px; height: 2px; margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Cards de benefícios ---------- */
.cards3 { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
.card {
  position: relative;
  background: var(--white); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--gold);
}
.card h3 { font: 500 1.35rem var(--serif); letter-spacing: -.01em; color: var(--roxo); margin-bottom: .55rem; }
.card h3 em, .step h3 em { font-style: italic; }
.card p { color: var(--ink-soft); font-size: .95rem; }
@media (min-width: 760px) { .cards3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Passos ---------- */
.steps { list-style: none; display: grid; gap: 1.1rem; margin-top: 2.2rem; }
.step {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.step__num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--roxo), var(--roxo-2));
  color: var(--gold-2);
  font: 700 1.15rem var(--serif);
  border: 1px solid var(--gold-2);
}
.step h3 { font: 500 1.25rem var(--serif); letter-spacing: -.01em; color: var(--roxo); margin-bottom: .25rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }
@media (min-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }

/* ---------- Planos ---------- */
.plans { display: grid; gap: 1.6rem; margin-top: 2.6rem; }
.plan {
  position: relative;
  background: var(--white); border-radius: var(--radius);
  padding: 2.2rem 1.7rem 1.8rem; box-shadow: var(--shadow);
  border: 2px solid rgba(201,161,94,.18);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.22,.9,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffdf8 0%, var(--white) 30%);
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--roxo);
  font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .38rem 1rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(201,161,94,.4);
}
.plan__name { font: 500 1.9rem var(--serif); letter-spacing: -.01em; color: var(--roxo); }
.plan__price { margin: .4rem 0 .3rem; }
.plan__price strong { font: 600 2.3rem var(--serif); letter-spacing: -.02em; color: var(--ink); }
.plan__price span { color: var(--ink-soft); font-size: .95rem; }
.plan__tagline { color: var(--ink-soft); font: italic 500 1rem var(--serif); margin-bottom: 1.1rem; }
.plan__list { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.6rem; flex: 1; }
.plan__list li {
  position: relative; padding-left: 1.5rem;
  color: var(--ink-soft); font-size: .92rem;
}
.plan__list li::before {
  content: "◆"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .7rem; line-height: 2.2;
}
.plans__note { text-align: center; font-size: .84rem; color: var(--ink-soft); margin-top: 1.8rem; }
@media (min-width: 880px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .plan--featured { transform: scale(1.03); }
  .plan--featured:hover { transform: scale(1.03) translateY(-8px); }
}

/* ---------- Comparação ---------- */
.compare__title { font: 500 1.55rem var(--serif); letter-spacing: -.01em; color: var(--roxo); text-align: center; margin: 3rem 0 1.3rem; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow); }
.compare { width: 100%; min-width: 560px; border-collapse: collapse; background: var(--white); font-size: .9rem; }
.compare th, .compare td { padding: .9rem 1.05rem; text-align: left; border-bottom: 1px solid rgba(201,161,94,.18); }
.compare thead th { background: linear-gradient(135deg, var(--roxo), var(--roxo-2)); color: var(--gold-2); font-weight: 600; }
.compare tbody tr { transition: background .2s ease; }
.compare tbody tr:hover { background: #fdf8f0; }
.compare tbody td:first-child { font-weight: 600; color: var(--roxo); }

/* ---------- Ciclos / 12 meses ---------- */
.journey { display: grid; gap: 2.2rem; align-items: center; margin-top: 2.2rem; }
.journey__media { position: relative; }
.journey__media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%;
  transition: transform .5s ease;
}
.journey__media:hover img { transform: scale(1.02); }
.journey__media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border: 2px solid var(--gold-2); border-radius: var(--radius);
  z-index: -1;
}
.cycle { display: grid; gap: 1rem; }
.cycle__item {
  background: var(--white); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.35rem 1.45rem; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.cycle__item:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.cycle__item h3 { font: 500 1.18rem var(--serif); letter-spacing: -.01em; color: var(--roxo); margin-bottom: .3rem; }
.cycle__item p { color: var(--ink-soft); font-size: .95rem; }
.transparency {
  margin-top: 2rem; padding: 1.25rem 1.45rem;
  background: rgba(255,255,255,.75); border-radius: var(--radius);
  font-size: .88rem; color: var(--ink-soft);
  border: 1px dashed var(--gold);
}
@media (min-width: 980px) {
  .journey { grid-template-columns: 2fr 3fr; }
}

/* ---------- Entrada do quiz ---------- */
.quiz-entry {
  background:
    radial-gradient(circle at 85% 15%, rgba(201,161,94,.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(138,95,201,.14), transparent 45%),
    linear-gradient(160deg, #f6edfa, var(--off));
}

/* ---------- Curadoria ---------- */
.curator { display: grid; gap: 2.2rem; align-items: center; }
.curator__media { position: relative; }
.curator__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%;
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .5s ease;
}
.curator__media:hover img { transform: scale(1.02); }
.curator__media::after {
  content: ""; position: absolute; inset: -14px 14px 14px -14px;
  border: 2px solid var(--gold-2); border-radius: var(--radius);
  z-index: -1;
}
.curator__text .btn { margin-top: .9rem; }
@media (min-width: 880px) { .curator { grid-template-columns: 2fr 3fr; gap: 3.2rem; } }

/* ---------- Vídeo ---------- */
.video-block { margin-top: 3rem; text-align: center; }
.video-block__frame {
  position: relative;
  max-width: 420px; margin: 1.4rem auto 0;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 3px solid var(--white);
  outline: 1px solid var(--gold-2);
}
.video-block__frame video { width: 100%; display: block; aspect-ratio: 9 / 16; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 2.2rem auto 0; display: grid; gap: .7rem; }
.faq__item {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  padding: 0 1.25rem; overflow: hidden;
  border-left: 3px solid transparent;
  transition: border-color .25s ease;
}
.faq__item:hover, .faq__item[open] { border-left-color: var(--gold); }
.faq__item summary {
  cursor: pointer; list-style: none;
  font-weight: 600; color: var(--roxo);
  padding: 1.08rem 1.8rem 1.08rem 0;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--gold);
  transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { color: var(--ink-soft); font-size: .95rem; padding-bottom: 1.15rem; }

/* ---------- CTA final ---------- */
.final-cta {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #2c1440 0%, var(--roxo) 60%, var(--roxo-2) 100%);
}
.final-cta__photo {
  position: absolute; inset: 0;
  background: url("assets/foto-01.jpg") center 30% / cover no-repeat;
  opacity: .26;
}
.final-cta__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(44,20,64,.55), rgba(36,15,56,.88));
}
.final-cta .container { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.footer { background: #251134; color: rgba(255,255,255,.75); padding: 2.4rem 0; border-top: 1px solid rgba(201,161,94,.35); }
.footer__inner { text-align: center; display: grid; gap: .45rem; }
.footer__brand { font: italic 500 1.25rem var(--serif); color: var(--gold-2); letter-spacing: .01em; }
.footer__legal { font-size: .82rem; }
.footer__links { font-size: .82rem; }
.footer__links a { color: rgba(255,255,255,.85); }

/* ---------- Reveal no scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.9,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .sparkle { display: none; }
  .btn::after { display: none; }
}

/* ---------- Overlay (quiz + checkout) ---------- */
.overlay {
  position: fixed; inset: 0; z-index: 100;
  background:
    radial-gradient(circle at 90% 5%, rgba(201,161,94,.12), transparent 40%),
    var(--off);
  overflow-y: auto;
}
.overlay__inner {
  width: min(640px, 100% - 2.2rem);
  margin-inline: auto;
  min-height: 100%;
  display: flex; flex-direction: column;
  padding: 1rem 0 2.5rem;
}
.overlay__top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.overlay__close {
  margin-left: auto; background: none; border: none; cursor: pointer;
  font-size: 1.9rem; line-height: 1; color: var(--ink-soft);
  padding: .4rem .6rem;
  transition: color .2s, transform .2s;
}
.overlay__close:hover { color: var(--roxo); transform: rotate(90deg); }
.progress { flex: 1; height: 6px; border-radius: 999px; background: rgba(58,29,82,.12); overflow: hidden; }
.progress__bar { height: 100%; width: 0; background: linear-gradient(90deg, var(--roxo-3), var(--gold)); border-radius: 999px; transition: width .4s cubic-bezier(.22,.9,.36,1); }

.qq { animation: qfade .4s cubic-bezier(.22,.9,.36,1); }
@keyframes qfade { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
.qq__num { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.qq__title { font: 500 clamp(1.45rem, 4.8vw, 2rem)/1.18 var(--serif); letter-spacing: -.01em; color: var(--roxo); margin-bottom: 1.4rem; }
.qq__opts { display: grid; gap: .75rem; }
.opt {
  text-align: left; background: var(--white);
  border: 2px solid rgba(58,29,82,.1); border-radius: 14px;
  padding: 1rem 1.2rem; cursor: pointer;
  font: 500 1rem var(--sans); color: var(--ink);
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
  min-height: 56px;
}
.opt:hover { border-color: var(--gold); transform: translateX(4px); box-shadow: 0 6px 18px rgba(58,29,82,.1); }
.opt.selected { border-color: var(--roxo); background: #f6edfa; box-shadow: 0 6px 18px rgba(58,29,82,.14); }
.qq__skip {
  margin-top: 1rem; background: none; border: none; cursor: pointer;
  color: var(--ink-soft); text-decoration: underline; font-size: .9rem;
}
.qq__field { margin-bottom: 1.1rem; }
.qq__field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--roxo); }
.qq__field textarea {
  width: 100%; min-height: 84px; resize: vertical;
  border: 2px solid rgba(58,29,82,.12); border-radius: 12px;
  padding: .8rem 1rem; font: 400 1rem var(--sans); color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.qq__field textarea:focus { outline: none; border-color: var(--gold); }
.qq__hint { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.2rem; font-style: italic; }
.qq__next { margin-top: 1.4rem; }

/* ---------- Resultado ---------- */
.result__selo { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.result__title { font: 500 clamp(1.6rem, 5.2vw, 2.4rem)/1.14 var(--serif); letter-spacing: -.015em; color: var(--roxo); margin-bottom: 1rem; }
.result__text { color: var(--ink-soft); margin-bottom: 1rem; }
.result__reco {
  background: linear-gradient(180deg, #fffdf8, var(--white));
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem; margin: 1.5rem 0;
  border: 2px solid var(--gold);
}
.result__reco strong { color: var(--roxo); }
.result__ctas { display: grid; gap: .8rem; margin-top: 1.4rem; }
.result__compare { text-align: center; margin-top: 1.1rem; }
.result__compare a { color: var(--ink-soft); font-size: .88rem; }

/* ---------- Checkout (resumo) ---------- */
.chk__title { font: 500 clamp(1.5rem, 4.8vw, 2.1rem)/1.16 var(--serif); letter-spacing: -.01em; color: var(--roxo); margin-bottom: 1.2rem; }
.chk__summary {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem; margin-bottom: 1.4rem;
  border-top: 3px solid var(--gold);
}
.chk__summary dl { display: grid; gap: .55rem; }
.chk__summary .row { display: flex; justify-content: space-between; gap: 1rem; font-size: .93rem; }
.chk__summary dt { color: var(--ink-soft); }
.chk__summary dd { font-weight: 600; text-align: right; }
.chk__pending { color: #a1642a; font-weight: 600; }
.chk__methods { display: grid; gap: .7rem; margin-bottom: 1.3rem; }
.chk__method {
  display: flex; align-items: center; gap: .8rem;
  background: var(--white); border: 2px solid rgba(58,29,82,.12);
  border-radius: 14px; padding: 1rem 1.2rem; cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.chk__method:hover { border-color: var(--gold); }
.chk__method.selected { border-color: var(--roxo); background: #f6edfa; box-shadow: 0 6px 18px rgba(58,29,82,.12); }
.chk__method input { accent-color: var(--roxo); width: 20px; height: 20px; }
.chk__method div strong { display: block; font-size: .98rem; }
.chk__method div span { font-size: .82rem; color: var(--ink-soft); }
.chk__checks { display: grid; gap: .8rem; margin-bottom: 1.5rem; }
.chk__check { display: flex; gap: .7rem; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); cursor: pointer; }
.chk__check input { margin-top: .2rem; accent-color: var(--roxo); width: 18px; height: 18px; flex: 0 0 auto; }
.chk__micro { font-size: .8rem; color: var(--ink-soft); margin-top: 1rem; text-align: center; }

/* ---------- Confirmação ---------- */
.done { text-align: center; padding-top: 2.5rem; }
.done__icon {
  width: 80px; height: 80px; margin: 0 auto 1.4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--roxo), var(--roxo-2));
  color: var(--gold-2); border: 2px solid var(--gold-2);
  display: grid; place-items: center; font-size: 2.2rem;
  animation: pop .5s cubic-bezier(.22,.9,.36,1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.done__title { font: 500 2rem var(--serif); letter-spacing: -.015em; color: var(--roxo); margin-bottom: .8rem; }
.done__text { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 1.6rem; }
