:root {
  --bg: #faf6ec;
  --card: #ffffff;
  --text: #2a241a;
  --muted: #7a6f5d;
  --border: #e4d7bd;
  --soft: #fbf6e8;
  --cream: #fdf9ee;

  --gold-light: #f3d982;
  --gold: #d6a43a;
  --gold-strong: #b77a18;
  --gold-dark: #8b5e16;
  --gold-deep: #6b4810;

  --green: #5a7a3f;
  --green-dark: #2d6b3d;
  --burgundy: #8a4a3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(243,217,130,.25), transparent 38%),
    radial-gradient(circle at bottom right, rgba(214,164,58,.10), transparent 50%),
    var(--bg);
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 0;
}

.quiz-app {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background: var(--card);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.screen {
  display: none;
  min-height: 100vh;
  padding: 22px 18px 34px;
  animation: fade .3s ease;
}

.screen.active { display: block; }

@keyframes fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 14px;
}

.logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
}

.intro-image-wrap {
  display: flex;
  justify-content: center;
  margin: 14px 0 20px;
}

.intro-image {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  border: 1px solid rgba(214,164,58,.35);
  box-shadow: 0 12px 28px rgba(139,94,22,.16);
}

/* Barra de progresso do quiz */
.progress-wrap {
  margin-bottom: 28px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.progress-step {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.progress-step .current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold-deep);
}

.progress-percent {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
}

.progress {
  width: 100%;
  height: 8px;
  background: #eadfc7;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-strong), var(--gold-light), var(--gold));
  border-radius: 999px;
  transition: width .4s ease;
}

.kicker {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 12px;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: 14px;
}

.title.center { text-align: center; }

.subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 18px;
}

.subtitle.center { text-align: center; }

.hero-box {
  background: var(--cream);
  border: 1px solid #eadfc7;
  border-radius: 18px;
  padding: 18px 20px;
  margin: 18px 0 22px;
  box-shadow: 0 8px 18px rgba(139,94,22,.06);
}

.hero-box p {
  font-size: 16px;
  line-height: 1.55;
  color: #3a3324;
}

.btn {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 19px 16px;
  background: linear-gradient(135deg, #b77a18 0%, #f3d982 48%, #d6a43a 100%);
  color: #ffffff;
  font-size: 17.5px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  box-shadow:
    0 10px 22px rgba(183,122,24,.32),
    inset 0 1px 0 rgba(255,255,255,.4);
  text-shadow: 0 1px 1px rgba(90,55,0,.30);
  transition: transform .15s ease, filter .15s ease;
}

.btn:hover { filter: brightness(1.04); }
.btn:active { transform: scale(.99); }

.btn.pulse { animation: pulse-btn 2.5s ease-in-out infinite; }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 10px 22px rgba(183,122,24,.32), inset 0 1px 0 rgba(255,255,255,.4); }
  50% { box-shadow: 0 10px 32px rgba(183,122,24,.55), 0 0 0 7px rgba(214,164,58,.18), inset 0 1px 0 rgba(255,255,255,.4); }
}

.hint {
  margin-top: 14px;
  text-align: center;
  color: #8a7e6a;
  font-size: 13.5px;
  line-height: 1.4;
}

.question-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.4px;
  margin-bottom: 10px;
  color: var(--text);
}

.question-sub {
  color: #6e6353;
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option {
  width: 100%;
  min-height: 70px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
  border: 1px solid rgba(183,122,24,.32);
  border-radius: 14px;
  padding: 14px 16px;
  color: #2e2a22;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all .18s ease;
  box-shadow: 0 4px 12px rgba(139,94,22,.05);
}

.option span.label { flex: 1; }

.option span.icon {
  font-size: 26px;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.option:hover {
  border-color: var(--gold);
  background: #fff9ec;
}

.option.selected {
  border-color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(183,122,24,.12), rgba(243,217,130,.30));
  box-shadow: 0 0 0 2px rgba(214,164,58,.20);
}

/* ===== LOADING ===== */
.loading-box {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #eadfc7;
  border-top-color: var(--gold-strong);
  border-radius: 50%;
  animation: spin .9s linear infinite;
  margin-bottom: 22px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== TEASER ===== */
.teaser-card {
  background:
    radial-gradient(circle at top, rgba(243,217,130,.4) 0%, transparent 55%),
    linear-gradient(160deg, #fbf3dc 0%, #f5e7c0 100%);
  border-radius: 24px;
  padding: 32px 22px 26px;
  margin-top: 12px;
  text-align: center;
  border: 1px solid rgba(183,122,24,.35);
  box-shadow: 0 16px 40px rgba(139,94,22,.18);
  position: relative;
  overflow: hidden;
}

.teaser-ornament {
  position: absolute;
  font-size: 18px;
  color: var(--gold-strong);
  opacity: .35;
}

.teaser-ornament.tl { top: 12px; left: 14px; }
.teaser-ornament.tr { top: 12px; right: 14px; transform: scaleX(-1); }
.teaser-ornament.bl { bottom: 12px; left: 14px; transform: scaleY(-1); }
.teaser-ornament.br { bottom: 12px; right: 14px; transform: scale(-1,-1); }

.teaser-badge {
  display: inline-block;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(183,122,24,.35);
  color: var(--gold-deep);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.teaser-icon-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e3 0%, #f5e3b5 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  box-shadow: 0 8px 20px rgba(183,122,24,.22), inset 0 2px 4px rgba(255,255,255,.6);
  animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}

.teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.5px;
  color: var(--gold-deep);
  margin-bottom: 4px;
  line-height: 1.05;
}

.teaser-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-strong), transparent);
  margin: 12px auto 14px;
}

.teaser-subtitle {
  color: var(--gold-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 22px;
  padding: 0 6px;
}

.teaser-hook {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(183,122,24,.20);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.teaser-hook p {
  color: #3a3324;
  font-size: 15.5px;
  line-height: 1.55;
}

.teaser-hook p strong {
  color: var(--gold-deep);
  font-weight: 800;
}

.teaser-cta-note {
  color: var(--gold-dark);
  font-size: 12.5px;
  margin-top: 12px;
  font-weight: 600;
}

/* ===== INDICADOR DE ETAPAS (novo) ===== */
.steps-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 20px;
  padding: 14px 14px;
  background: linear-gradient(135deg, #fffaeb, #fbf3dc);
  border: 1px solid rgba(183,122,24,.30);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(183,122,24,.08);
}

.step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  background: #ffffff;
  border: 2px solid var(--gold);
  color: var(--gold-deep);
}

.step.done .step-circle {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  font-size: 16px;
}

.step.active .step-circle {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-color: var(--gold-strong);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(214,164,58,.22);
  animation: pulseStep 2s ease-in-out infinite;
}

@keyframes pulseStep {
  0%, 100% { box-shadow: 0 0 0 4px rgba(214,164,58,.22); }
  50% { box-shadow: 0 0 0 8px rgba(214,164,58,.10); }
}

.step-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.2;
}

.step-text strong {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 1px;
}

.step-text span {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step.done .step-text strong { color: var(--green-dark); }
.step.active .step-text strong { color: var(--gold-deep); }
.step.active .step-text span { color: var(--gold-dark); }

.step-line {
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  margin: 0 6px;
  opacity: .6;
}

/* ===== RESULTADO ===== */
.result-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  margin-top: 12px;
  box-shadow: 0 10px 24px rgba(139,94,22,.08);
}

.badge {
  display: inline-block;
  background: var(--cream);
  border: 1px solid #eadfc7;
  color: var(--gold-dark);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}

.profile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.4px;
  margin-bottom: 8px;
  color: var(--text);
}

.profile-subtitle {
  font-size: 17px;
  color: var(--gold-dark);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 18px;
}

.profile-desc {
  font-size: 16.5px;
  line-height: 1.6;
  color: #3a3429;
  margin-bottom: 20px;
}

.sample-tip {
  background:
    radial-gradient(circle at top right, rgba(243,217,130,.4), transparent 60%),
    linear-gradient(160deg, #fdf6e3 0%, #f7e9c4 100%);
  border: 1px solid rgba(183,122,24,.3);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 18px 0 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.sample-tip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.sample-tip-label .tag {
  background: rgba(183,122,24,.15);
  border: 1px solid rgba(183,122,24,.3);
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 999px;
}

.sample-tip-label .day {
  color: var(--gold-dark);
  font-size: 12.5px;
  font-weight: 700;
}

.sample-tip p {
  color: #3a3324;
  font-size: 15.5px;
  line-height: 1.6;
}

.sample-tip-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(183,122,24,.2);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
}

/* ===== TIMELINE 31 DIAS (novo) ===== */
.timeline-section {
  margin: 22px 0 22px;
  padding: 20px 18px;
  background: var(--cream);
  border: 1px solid #eadfc7;
  border-radius: 18px;
}

.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 4px;
}

.timeline-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--gold) 50%, transparent 50%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

.timeline-item {
  position: relative;
  padding-bottom: 16px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-deep);
  box-shadow: 0 2px 6px rgba(183,122,24,.18);
}

.timeline-item.done .timeline-dot {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  font-size: 14px;
}

.timeline-item.highlight .timeline-dot {
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  border-color: var(--gold-strong);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(183,122,24,.30);
}

.timeline-day {
  font-size: 12px;
  font-weight: 800;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 2px;
}

.timeline-item.done .timeline-day { color: var(--green-dark); }
.timeline-item.highlight .timeline-day { color: var(--gold-strong); }

.timeline-text {
  color: #2e2a22;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.35;
}

.timeline-item.highlight .timeline-text {
  color: var(--gold-deep);
  font-weight: 800;
}

/* Bridge */
.bridge {
  text-align: center;
  margin: 22px 0 14px;
  padding: 14px 16px;
  background: rgba(183,122,24,.06);
  border-radius: 12px;
  border: 1px dashed rgba(183,122,24,.35);
}

.bridge strong {
  color: var(--gold-deep);
  font-size: 14.5px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.bridge span {
  color: #5a5142;
  font-size: 13.5px;
}

/* ===== OFERTA ===== */
.offer {
  background: var(--cream);
  border: 1px solid #eadfc7;
  border-radius: 20px;
  padding: 20px 18px;
  margin-top: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.offer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}

.offer .offer-lead {
  color: #5a5142;
  font-size: 15.5px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.kit-tag {
  display: inline-block;
  background: linear-gradient(135deg, #b77a18, #d6a43a);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(183,122,24,.25);
}

.kit-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 14px;
}

.kit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #eadfc7;
  border-radius: 12px;
}

.kit-item.main {
  background: linear-gradient(135deg, #fff9e8, #fdf2cc);
  border: 1px solid rgba(183,122,24,.4);
  box-shadow: 0 4px 12px rgba(183,122,24,.10);
}

.kit-icon {
  font-size: 22px;
  width: 32px;
  flex-shrink: 0;
  text-align: center;
}

.kit-text { flex: 1; min-width: 0; }

.kit-text strong {
  display: block;
  color: #2e2a22;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 3px;
}

.kit-text .kit-sub {
  display: block;
  color: #7a6f5d;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

.kit-text .bonus-tag {
  display: inline-block;
  background: rgba(90,122,63,.14);
  color: #3d5a26;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 3px;
}

.kit-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  flex-shrink: 0;
}

.kit-value .price-strike {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-variant-numeric: tabular-nums;
  opacity: .75;
}

.kit-value .free-tag {
  background: var(--green-dark);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .8px;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(45,107,61,.25);
}

.kit-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--soft);
  border: 1px dashed rgba(183,122,24,.45);
  border-radius: 12px;
  margin-top: 4px;
}

.kit-total-label {
  color: var(--gold-deep);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.kit-total-value {
  color: var(--burgundy);
  font-size: 20px;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-variant-numeric: tabular-nums;
}

.savings-tag {
  display: inline-block;
  background: rgba(90,122,63,.14);
  color: #3d5a26;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  margin-top: 6px;
}

/* Imagem do produto */
.price-image-wrap {
  display: flex;
  justify-content: center;
  margin: 14px 0 16px;
}

.price-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  border: 1px solid rgba(214,164,58,.30);
  box-shadow: 0 12px 28px rgba(139,94,22,.16);
}

/* Urgência */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(183,122,24,.08);
  border: 1px dashed rgba(183,122,24,.4);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 14px 0;
}

.urgency .clock { font-size: 18px; }

.urgency .urgency-text {
  color: var(--gold-deep);
  font-size: 13.5px;
  font-weight: 700;
}

.urgency .countdown-time {
  color: var(--burgundy);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* Preço */
.price {
  text-align: center;
  margin: 16px 0 18px;
}

.price .from {
  color: #8a7e6a;
  font-size: 14.5px;
  margin-bottom: 4px;
}

.price .main {
  color: var(--gold-deep);
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.price .note {
  color: #6e6353;
  font-size: 13.5px;
  margin-top: 6px;
}

.security {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #7a6f5d;
}

.testimonial {
  margin-top: 18px;
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  background: var(--soft);
  border-radius: 0 12px 12px 0;
}

.testimonial p {
  color: #3a3429;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial small {
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 13px;
}

/* ===== AVALIAÇÕES ===== */
.reviews-section {
  margin-top: 24px;
  padding: 22px 18px;
  background: var(--cream);
  border: 1px solid #eadfc7;
  border-radius: 18px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(183,122,24,.18);
}

.reviews-stars-big {
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
  filter: drop-shadow(0 1px 2px rgba(183,122,24,.2));
}

.reviews-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 2px;
}

.reviews-title {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.reviews-count {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}

.review-card {
  background: #ffffff;
  border: 1px solid #eadfc7;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.review-card:last-child {
  margin-bottom: 0;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
}

.review-text {
  color: #3a3429;
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.review-author {
  color: var(--gold-deep);
  font-size: 12.5px;
  font-weight: 800;
}

.review-author .review-date {
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  margin: 22px 0 4px;
  padding: 18px 0 0;
  border-top: 1px solid #eadfc7;
  text-align: center;
}

.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 5px;
}

.video-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(214,164,58,.30);
  box-shadow: 0 12px 28px rgba(139,94,22,.16);
}

.video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.42);
  transition: opacity .3s ease;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: playPulse 2s infinite;
}

@keyframes playPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  70%  { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ===== EXIT POPUP ===== */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

.exit-popup.active {
  display: flex;
}

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
}

.exit-popup-card {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(243,217,130,.18), transparent 50%),
    #ffffff;
  border-radius: 28px 28px 0 0;
  padding: 32px 24px 36px;
  width: 100%;
  max-width: 430px;
  text-align: center;
  box-shadow: 0 -12px 40px rgba(0,0,0,.22);
  border-top: 1px solid rgba(183,122,24,.3);
  animation: slideUp .35s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

.exit-popup-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 999px;
  margin: 0 auto 22px;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,.06);
  border: none;
  font-size: 15px;
  cursor: pointer;
  color: var(--muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-popup-icon {
  font-size: 48px;
  margin-bottom: 14px;
  display: block;
  animation: gentleFloat 3s ease-in-out infinite;
}

.exit-popup-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 10px;
}

.exit-popup-text {
  color: #5a5142;
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.exit-popup-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(90,122,63,.1);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 18px;
  color: #3d5a26;
  font-size: 13px;
  font-weight: 700;
}

.exit-popup-dismiss {
  display: block;
  margin: 12px auto 0;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  padding: 4px;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== NOTIFICAÇÃO DE COMPRA ===== */
.purchase-toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 24px);
  max-width: 350px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}

.purchase-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.pt-avatar {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.pt-body {
  flex: 1;
  min-width: 0;
}

.pt-text {
  font-size: 13px;
  line-height: 1.3;
  color: var(--text);
  font-weight: 600;
}

.pt-text strong { font-weight: 800; }

.pt-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.pt-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 380px) {
  .title { font-size: 36px; }
  .profile-title { font-size: 34px; }
  .question-title { font-size: 28px; }
  .option { font-size: 16px; }
  .teaser-title { font-size: 36px; }
  .price .main { font-size: 48px; }
  .timeline-title { font-size: 22px; }
  .step-text strong { font-size: 11.5px; }
  .step-text span { font-size: 11px; }
}
