/* ══════════════════════════════════════════════════
   VARIÁVEIS DE DESIGN
   ══════════════════════════════════════════════════ */
:root {
  --bg:         #0A0A0B;
  --surface:    #141417;
  --border:     #2A2A30;
  --text:       #F4F2ED;
  --text-muted: #9A9AA2;
  --gold:       #C8A24B;
  --gold-soft:  #D8BC74;
  --gold-deep:  #A8842F;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-x: hidden;
}
html::-webkit-scrollbar { display: none; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  overflow-x: hidden;
  min-height: 100dvh;
}
body.scroll-liberado { overflow-y: auto; }
img, iframe { display: block; max-width: 100%; border: 0; }
a { color: inherit; text-decoration: none; }

/* ══ 1. BARRA DE AVISO ══ */
.urgency-bar {
  background: #16130C;
  border-bottom: 1px solid rgba(200, 162, 75, 0.2);
  color: var(--gold-soft);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.urgency-icon { font-style: normal; }
.urgency-bar strong { font-weight: 600; }

/* ══ LAYOUT GERAL ══ */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 80px;
}

/* ══ 2. HERO ══ */
.hero {
  text-align: center;
  padding: 56px 0 40px;
  max-width: 580px;
  width: 100%;
}

.headline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 20px;
}
.headline .gold {
  color: var(--gold);
  font-style: normal;
  display: block;
  margin-top: 4px;
}

.subheadline {
  font-size: 0.9375rem; /* ~15px */
  line-height: 1.65;
  color: var(--text-muted);
  font-weight: 400;
}

/* ══ 3. VSL ══ */
.vsl-section {
  width: 100%;
  max-width: 520px;
  text-align: center;
  margin-bottom: 0;
}

.vsl-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 1px rgba(200, 162, 75, 0.08),
    0 0 24px rgba(200, 162, 75, 0.10),
    0 20px 48px rgba(0, 0, 0, 0.55);
}

/* Qualquer embed inserido ocupa o container inteiro */
.vsl-container > * {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Placeholder visual — remova quando inserir o embed */
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: radial-gradient(ellipse at 50% 55%, #1c1908 0%, var(--surface) 70%);
}
.vsl-play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.vsl-play-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-left: 3px; /* optical centering */
}
.vsl-placeholder-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* Mensagem abaixo do vídeo */
.watch-msg {
  margin-top: 16px;
  font-size: 0.775rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  opacity: 1;
  transition: opacity 0.45s ease;
}

/* Barra de progresso */
.progress-wrap {
  width: 100%;
  max-width: 520px;
  margin: 10px auto 0;
  text-align: left;
}
.progress-track {
  width: 100%;
  height: 2px;
  background: #222228;
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 99px;
  transition: width 1s linear;
}
.progress-label {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  color: #4a4a52;
  letter-spacing: 0.04em;
}

/* ══ 4. BLOCO DE OFERTA (oculto por padrão) ══ */
.offer-block {
  width: 100%;
  max-width: 430px;
  margin-top: 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 0.8s ease;
}
.offer-block.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ══ 4a. CARD DE OFERTA ══ */
.offer-card {
  background: var(--surface);
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  overflow: hidden;
  padding: 32px 28px 28px;
  text-align: center;
}

/* Ancoragem de preço */
.price-area { margin-bottom: 28px; }

.price-old {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.price-old s {
  color: #4a4040;
  text-decoration-color: #4a4040;
}

.price-intro {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.price-main {
  font-family: var(--font-serif);
  font-size: 2.625rem; /* ~42px */
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.3px;
  line-height: 1;
}
.price-main strong {
  font-weight: 700;
  font-size: inherit;
}

/* ══ 4b. CHECKLIST ══ */
.checklist {
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--border);
  margin-bottom: 28px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: 0.875rem;
  line-height: 1.45;
  border-bottom: 1px solid var(--border);
}
.check-yes { color: var(--text); }
.check-no  { color: var(--text-muted); }

.check-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 600;
  width: 16px;
  text-align: center;
}
.check-yes .check-icon { color: var(--gold); }
.check-no  .check-icon { color: #44444c; }

/* ══ 4c. BOTÃO CTA ══ */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  animation: pulse-cta 3.5s ease-in-out infinite;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(200, 162, 75, 0.2);
  animation: none;
}
.cta-btn:active { transform: translateY(0); }

.cta-arrow { font-size: 1rem; }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 75, 0); }
  50%       { box-shadow: 0 0 0 6px rgba(200, 162, 75, 0.10); }
}

/* ══ 4d. GARANTIA ══ */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.guarantee-icon { font-size: 0.95rem; color: var(--gold); }

/* ══ 4e. BOTÃO DE RECUSA ══ */
.decline-wrap {
  margin-top: 20px;
  text-align: center;
}
.decline-btn {
  font-size: 0.72rem;
  color: #3e3e46;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  line-height: 1.5;
  transition: color 0.25s, text-decoration-color 0.25s;
  display: inline-block;
  max-width: 340px;
}
.decline-btn:hover {
  color: var(--text-muted);
  text-decoration-color: currentColor;
}

/* ══ 5. RODAPÉ ══ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  width: 100%;
}
.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 24px;
  text-align: center;
}
.disclaimer {
  font-size: 0.7rem;
  color: #3a3a42;
  line-height: 1.7;
  margin-bottom: 14px;
}
.disclaimer strong { color: #46464f; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 0.7rem;
  color: #3a3a42;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }
.footer-links span { color: var(--border); font-size: 0.65rem; }
.copyright { font-size: 0.66rem; color: #28282e; }

/* ══ ANIMAÇÃO SCROLL REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVIDADE MOBILE ══ */

/* Tablet */
@media (max-width: 600px) {
  .page {
    padding: 0 16px 60px;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .headline {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .subheadline {
    font-size: 0.875rem;
  }

  .vsl-section,
  .progress-wrap {
    max-width: 100%;
  }

  .offer-block {
    max-width: 100%;
  }

  .offer-card {
    padding: 24px 18px 22px;
    border-radius: 10px;
  }

  .price-main {
    font-size: 2.1rem;
  }

  .checklist li {
    font-size: 0.84rem;
    padding: 11px 0;
    gap: 8px;
  }

  .cta-btn {
    font-size: 0.875rem;
    padding: 14px 16px;
  }

  .decline-btn {
    max-width: 100%;
    font-size: 0.7rem;
  }
}

/* Mobile pequeno */
@media (max-width: 390px) {
  .page {
    padding: 0 14px 50px;
  }

  .urgency-bar {
    font-size: 0.72rem;
    padding: 9px 14px;
    flex-wrap: wrap;
    text-align: center;
    gap: 4px;
  }

  .hero {
    padding: 32px 0 24px;
  }

  .headline {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
    margin-bottom: 14px;
  }

  .subheadline {
    font-size: 0.82rem;
  }

  .offer-card {
    padding: 20px 14px 18px;
  }

  .price-main {
    font-size: 1.875rem;
  }

  .checklist li {
    font-size: 0.8rem;
    padding: 10px 0;
  }

  .cta-btn {
    font-size: 0.82rem;
    padding: 13px 14px;
    gap: 6px;
  }

  .guarantee {
    font-size: 0.75rem;
  }

  .footer-inner {
    padding: 28px 16px;
  }
}
