:root {
  --rose: #C4736B;
  --lavender: #9B89B4;
  --sage: #7FA87A;
  --gold: #C9A96E;
  --cream: #F5F0EB;
  --plum: #3D1F2E;
  --paper: #FFFCF8;
  --muted: #735F69;
  --line: rgba(61, 31, 46, .12);
  --shadow: 0 24px 70px rgba(61, 31, 46, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--plum);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
}
button, input { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 40px)); }
.hidden { display: none !important; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--plum); color: white; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

h1, h2, h3 { font-family: "Cormorant Garamond", serif; line-height: 1.06; margin: 0 0 18px; }
h1 { font-size: clamp(3rem, 7vw, 5.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -.025em; }
h3 { font-size: 1.75rem; }
p { margin: 0 0 18px; }
.eyebrow { display: inline-block; color: var(--rose); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; margin-bottom: 16px; }
.eyebrow.light { color: #F3D7B0; }
.center { text-align: center; }
.section-heading { max-width: 760px; margin: 0 auto 52px; }
.section-heading p { color: var(--muted); }

.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(255,252,248,.86); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--cream); color: var(--rose); border: 1px solid rgba(196,115,107,.25); }
.brand strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.45rem; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: .68rem; margin-top: 4px; }
.header-cta { text-decoration: none; color: white; background: var(--plum); padding: 11px 18px; border-radius: 999px; font-size: .82rem; font-weight: 700; }

.hero { padding: 96px 0 112px; background:
  radial-gradient(circle at 18% 12%, rgba(196,115,107,.18), transparent 28%),
  radial-gradient(circle at 90% 30%, rgba(155,137,180,.16), transparent 24%),
  linear-gradient(180deg, var(--cream), var(--paper)); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 78px; align-items: center; }
.hero-lead { max-width: 680px; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 18px; margin: 32px 0 26px; flex-wrap: wrap; }
.microcopy { color: var(--muted); font-size: .82rem; }
.button { border: 0; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--rose); box-shadow: 0 12px 30px rgba(196,115,107,.25); }
.button-primary:hover { background: #B8635B; }
.button-ghost { color: var(--plum); background: transparent; border: 1px solid var(--line); }
.button-gold { background: var(--gold); color: var(--plum); text-align: center; }

.button-products {
  background: transparent;
  color: var(--plum);
  border: 1px solid rgba(61, 31, 46, .22);
  text-align: center;
}
.button-products:hover {
  background: var(--cream);
  border-color: var(--gold);
}
.trust-list { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; padding: 0; margin: 0; color: var(--muted); font-size: .8rem; }
.trust-list li::before { content: "✦"; color: var(--sage); margin-right: 7px; }

.hero-card { position: relative; min-height: 500px; border-radius: 44px; background: linear-gradient(145deg, rgba(255,255,255,.85), rgba(245,240,235,.58)); border: 1px solid rgba(255,255,255,.9); box-shadow: var(--shadow); }
.decor { position: absolute; border-radius: 50%; filter: blur(2px); }
.decor-one { width: 210px; height: 210px; background: rgba(196,115,107,.22); top: 38px; right: 36px; }
.decor-two { width: 175px; height: 175px; background: rgba(127,168,122,.2); bottom: 42px; left: 28px; }
.mini-card { position: absolute; background: rgba(255,255,255,.9); border: 1px solid rgba(61,31,46,.08); border-radius: 24px; box-shadow: 0 18px 45px rgba(61,31,46,.11); }
.mini-card-main { width: min(330px, 82%); left: 50%; top: 50%; transform: translate(-50%,-50%); padding: 30px; text-align: center; }
.mini-label { color: var(--muted); font-size: .78rem; }
.mini-ring { width: 144px; height: 144px; border-radius: 50%; display: grid; place-items: center; margin: 24px auto; background: conic-gradient(var(--rose) 72%, var(--cream) 0); position: relative; }
.mini-ring::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: white; }
.mini-ring strong { position: relative; z-index: 2; font-size: 2rem; font-family: "Cormorant Garamond", serif; }
.mini-card-main p { color: var(--muted); font-size: .86rem; }
.mini-card-note { right: -20px; bottom: 54px; width: 220px; padding: 18px 20px; }
.mini-card-note span { display: block; color: var(--rose); font-size: .7rem; text-transform: uppercase; font-weight: 700; letter-spacing: .12em; }
.mini-card-note strong { display: block; margin-top: 8px; font-family: "Cormorant Garamond", serif; font-size: 1.35rem; line-height: 1.08; }
.flower { position: absolute; font-size: 4rem; color: var(--gold); opacity: .55; }
.flower-a { top: 50px; left: 28px; transform: rotate(-18deg); }
.flower-b { bottom: 20px; right: 24px; color: var(--lavender); transform: rotate(18deg); }

.quiz-section { padding: 110px 0; background: white; }
.quiz-shell, .result-card { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper); overflow: hidden; }
.quiz-topbar { padding: 24px 30px; border-bottom: 1px solid var(--line); background: var(--cream); }
.quiz-topbar > div:first-child { display: flex; justify-content: space-between; gap: 20px; font-size: .8rem; color: var(--muted); }
.progress-track { height: 8px; border-radius: 999px; background: rgba(61,31,46,.08); margin-top: 14px; overflow: hidden; }
.progress-bar { height: 100%; width: 10%; background: linear-gradient(90deg, var(--rose), var(--lavender)); border-radius: inherit; transition: width .35s ease; }
#quizForm { padding: 42px 30px 30px; }
.question-kicker { color: var(--rose); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.question-title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.question-help { color: var(--muted); }
.options-grid { display: grid; gap: 13px; margin-top: 28px; }
.option-card { display: flex; align-items: flex-start; gap: 14px; border: 1px solid var(--line); padding: 18px 20px; border-radius: 16px; cursor: pointer; background: white; transition: border .2s ease, background .2s ease, transform .2s ease; }
.option-card:hover { transform: translateY(-1px); border-color: rgba(196,115,107,.45); }
.option-card.selected { border-color: var(--rose); background: rgba(196,115,107,.07); }
.option-card input { margin-top: 5px; accent-color: var(--rose); }
.option-card strong { display: block; font-size: .95rem; }
.option-card span { display: block; font-size: .78rem; color: var(--muted); margin-top: 3px; }
.text-input { width: 100%; border: 1px solid var(--line); border-radius: 16px; min-height: 58px; padding: 0 18px; font-size: 1rem; outline: none; background: white; }
.text-input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196,115,107,.12); }
.quiz-controls { display: flex; justify-content: space-between; gap: 18px; margin-top: 34px; }
.form-error { min-height: 22px; color: #9C3C3C; font-size: .8rem; margin: 14px 0 0; }

.result-card { padding: 42px; }
.result-badge { display: inline-flex; padding: 8px 13px; background: rgba(127,168,122,.13); color: #4F734B; border-radius: 999px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 24px; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.result-summary { color: var(--muted); font-size: 1.02rem; }
.result-score { margin-top: 28px; padding: 20px; border-radius: 18px; background: var(--cream); }
.result-score > span { display: block; color: var(--muted); font-size: .76rem; }
.result-score > strong { display: block; font-size: 2.2rem; font-family: "Cormorant Garamond", serif; }
.score-track { height: 9px; background: rgba(61,31,46,.08); border-radius: 999px; overflow: hidden; }
.score-track div { height: 100%; width: 0; background: linear-gradient(90deg, var(--rose), var(--sage)); transition: width .7s ease; }
.result-insights { display: grid; gap: 16px; }
.result-insights > div { padding: 20px; border-radius: 18px; border: 1px solid var(--line); background: white; }
.result-insights h3 { font-size: 1.35rem; margin-bottom: 8px; }
.result-insights p { color: var(--muted); font-size: .86rem; margin: 0; }
.result-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.text-button { border: 0; background: transparent; color: var(--muted); text-decoration: underline; cursor: pointer; }

.bridge-section, .benefits-section, .process-section, .faq-section { padding: 110px 0; }
.bridge-section { background: var(--cream); }
.bridge-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.bridge-copy p { color: var(--muted); }
.quote-card { background: var(--plum); color: white; border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow); }
.quote-mark { color: var(--gold); font-size: 5rem; line-height: .6; font-family: serif; }
.quote-card p { font-family: "Cormorant Garamond", serif; font-size: 2rem; line-height: 1.15; }
.quote-card strong { color: #E8D8E0; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }

.offer-section { padding: 36px 0 110px; background: var(--cream); }
.offer-card { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; padding: 52px; border-radius: 36px; background: var(--plum); color: white; box-shadow: var(--shadow); }
.offer-copy > p { color: #DDCFD6; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li { color: #F4ECF0; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 800; margin-right: 10px; }
.price-box { align-self: center; background: white; color: var(--plum); padding: 34px; border-radius: 24px; text-align: center; }
.price-box > span { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.installment-price { margin: 15px 0 5px; }
.installment-price small { display:block; color:var(--muted); font-size:.82rem; font-weight:600; }
.installment-price strong { display:block; font-family:"Cormorant Garamond",serif; font-size:clamp(3.15rem,6vw,4.65rem); line-height:.95; letter-spacing:-.035em; color:var(--plum); }
.cash-price { margin:8px 0 12px !important; font-size:.72rem !important; }
.price-box p, .price-box > small { color: var(--muted); font-size: .76rem; }
.price-box .button { width: 100%; margin: 12px 0; }

.cards-grid, .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card, .process-step { border: 1px solid var(--line); border-radius: 22px; padding: 30px; background: white; }
.info-card > span { color: var(--rose); font-size: .72rem; font-weight: 800; }
.info-card h3, .process-step h3 { margin-top: 18px; }
.info-card p, .process-step p { color: var(--muted); font-size: .86rem; margin: 0; }

.for-you-section { padding: 110px 0; background: linear-gradient(135deg, rgba(155,137,180,.14), rgba(196,115,107,.11)); }
.for-you-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.situations { display: grid; gap: 12px; }
.situations p { padding: 18px 20px; border-radius: 16px; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.9); margin: 0; }
.situations p::before { content: "✦"; color: var(--rose); margin-right: 10px; }

.process-section { background: white; }
.process-step strong { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); color: var(--rose); }
.faq-section { background: var(--cream); }
.faq-list { display: grid; gap: 12px; }
details { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 700; }
details p { color: var(--muted); margin: 14px 0 0; font-size: .88rem; }
.final-cta { padding: 100px 0; background: var(--plum); color: white; }
.final-cta-inner { text-align: center; max-width: 840px; }
.final-cta-inner p { color: #DDCFD6; }
.final-cta-inner .button { margin-top: 18px; }
.site-footer { padding: 46px 0; background: #2D1722; color: white; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-inner p { color: #C8B8C0; font-size: .78rem; margin: 5px 0; }
.disclaimer { max-width: 520px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero-grid, .bridge-grid, .offer-card, .for-you-grid, .result-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-card { min-height: 430px; }
  .mini-card-note { right: 16px; }
  .cards-grid, .process-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 36px; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 24px, 1160px); }
  .site-header { position: static; }
  .header-inner { min-height: 68px; }
  .brand small { display: none; }
  .header-cta { font-size: .72rem; padding: 9px 13px; }
  .hero { padding: 62px 0 78px; }
  .hero-grid { gap: 40px; }
  h1 { font-size: 3.15rem; }
  .hero-card { min-height: 380px; border-radius: 28px; }
  .mini-card-main { padding: 22px; }
  .mini-ring { width: 118px; height: 118px; }
  .mini-card-note { width: 190px; bottom: 24px; }
  .quiz-section, .bridge-section, .benefits-section, .for-you-section, .process-section, .faq-section { padding: 76px 0; }
  .quiz-topbar { padding: 20px; }
  #quizForm { padding: 30px 20px 20px; }
  .quiz-controls { flex-direction: column-reverse; }
  .quiz-controls .button { width: 100%; }
  .result-card { padding: 26px 20px; }
  .result-actions { align-items: stretch; flex-direction: column; }
  .offer-card { padding: 28px 20px; border-radius: 26px; }
  .installment-price strong { font-size: 3.55rem; }
  .quote-card { padding: 30px 24px; }
  .quote-card p { font-size: 1.65rem; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Captura de dados e consentimentos */
.lead-card { border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--paper); overflow: hidden; }
.lead-card-header { padding: 38px 34px 28px; background: linear-gradient(135deg, rgba(196,115,107,.10), rgba(155,137,180,.10)); border-bottom: 1px solid var(--line); }
.lead-card-header h2 { margin: 10px 0 10px; }
.lead-card-header p { color: var(--muted); max-width: 680px; margin: 0; }
#leadForm { padding: 34px; }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--plum); }
.field small { color: var(--muted); font-weight: 500; }
.field input { width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 14px; padding: 0 16px; font: inherit; background: white; outline: none; }
.field input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196,115,107,.12); }
.field:last-child { max-width: 180px; }
.consent-list { display: grid; gap: 14px; margin: 28px 0; }
.consent-row { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); font-size: .8rem; line-height: 1.55; cursor: pointer; }
.consent-row input { margin-top: 4px; accent-color: var(--rose); flex: 0 0 auto; }
.consent-row a { color: var(--rose); font-weight: 700; }
.lead-submit { width: 100%; }
.privacy-note { color: var(--muted); font-size: .72rem; text-align: center; margin: 14px 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.hidden { display: none !important; }

@media (max-width: 640px) {
  .lead-card-header, #leadForm { padding: 26px 20px; }
  .lead-grid { grid-template-columns: 1fr; }
  .field:last-child { max-width: none; }
  .consent-row { font-size: .76rem; }
}
