/* =============================================================
   ARTES DULI - Eternização de Flores em Resina
   Estilos globais (site estático para Hostinger)
   ============================================================= */

:root {
  --yellow: #F5C518;
  --yellow-d: #D4A800;
  --yellow-l: #FFFBEB;
  --black: #111827;
  --gray: #6B7280;
  --white: #FFFFFF;
  --nav-h: 58px;
}

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

html { scroll-behavior: smooth; height: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  height: 100%;
  overflow: hidden;
}

/* =========================== NAVBAR (com cooldown) =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 5000;
  background: rgba(17,24,39,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--yellow);
  display: flex;
  align-items: center;
}
.navbar-inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.navbar .logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--yellow);
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar-timer {
  display: none; /* aparece só na etapa final (oferta) via .visible */
  align-items: center;
  gap: 8px;
  background: #1C0A0A;
  border: 1px solid #7F1D1D;
  border-radius: 999px;
  padding: 5px 12px;
  animation: pulseGlow 2.2s ease-in-out infinite;
}
.navbar-timer.visible { display: flex; }
.nt-label {
  font-size: 0.58rem;
  color: #FCA5A5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1;
}
.nt-digits {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.0); }
  50% { box-shadow: 0 0 0 4px rgba(220,38,38,0.18); }
}

/* =========================== SCREENS (app em tela cheia, sem scroll de página) =========================== */
.screen { display: none; }
.screen.active {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: screenFade 0.35s ease;
}
@keyframes screenFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* =========================== BOTÕES =========================== */
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.12s, box-shadow 0.2s;
  width: 100%;
  max-width: 480px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 20px rgba(245,197,24,0.25);
}
.btn-primary:hover { background: var(--yellow-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,197,24,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
}
.btn-primary:hover::after { animation: shine 0.75s ease; }
@keyframes shine { to { left: 140%; } }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid var(--yellow);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  width: 100%;
  max-width: 480px;
}
.btn-outline:hover { background: rgba(245,197,24,0.08); }

/* =========================== INTRO =========================== */
.intro-hero {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 32px;
  gap: 22px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.intro-badge {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.intro-title {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
}
.intro-title em { color: var(--yellow); font-style: normal; }
.intro-sub {
  font-size: 1rem;
  color: #D1D5DB;
  text-align: center;
  line-height: 1.6;
  max-width: 480px;
}
.intro-img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #222;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}
.intro-duo {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 440px;
}
.intro-duo img {
  width: 50%;
  border-radius: 14px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #222;
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}
.intro-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.intro-cta-hint {
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
}

/* =========================== QUIZ =========================== */
.quiz-progress-bar-wrap { background: #1F2937; height: 6px; flex: 0 0 auto; }
.quiz-progress-bar { height: 6px; background: var(--yellow); transition: width 0.4s ease; width: 0%; }
.quiz-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 20px 30px;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  gap: 18px;
}
.quiz-step-label {
  font-size: 0.78rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: flex-start;
}
.quiz-question {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  align-self: flex-start;
}
.quiz-question em { color: var(--yellow); font-style: normal; }
.quiz-context {
  font-size: 0.9rem;
  color: #9CA3AF;
  align-self: flex-start;
  line-height: 1.5;
}
.quiz-banner-wrap {
  width: 100%;
  margin-top: 4px;
  border-radius: 12px;
  overflow: hidden;
  background: #1F2937;
}
.quiz-banner-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.quiz-opt {
  background: #1F2937;
  border: 2px solid #374151;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.12s;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.quiz-opt:hover { border-color: var(--yellow); background: #2D3748; transform: translateY(-2px); }
.quiz-opt.selected { border-color: var(--yellow); background: #2D3748; }
.quiz-opt .opt-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.quiz-opt .opt-text { flex: 1; }
.quiz-opt .opt-text strong { display: block; font-weight: 700; }
.quiz-opt .opt-text span { font-size: 0.82rem; color: #9CA3AF; }

/* Primeira pergunta: seleção visual de faixa etária em cards 2 × 2. */
.quiz-options--age {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quiz-opt--age {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border-color: #4B5563;
  background: #1F2937;
  isolation: isolate;
}
.age-option-photo {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  background-image: url("./assets/duli/quiz-idades-v1.webp");
  background-repeat: no-repeat;
  background-size: 200% 200%;
  transition: transform 0.25s ease;
}
.age-option-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 34, 0.04) 28%, rgba(10, 18, 34, 0.8) 100%);
}
.age-18-25 { background-position: 0 0; }
.age-26-35 { background-position: 100% 0; }
.age-36-45 { background-position: 0 100%; }
.age-46-plus { background-position: 100% 100%; }
.quiz-opt--age:hover,
.quiz-opt--age.selected {
  border-color: var(--yellow);
  background: #1F2937;
  transform: translateY(-2px);
}
.quiz-opt--age:hover .age-option-photo,
.quiz-opt--age.selected .age-option-photo {
  transform: scale(1.045);
}
.age-option-label {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  z-index: 1;
  color: var(--white);
  font-size: clamp(0.8rem, 3.4vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Pausa informativa antes da pergunta sobre receios. */
.quiz-insight-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(250, 204, 21, 0.38);
  border-radius: 16px;
  background: #1F2937;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.quiz-insight-image {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
  object-position: center;
}
.quiz-insight-content { padding: 18px; }
.quiz-insight-eyebrow {
  display: block;
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.quiz-insight-text {
  color: #E5E7EB;
  font-size: 0.93rem;
  line-height: 1.58;
}
.quiz-insight-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}
.quiz-insight-list li {
  position: relative;
  padding-left: 22px;
  color: #D1D5DB;
  font-size: 0.86rem;
  font-weight: 600;
}
.quiz-insight-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}
.quiz-insight-continue {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  background: var(--yellow);
  color: #111827;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.quiz-insight-continue:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Carrossel de prova social no quiz */
.quiz-carousel-wrap { width: 100%; overflow: hidden; border-radius: 12px; }
.quiz-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.quiz-carousel-track::-webkit-scrollbar { display: none; }
.quiz-carousel-slide {
  flex: 0 0 220px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1F2937;
}
.quiz-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.quiz-carousel-slide--illustrative {
  flex-basis: 230px;
  aspect-ratio: 720 / 1556;
  background: #FFFFFF;
}
.quiz-carousel-slide--illustrative img { object-fit: contain; }
.quiz-carousel-label {
  position: absolute;
  z-index: 1;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.88);
  color: #FFFFFF;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* =========================== LOADING =========================== */
.loading-title { font-size: 1.3rem; font-weight: 800; color: var(--white); }
.loading-title em { color: var(--yellow); font-style: normal; }
.loading-bar-outer {
  width: 100%;
  max-width: 380px;
  height: 10px;
  background: #374151;
  border-radius: 999px;
  overflow: hidden;
}
.loading-bar-inner {
  height: 100%;
  background: var(--yellow);
  border-radius: 999px;
  width: 0%;
  transition: width 0.3s ease;
}
.loading-text { font-size: 0.88rem; color: var(--gray); }
.loading-carousel-wrap { width: 100%; max-width: 640px; overflow: hidden; }
.loading-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.loading-carousel-track::-webkit-scrollbar { display: none; }
.loading-carousel-slide {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1F2937;
}
.loading-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

/* =========================== RESULTADO / ROLETA =========================== */
.result-badge {
  background: #064E3B;
  color: #34D399;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.result-title {
  font-size: clamp(1.3rem, 4.5vw, 1.8rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--white);
}
.result-title em { color: var(--yellow); font-style: normal; }
.result-sub { font-size: 0.95rem; color: #D1D5DB; line-height: 1.6; max-width: 460px; }
.wheel-container { position: relative; width: min(290px, 70vw); height: min(290px, 70vw); }
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #111827;
  border: 3px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
#wheel-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--yellow), 0 8px 32px rgba(0,0,0,0.6);
  animation: pulseGlow 2.5s ease-in-out infinite;
}
.wheel-pointer {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  background: var(--white);
  border-radius: 50%;
  border: 3px solid var(--black);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.wheel-arrow {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 24px solid var(--yellow);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  z-index: 3;
}
.btn-spin {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-spin:hover { background: var(--yellow-d); transform: translateY(-2px); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.wheel-prize-banner {
  display: none;
  background: #064E3B;
  border: 2px solid #34D399;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 380px;
  width: 100%;
  animation: screenFade 0.4s ease;
}
.wheel-prize-banner.visible { display: block; }
.wheel-prize-banner .prize-label {
  font-size: 0.78rem;
  color: #34D399;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.wheel-prize-banner .prize-name { font-size: 1.1rem; font-weight: 800; color: var(--white); }
.result-cta-block { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.result-cta-hint { font-size: 0.8rem; color: var(--gray); }
.result-inner {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 20px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}
.result-mini-title { font-size: clamp(1.05rem, 4vw, 1.35rem); font-weight: 900; color: var(--white); line-height: 1.25; }

/* Popup do diagnóstico */
#result-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#result-popup.visible { display: flex; }
.result-popup-box {
  background: #1F2937;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  padding: 26px 22px;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  animation: screenFade 0.3s ease;
}
.result-popup-box .result-badge { align-self: center; }
.result-popup-box .result-title { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }

/* =========================== VENDAS - ETAPAS (slides) =========================== */
.sales-progress-wrap { background: #1F2937; height: 6px; flex: 0 0 auto; }
.sales-progress { height: 6px; background: var(--yellow); width: 0%; transition: width 0.4s ease; }
.sales-steps { flex: 1 1 auto; min-height: 0; overflow: hidden; position: relative; }
.sales-step { display: none; }
.sales-step.active {
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: salesFade 0.3s ease;
}
@keyframes salesFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.sales-step.active > .sales-hero,
.sales-step.active > .sales-section,
.sales-step.active > .sales-step-body { flex: 1 1 auto; overflow-y: auto; min-height: 0; }
.sales-next-wrap {
  flex: 0 0 auto;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 12px 20px 18px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #1F2937;
  background: var(--black);
}
#sales.active { display: flex; flex-direction: column; }

.sales-hero {
  background: radial-gradient(120% 90% at 50% 0%, #1a2333 0%, var(--black) 60%);
  padding: 36px 20px 28px;
  text-align: center;
}
.sales-profile-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.sales-hero-title {
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto 16px;
}
.sales-hero-title em { color: var(--yellow); font-style: normal; }
.sales-hero-sub {
  font-size: 1rem;
  color: #D1D5DB;
  max-width: 520px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* VSL placeholder */
.vsl-placeholder {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 8px;
  aspect-ratio: 16/9;
  background: #1F2937;
  border: 1px solid #2A3444;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  overflow: hidden;
}
.vsl-placeholder .vsl-icon { font-size: 2.5rem; }

/* Portão de captura do vídeo (lead gate) */
.vsl-wrap { max-width: 640px; margin: 0 auto 8px; }
.vsl-gate {
  background: #1F2937;
  border: 1px solid #2A3444;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.vsl-gate-icon { font-size: 2rem; }
.vsl-gate-title { font-size: 1.05rem; font-weight: 800; color: var(--white); line-height: 1.3; }
.vsl-gate-sub { font-size: 0.85rem; color: #9CA3AF; margin-bottom: 2px; }
.vsl-gate .lead-input { text-align: center; }

/* VSL vídeo final (player Vimeo limpo, click-to-play, sem info) */
.vsl-video-block { max-width: 640px; margin: 0 auto; }
.vsl-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(245,197,24,0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.vsl-player .vsl-frame { position: absolute; inset: 0; }
.vsl-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* botão que cobre o player: esconde as infos do vídeo e faz play/pause ao clicar */
.vsl-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(17,24,39,0.45), rgba(17,24,39,0.92));
  transition: opacity 0.3s ease;
}
.vsl-cover .vsl-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--yellow);
  position: relative;
  box-shadow: 0 8px 30px rgba(245,197,24,0.5);
  animation: vslPulse 1.8s ease-in-out infinite;
  transition: opacity 0.3s ease;
}
.vsl-cover .vsl-play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #111827;
}
.vsl-cover .vsl-cover-text {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: opacity 0.3s ease;
}
@keyframes vslPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
/* depois de iniciar: some a capa e libera os controles nativos do player (play/pause/volume) */
.vsl-player.started .vsl-cover { opacity: 0; pointer-events: none; }

/* Seções de vendas */
.sales-section { padding: 34px 20px; max-width: 640px; margin: 0 auto; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-l);
  color: #78350F;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title em { color: var(--yellow); font-style: normal; }
.section-body { font-size: 0.95rem; color: #D1D5DB; line-height: 1.7; }
.section-body p + p { margin-top: 12px; }
.section-body strong { color: var(--white); }

/* Dores */
.pain-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.pain-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #1F2937;
  border-radius: 12px;
  padding: 14px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain-item:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.pain-item .pi-icon { font-size: 1.2rem; flex-shrink: 0; }
.pain-item .pi-text { font-size: 0.9rem; color: #D1D5DB; line-height: 1.5; }
.pain-item .pi-text strong { color: var(--white); display: block; font-size: 0.95rem; }

/* Números de prova */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 8px; }
.proof-card {
  background: #1F2937;
  border-radius: 12px;
  padding: 0 0 10px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.proof-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.proof-card .pc-img { aspect-ratio: 2/1; overflow: hidden; background: #111827; }
.proof-card .pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.proof-card:hover .pc-img img { transform: scale(1.06); }
.proof-card .pc-number { font-size: 1.4rem; font-weight: 900; color: var(--yellow); line-height: 1; margin-top: 8px; }
.proof-card .pc-label { font-size: 0.75rem; color: #9CA3AF; margin: 4px 6px 0; line-height: 1.3; }

/* Módulos do curso - CARDS 4x3 (mais imagem que texto) */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.module-card {
  background: #1F2937;
  border: 1px solid #2A3444;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.module-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,0,0,0.45); }
.module-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #111827; }
.module-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.module-card:hover .module-card-img img { transform: scale(1.07); }
.module-card-num {
  position: absolute;
  top: 8px; left: 8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.module-card-body { padding: 10px 12px 14px; }
.module-card-title { font-size: 0.9rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 3px; }
.module-card-desc { font-size: 0.75rem; color: #9CA3AF; line-height: 1.35; }

/* Depoimentos */
.depo-carousel-wrap { width: 100%; overflow: hidden; margin-top: 20px; }
.depo-carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.depo-carousel-track::-webkit-scrollbar { display: none; }
.depo-carousel-slide {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #1F2937;
}
.depo-carousel-slide img { width: 100%; height: auto; object-fit: cover; }

/* Instrutora - CARD GRANDE */
.instructor-card {
  background: #1F2937;
  border: 1px solid #2A3444;
  border-radius: 20px;
  overflow: hidden;
  margin: 22px auto 0;
  max-width: 420px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}
.instructor-photo-big {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
  background: #374151;
  border-bottom: 3px solid var(--yellow);
}
.instructor-body { padding: 16px 20px 18px; text-align: center; }
.instructor-body .ii-name { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 3px; }
.instructor-body .ii-role { font-size: 0.8rem; color: var(--yellow); font-weight: 700; margin-bottom: 8px; }
.instructor-body .ii-bio { font-size: 0.82rem; color: #C7CDD6; line-height: 1.5; }

/* CTA / preço */
.cta-section {
  background: #0F1A0A;
  border-top: 1px solid #1F2937;
  border-bottom: 1px solid #1F2937;
  padding: 36px 20px;
  text-align: center;
}
.cta-section .cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.price-block { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.price-from { font-size: 0.85rem; color: var(--gray); }
.price-anchor { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; }
.price-current { font-size: 2.8rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.price-cents { font-size: 1.2rem; font-weight: 700; }
.price-installment { font-size: 0.88rem; color: #9CA3AF; }
.price-guarantee { font-size: 0.82rem; color: #34D399; display: flex; align-items: center; gap: 6px; }

/* Order bumps */
.bump-section { background: var(--black); padding: 28px 20px 12px; }
.bump-section-inner { max-width: 640px; margin: 0 auto; }
.bump-section-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 14px; text-align: center; }
.bump-stack { display: flex; flex-direction: column; gap: 10px; }
.bump-item {
  background: #1F2937;
  border: 2px solid #374151;
  border-radius: 14px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.bump-item:hover { transform: translateY(-2px); }
.bump-item.selected { border-color: var(--yellow); background: #2D3748; }
.bump-checkbox {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid #4B5563;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--black);
  transition: all 0.2s;
  margin-top: 2px;
}
.bump-item.selected .bump-checkbox { background: var(--yellow); border-color: var(--yellow); }
.bump-info { flex: 1; }
.bump-title { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.bump-sub { font-size: 0.78rem; color: #9CA3AF; margin-bottom: 6px; line-height: 1.4; }
.bump-price { font-size: 0.85rem; font-weight: 700; color: var(--yellow); }

/* Resumo do pedido */
.order-summary { max-width: 640px; margin: 0 auto; padding: 0 20px 24px; }
.order-summary-box { background: #1F2937; border-radius: 16px; padding: 20px; }
.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.88rem;
  color: #D1D5DB;
  border-bottom: 1px solid #374151;
}
.order-row:last-child { border-bottom: none; }
.order-row.total { font-size: 1rem; font-weight: 800; color: var(--white); padding-top: 12px; }
.order-row.total .total-price { color: var(--yellow); font-size: 1.1rem; }
.order-cta-block { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 16px; }
.order-guarantee { font-size: 0.78rem; color: #9CA3AF; text-align: center; display: flex; align-items: center; gap: 6px; }

/* Garantia */
.guarantee-section {
  background: #0A1628;
  border-top: 1px solid #1E3A5F;
  border-bottom: 1px solid #1E3A5F;
  padding: 30px 20px;
  text-align: center;
}
.guarantee-inner { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.guarantee-icon { font-size: 3rem; }
.guarantee-title { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.guarantee-desc { font-size: 0.88rem; color: #93C5FD; line-height: 1.6; }

/* P.S. */
.ps-section { background: var(--black); padding: 30px 20px; max-width: 640px; margin: 0 auto; }
.ps-box { background: #1F2937; border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; padding: 20px; }
.ps-box p { font-size: 0.9rem; color: #D1D5DB; line-height: 1.7; }
.ps-box strong { color: var(--white); }

/* Rodapé */
.sales-footer { background: #0D0D0D; border-top: 1px solid #1F2937; padding: 26px 20px; text-align: center; }
.sales-footer p { font-size: 0.78rem; color: #6B7280; line-height: 1.6; }

/* =========================== LEAD POPUP =========================== */
#lead-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#lead-popup.visible { display: flex; }
.lead-popup-box {
  background: #1F2937;
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid var(--yellow);
  animation: screenFade 0.3s ease;
}
.lead-popup-icon { font-size: 2rem; text-align: center; }
.lead-popup-title { font-size: 1.2rem; font-weight: 800; color: var(--white); text-align: center; line-height: 1.3; }
.lead-popup-title em { color: var(--yellow); font-style: normal; }
.lead-popup-sub { font-size: 0.85rem; color: #9CA3AF; text-align: center; line-height: 1.5; }
.lead-form { display: flex; flex-direction: column; gap: 10px; }
.lead-input {
  background: #111827;
  border: 2px solid #374151;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--white);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.lead-input::placeholder { color: #6B7280; }
.lead-input:focus { border-color: var(--yellow); }
.lead-input-hint { font-size: 0.75rem; color: var(--gray); text-align: center; }

/* =========================== BUMP UPSELL MODAL =========================== */
#bump-upsell-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9001;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#bump-upsell-modal.visible { display: flex; }
.bump-modal-box {
  background: #1F2937;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid var(--yellow);
  max-height: 90vh;
  overflow-y: auto;
  animation: screenFade 0.3s ease;
}
.bump-modal-title { font-size: 1.1rem; font-weight: 800; color: var(--white); text-align: center; line-height: 1.3; }
.bump-modal-title em { color: var(--yellow); font-style: normal; }
.bump-modal-sub { font-size: 0.85rem; color: #9CA3AF; text-align: center; line-height: 1.5; }
.bump-modal-stack { display: flex; flex-direction: column; gap: 8px; }
.bump-modal-btns { display: flex; flex-direction: column; gap: 8px; }
.btn-modal-proceed {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}
.btn-modal-skip {
  background: transparent;
  color: var(--gray);
  font-size: 0.82rem;
  padding: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
}

/* =========================== CONFETTI =========================== */
#confetti-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 8000;
}

/* =========================== UTIL =========================== */
.divider { height: 1px; background: #1F2937; margin: 0; }

/* =========================== PÁGINA DA OFERTA (separada) =========================== */
body.page-offer { overflow-y: auto; height: auto; background: var(--black); }
.offer-page { padding-top: var(--nav-h); max-width: 640px; margin: 0 auto; }

/* Hero da oferta */
.offer-hero { text-align: center; padding: 30px 20px 8px; }
.offer-hero-badge {
  display: inline-block; background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.offer-hero h1 { font-size: clamp(1.6rem, 5.5vw, 2.3rem); font-weight: 900; line-height: 1.18; color: var(--white); margin-bottom: 14px; }
.offer-hero h1 em { color: var(--yellow); font-style: normal; }
.offer-hero p { font-size: 1rem; color: #D1D5DB; line-height: 1.6; max-width: 520px; margin: 0 auto 18px; }
.offer-hero-img { width: 100%; max-width: 520px; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; margin: 0 auto 18px; display: block; background: #1F2937; }
.offer-hero-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.offer-hero-cta .lead-input-hint { color: var(--gray); }

/* O que você recebe */
.deliver-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.deliver-list li { display: flex; gap: 10px; align-items: flex-start; background: #1F2937; border-radius: 10px; padding: 12px 14px; font-size: 0.9rem; color: #D1D5DB; line-height: 1.45; }
.deliver-list li b { color: var(--white); }
.deliver-check { color: #34D399; font-weight: 900; flex-shrink: 0; }

/* Pilha de valor */
.value-stack { background: #1F2937; border-radius: 14px; padding: 16px 18px; margin-top: 18px; }
.value-row { display: flex; justify-content: space-between; gap: 12px; font-size: 0.88rem; color: #D1D5DB; padding: 8px 0; border-bottom: 1px dashed #374151; }
.value-row:last-of-type { border-bottom: none; }
.value-row .vr-price { color: var(--gray); white-space: nowrap; }
.value-total { display: flex; justify-content: space-between; gap: 12px; font-weight: 900; color: var(--white); padding-top: 12px; margin-top: 4px; border-top: 2px solid #374151; font-size: 1.05rem; }
.value-total .vt-price { color: var(--yellow); }

/* UPSELL (destaque) */
.upsell-section { max-width: 640px; margin: 0 auto; padding: 8px 20px 24px; }
.upsell-card {
  background: linear-gradient(160deg, #2A2410, #1F2937);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.upsell-card.selected { box-shadow: 0 0 0 3px rgba(245,197,24,0.35); }
.upsell-tag { align-self: flex-start; background: var(--yellow); color: var(--black); font-weight: 800; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 12px; border-radius: 999px; }
.upsell-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; background: #111827; }
.upsell-title { font-size: 1.1rem; font-weight: 900; color: var(--white); line-height: 1.25; }
.upsell-desc { font-size: 0.88rem; color: #C7CDD6; line-height: 1.55; }
.upsell-price { font-size: 0.95rem; color: var(--yellow); font-weight: 800; }
.upsell-price s { color: var(--gray); font-weight: 600; margin-right: 6px; }
.upsell-toggle { background: var(--yellow); color: var(--black); font-weight: 800; border: none; border-radius: 10px; padding: 14px; cursor: pointer; font-family: inherit; font-size: 0.95rem; transition: background 0.2s; }
.upsell-toggle:hover { background: var(--yellow-d); }

.offer-page .cta-section,
.offer-page .bump-section,
.offer-page .order-summary,
.offer-page .guarantee-section,
.offer-page .ps-section { border-radius: 0; }

/* =========================== RESPONSIVO =========================== */
@media (min-width: 640px) {
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .bump-modal-btns { flex-direction: row; }
}
