/* ==========================================================================
   IDENTIDADE VISUAL PADRÃO — mesma paleta usada em todas as landing pages
   ========================================================================== */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --gold-dark: #8B6914;

  --navy: #0A1628;
  --navy-mid: #143555;
  --navy-light: #25517B;

  --cream: #F8F4EE;
  --cream-dark: #EDE6D8;
  --white: #FFFFFF;

  --gray-light: #CECDC4;
  --blue-light: #7E8FC0;
  --black: #000000;

  --text-light: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.45);

  --sans: 'DM Sans', sans-serif;
  --serif: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background-color: var(--navy);
  color: var(--white);
}

img { max-width: 100%; display: block; }

button { font-family: var(--sans); cursor: pointer; }

/* Respeita quem prefere menos animação (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   ESTRUTURA GERAL DOS PASSOS (STEPS)
   ========================================================================== */
.step {
  display: none;
  min-height: 100vh;
  padding: 64px 24px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.step-active {
  display: block;
}

.step-visible {
  opacity: 1;
  transform: translateX(0);
}

.container {
  max-width: 640px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 640px;
}

.center { text-align: center; }

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
.badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.1);
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border: none;
}

.badge-inline {
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 16px;
}

.headline {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 12px;
}

.serif-title {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--white);
  margin: 0 0 8px;
}

.serif-title-lg {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 12px;
}

.card-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 20px;
}

.subtitle, .body-text {
  color: var(--text-light);
  font-size: 17px;
  margin: 0 0 40px;
}

.mb-8 { margin-bottom: 32px; }

.hint {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.hint-center { text-align: center; margin-top: 12px; }

.legal {
  margin-top: 48px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .headline { font-size: 48px; }
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.cta-slot {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background-color 0.2s ease;
}

.btn-gold.unlocked {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-gold:hover { background: var(--gold-light); }

.btn-block { width: 100%; justify-content: center; margin-top: 4px; }

.icon-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-gold:hover .icon-arrow { transform: translateX(3px); }

/* ==========================================================================
   VÍDEO (YOUTUBE)
   ========================================================================== */
.video-card {
  position: relative;
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* proporção 16:9 */
  background: #000;
}

.video-wrapper iframe,
#youtube-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress-track {
  height: 4px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.2s linear;
}

/* ==========================================================================
   HEADER (STEP 2 / STEP 3)
   ========================================================================== */
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--white);
}

.location-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* ==========================================================================
   IMAGEM HERO (STEP 2)
   ========================================================================== */
.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.title-block { margin-bottom: 32px; }

/* ==========================================================================
   CARD DE QUALIFICAÇÃO / FORMULÁRIO
   ========================================================================== */
.card {
  border-radius: 16px;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .card { padding: 32px; }
}

.card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.step-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.fin-box {
  border-radius: 12px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 24px;
}

.fin-box-title {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}

.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  margin: 0;
  font-size: 14px;
}

.fin-grid dt { color: var(--text-muted); margin: 0; }
.fin-grid dd { color: var(--white); text-align: right; margin: 0; }

.question {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--white);
  margin: 0 0 16px;
}

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

.option-btn {
  width: 100%;
  text-align: left;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.05);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.option-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.option-btn-subtle {
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}

.option-btn-subtle:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   FORMULÁRIO DE LEAD (STEP 3)
   ========================================================================== */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form input {
  width: 100%;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--white);
}

.lead-form input::placeholder { color: rgba(255, 255, 255, 0.3); }

.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ==========================================================================
   GRADE DE DESTAQUES (STEP 3)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 53, 85, 0.5);
  padding: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.feature-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
}

.feature-icon svg { width: 16px; height: 16px; }
