/* ============================================
   Método da Oferta Desejada — Landing Premium
   Estilo: preto, branco, dourado, gradientes
   ============================================ */

:root {
  --bg-dark: #0a0a0b;
  --bg-dark-soft: #111113;
  --bg-card: #161618;
  --text-primary: #f5f5f6;
  --text-secondary: #a1a1a6;
  --text-muted: #71717a;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-metallic: linear-gradient(135deg, #d4af37 0%, #f4e4a6 40%, #c9a227 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  --accent-yellow: #facc15;
  --gradient-hero: linear-gradient(180deg, #0a0a0b 0%, #151518 50%, #0f0f11 100%);
  --gradient-fold: linear-gradient(180deg, #111113 0%, #1a1a1e 100%);
  --gradient-gold: linear-gradient(135deg, #1a1812 0%, #2d2618 50%, #1a1812 100%);
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 32px var(--gold-glow);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  overflow-x: hidden;
  width: 100%;
  min-width: 320px;
  max-width: 100vw;
  font-stretch: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ----- VSL placeholder (oculto por padrão) ----- */
.vsl-wrapper {
  display: none;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1rem;
}
.vsl-wrapper.active { display: block; }
.vsl-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ----- Page wrapper ----- */
.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* ----- Folds (seções dobradas) ----- */
.fold {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 0;
}
.fold-content {
  position: relative;
  z-index: 2;
}
.fold-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fold-bg-dark {
  background: var(--gradient-hero);
}
.fold-bg-gradient {
  background: var(--gradient-fold);
}
.fold-bg-gradient-alt {
  background: linear-gradient(180deg, #1a1a1e 0%, #151518 100%);
}
.fold-bg-cta {
  background: linear-gradient(180deg, #0f0f11 0%, #1a1812 30%, #151210 100%);
  box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.06);
}
.fold-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.fold-edge-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  opacity: 0.9;
}

/* ----- Hero ----- */
.fold-hero {
  text-align: center;
  padding-top: 3rem;
}
.fold-hero {
  position: relative;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.6rem 1.2rem 0.8rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  animation: fadeInUp 0.8s ease-out;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.hero-badge-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--gold);
}
.hero-badge-text {
  line-height: 1.2;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-headline .highlight {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ícone dourado da Vitrine (sacola) */
.bag-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.icon-bag svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold);
  vertical-align: middle;
  transform: translateY(-1px);
}
.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.fold-hero .btn-cta {
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

/* ----- Botões CTA ----- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), color var(--transition), background var(--transition);
}
.btn-cta {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
}
.btn-primary {
  background: var(--gold-metallic);
  color: #0a0a0b;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(212, 175, 55, 0.2);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), 0 0 0 1px rgba(212, 175, 55, 0.4);
  color: #0a0a0b;
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* ----- Section titles ----- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* ----- Seção Problema ----- */
.fold-problem .section-lead {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.problem-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.problem-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}
.problem-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}
.fold-problem .btn-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Seção Promessa ----- */
.promise-list {
  list-style: none;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.promise-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.promise-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}
.promise-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.promise-icon svg {
  width: 100%;
  height: 100%;
}
.fold-promise .btn-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Seção Mecanismo ----- */
.mechanism-box {
  background: var(--gradient-gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.mechanism-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.mechanism-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.mechanism-text em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}
.mechanism-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.mechanism-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.fold-mechanism .btn-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Seção Prova ----- */
.proof-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.proof-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 200px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.proof-card:hover {
  transform: scale(1.03);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.proof-card-featured {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
}
.proof-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.proof-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.proof-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.fold-proof .btn-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- Seção Oferta ----- */
.offer-list {
  list-style: none;
  max-width: 480px;
  margin: 0 auto 2rem;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), border-color var(--transition);
}
.offer-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
}
.offer-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--gold-metallic);
  color: #0a0a0b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.fold-offer .btn-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ----- CTA Final ----- */
.fold-cta {
  text-align: center;
  padding: 5rem 0;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.cta-urgency {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
#formulario {
  scroll-margin-top: 2rem;
}

/* ----- Footer ----- */
.footer {
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--bg-dark);
}
.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ----- Animações ----- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----- Scroll reveal (ativado via JS) ----- */
.fold .fold-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fold.is-visible .fold-content {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsivo ----- */
@media (max-width: 640px) {
  .fold {
    min-height: auto;
    padding: 3rem 0;
  }
  .proof-cards {
    flex-direction: column;
    align-items: center;
  }
  .proof-card {
    width: 100%;
    max-width: 280px;
  }
  .mechanism-box {
    padding: 1.5rem;
  }
  .btn-cta {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  .btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
  }
}
