/* ===== Tokens (tema claro apenas) ===== */
:root {
  --paper: #F6F5FB;
  --paper-raised: #FFFFFF;
  --ink: #1C1B29;
  --ink-soft: #6E6B85;
  --sage: #6C63FF;
  --sage-deep: #4B3FD1;
  --ocre: #FF9257;
  --denim: #2FA8E0;
  --line: #E7E5F2;
  --alert: #E24C3F;
  --tint-warm: #FBE9DD;
  --tint-green: #ECE9FF;
  --tint-chip: #FFF0E4;
  --tint-schedule: #F1EFFA;

  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(28,27,41,.06);
  --shadow-md: 0 12px 34px rgba(28,27,41,.10);
  --shadow-lg: 0 26px 60px rgba(75,63,209,.16);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; line-height: 1.12; font-weight: 600; }
p { margin: 0; }
img { max-width: 100%; display: block; }
em { font-style: italic; color: var(--sage-deep); }
s { opacity: .55; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 720px; }
.center { text-align: center; }

/* ===== Botões ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 8px 20px rgba(108,99,255,.30);
}
.btn-primary:hover { background: var(--sage-deep); box-shadow: 0 10px 26px rgba(75,63,209,.34); }
.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--sage); background: var(--tint-green); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 30px; font-size: 16.5px; }
.btn-block { display: block; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,251,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); }
.brand-mark { color: var(--sage); font-size: 20px; }
.brand-logo { width: 30px; height: 30px; border-radius: 8px; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.m-brand-logo { width: 16px; height: 16px; border-radius: 4px; display: inline-block; vertical-align: -3px; }
.flow-brand-logo { width: 20px; height: 20px; border-radius: 5px; display: inline-block; vertical-align: -4px; }
.footer-logo { width: 48px; height: 48px; border-radius: 12px; display: block; margin: 0 auto; box-shadow: var(--shadow-sm); }
.header-cta { display: none; }

/* ===== Hero ===== */
.hero { padding: 54px 0 40px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--sage-deep); background: var(--tint-green);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { font-size: 46px; font-weight: 600; letter-spacing: -.01em; }
.hero .lead { margin-top: 20px; font-size: 18.5px; color: var(--ink-soft); max-width: 34ch; }
.hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { margin-top: 24px; display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 14px; flex-wrap: wrap; }
.stars { color: var(--ocre); letter-spacing: 2px; }
.proof-chip {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

/* ===== Phone mockup ===== */
.hero-mock { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 290px; height: 590px;
  background: #14131f;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 22px; background: #14131f; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--paper);
  border-radius: 32px;
  padding: 34px 16px 16px;
  overflow: hidden;
}
.m-topbar { display: flex; align-items: center; margin-bottom: 14px; }
.m-brand { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--sage-deep); }
.m-hello {
  background: linear-gradient(135deg, var(--tint-green), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 14px; margin-bottom: 12px;
}
.m-hello-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.m-hello-sub { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.m-next {
  background: var(--paper-raised); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 12px 14px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.m-next-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--sage-deep); font-weight: 700; }
.m-next-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.m-next-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.m-next-area { font-size: 11.5px; color: var(--ink-soft); }
.m-next-hora { font-weight: 700; color: var(--ocre); font-size: 15px; }
.m-quick-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); font-weight: 700; margin-bottom: 8px; }
.m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m-card {
  background: var(--paper-raised); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 8px; text-align: center; box-shadow: var(--shadow-sm);
}
.m-card img { width: 100%; height: 54px; object-fit: contain; border-radius: 6px; }
.m-card span { display: block; font-size: 10.5px; font-weight: 600; margin-top: 5px; color: var(--ink-soft); }

/* ===== Section base ===== */
.section { padding: 68px 0; }
.section-title { font-size: 32px; }
.section-sub { margin-top: 12px; font-size: 17px; color: var(--ink-soft); }
.center.section-sub, .section-sub.center { margin-left: auto; margin-right: auto; max-width: 46ch; }

/* ===== 2. Problema ===== */
.problema { background: var(--paper-raised); }
.compare {
  margin-top: 40px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch;
}
.compare-col {
  border-radius: var(--radius-lg); padding: 26px 24px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.compare-before { background: #FDF0EF; border-color: #F6D9D6; }
.compare-after { background: var(--tint-green); border-color: #D9D4FF; }
.compare-tag { align-self: flex-start; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 999px; margin-bottom: 16px; }
.tag-bad { background: #F6D9D6; color: #B23A2E; }
.tag-good { background: #D9D4FF; color: var(--sage-deep); }
.scatter, .flow { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.scatter li { font-size: 15px; color: #7A3B33; }
.flow li { font-size: 15.5px; color: var(--sage-deep); font-weight: 500; position: relative; padding-left: 2px; }
.flow-brand { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.compare-foot { margin-top: 18px; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.compare-foot.bad { color: #B23A2E; }
.compare-foot.good { color: var(--sage-deep); }
.compare-arrow { align-self: center; font-size: 30px; color: var(--ink-soft); }

/* ===== 3. Produto ===== */
.feature-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; }
.ico-a { background: var(--tint-green); }
.ico-b { background: var(--tint-chip); }
.ico-c { background: #E1F1FB; }
.ico-d { background: var(--tint-warm); }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 15px; }

/* ===== Clube strip ===== */
.clube-strip {
  margin-top: 22px; display: flex; align-items: flex-start; gap: 18px;
  background: var(--tint-warm); border: 1px solid #F3D9C6; border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.clube-ico { font-size: 30px; line-height: 1; }
.clube-strip h3 { font-size: 20px; margin-bottom: 8px; }
.clube-strip p { color: var(--ink); font-size: 15.5px; }
.clube-strip strong { color: #C4622A; }
@media (max-width: 520px) {
  .clube-strip { flex-direction: column; gap: 10px; }
}

/* ===== 4. Como funciona ===== */
.steps { margin-top: 44px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 150px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 22px;
  box-shadow: 0 8px 18px rgba(108,99,255,.28);
}
.step-txt { font-weight: 600; font-size: 16px; }
.step-sep { color: var(--sage); font-size: 24px; font-weight: 700; }
.como-foot { text-align: center; margin-top: 34px; font-family: var(--font-display); font-size: 20px; color: var(--sage-deep); }

/* ===== 5. Kits ===== */
.kits { background: var(--paper-raised); }
/* Faixa de níveis (progressão dos kits) */
.niveis-faixa {
  margin: 26px auto 0; max-width: 620px; text-align: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 20px 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
}
.niveis-tag { font-size: 12.5px; font-weight: 700; color: #fff; padding: 5px 12px; border-radius: 999px; }
.niveis-1 { background: #22C55E; }
.niveis-2 { background: var(--denim); }
.niveis-3 { background: #8B5CF6; }
.niveis-seta { color: var(--ink-soft); font-weight: 700; }
.niveis-txt { flex: 100%; margin-top: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.niveis-txt strong { color: var(--ink); }

.kit-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kit { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.kit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kit img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--tint-warm); }
.kit figcaption { padding: 14px; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: 17px; }

/* ===== CTA Quiz ===== */
.cta-quiz {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #fff; text-align: center;
}
.cta-quiz .section-title { color: #fff; }
.cta-quiz .section-sub { color: rgba(255,255,255,.86); }
.cta-quiz .btn-primary { background: #fff; color: var(--sage-deep); margin-top: 26px; box-shadow: 0 12px 30px rgba(0,0,0,.20); }
.cta-quiz .btn-primary:hover { background: #fff; color: var(--sage); }

/* ===== 7. Oferta ===== */
.offer-card {
  max-width: 560px; margin: 0 auto; background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: 28px; padding: 40px 34px;
  box-shadow: var(--shadow-md); text-align: center;
}
.offer-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 12px; text-align: left; max-width: 380px; margin-left: auto; margin-right: auto; }
.offer-list li { font-size: 16px; color: var(--ink); }
.price { margin: 22px 0 26px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.price-from { color: var(--ink-soft); font-size: 15px; }
.price-now { font-family: var(--font-display); font-weight: 700; font-size: 62px; color: var(--sage-deep); line-height: 1; }
.price-now .cents { font-size: 26px; vertical-align: super; margin-right: 2px; }
.price-note { font-size: 13px; color: var(--ink-soft); }
.offer-secure { margin-top: 14px; font-size: 13px; color: var(--ink-soft); }

/* ===== 8. Garantia ===== */
.guarantee { max-width: 620px; margin: 0 auto; display: flex; align-items: center; gap: 18px; text-align: left; background: var(--tint-green); border: 1px solid #D9D4FF; border-radius: var(--radius-lg); padding: 24px 28px; }
.guarantee-ico { font-size: 38px; }
.guarantee p { font-size: 16px; color: var(--ink); }

/* ===== 9. FAQ ===== */
.faq-list { margin-top: 34px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 4px 20px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--sage); font-size: 22px; font-weight: 400; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 0 16px; color: var(--ink-soft); font-size: 15px; }
.faq-inclui { list-style: none; padding: 0; margin: -6px 0 16px; display: flex; flex-direction: column; gap: 7px; }
.faq-inclui li { color: var(--ink-soft); font-size: 15px; }

/* ===== Footer ===== */
.site-footer { background: var(--paper-raised); border-top: 1px solid var(--line); padding: 40px 0; }
.site-footer .brand-mark { font-size: 26px; }
.site-footer p { color: var(--ink-soft); margin-top: 8px; }
.footer-small { font-size: 13px; }

/* ===== Quiz overlay ===== */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28,27,41,.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.quiz-overlay[hidden] { display: none; }
.quiz-modal {
  position: relative; width: 100%; max-width: 560px;
  background: var(--paper); border-radius: 26px; box-shadow: var(--shadow-lg);
  max-height: 92vh; overflow: hidden; display: flex; flex-direction: column;
}
.quiz-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--tint-green); color: var(--sage-deep); font-size: 15px;
}
.quiz-progress { height: 5px; background: var(--line); }
.quiz-progress-bar { height: 100%; width: 0; background: var(--sage); transition: width .3s ease; }
.quiz-body { padding: 44px 34px 34px; overflow-y: auto; }
.quiz-step-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--sage-deep); }
.quiz-question { font-family: var(--font-display); font-weight: 600; font-size: 25px; margin: 10px 0 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; }
.quiz-opt {
  text-align: left; background: var(--paper-raised); border: 1.5px solid var(--line);
  border-radius: var(--radius-md); padding: 15px 18px; font-size: 16px; cursor: pointer;
  font-family: var(--font-body); color: var(--ink); transition: all .14s ease;
}
.quiz-opt:hover { border-color: var(--sage); background: var(--tint-green); }
.quiz-opt.selected { border-color: var(--sage); background: var(--tint-green); font-weight: 600; }
.quiz-nav { margin-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.quiz-back { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 14px; font-family: var(--font-body); }
.quiz-back:disabled { opacity: 0; pointer-events: none; }

/* Formulário de lead */
.quiz-form { display: flex; flex-direction: column; gap: 14px; }
.quiz-field { display: flex; flex-direction: column; gap: 6px; }
.quiz-field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.quiz-field input, .quiz-field select {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-size: 15px; font-family: var(--font-body); background: var(--paper-raised); color: var(--ink);
}
.quiz-field input:focus, .quiz-field select:focus { outline: none; border-color: var(--sage); }

/* Resultado */
.quiz-result { text-align: center; }
.quiz-result-badge { display: inline-block; background: var(--tint-green); color: var(--sage-deep); font-weight: 700; padding: 8px 18px; border-radius: 999px; font-size: 14px; margin-bottom: 16px; }
.quiz-result h3 { font-size: 24px; margin-bottom: 8px; }
.quiz-result .diag { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; margin: 20px 0; font-size: 16px; color: var(--ink); }
.quiz-result .diag strong { color: var(--sage-deep); }
.quiz-rec { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 18px 0 6px; }
.quiz-rec span { background: var(--tint-chip); color: #C4622A; font-weight: 600; padding: 7px 14px; border-radius: 999px; font-size: 14px; }

/* ===== Responsivo ===== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero h1 { font-size: 38px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .header-cta { display: inline-block; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); }
  .kit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .section { padding: 52px 0; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .feature-grid, .kit-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-sep { transform: rotate(90deg); }
  .price-now { font-size: 52px; }
  .quiz-body { padding: 40px 22px 26px; }
  .quiz-question { font-size: 21px; }
  /* botões com texto longo quebram em vez de estourar a tela */
  .btn-lg { white-space: normal; max-width: 100%; line-height: 1.3; }
}
