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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
}

/* Banner de Sucesso */
.success-banner {
  background-color: #22c55e;
  color: #000;
  text-align: center;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
  margin-bottom: 32px;
}

/* Títulos */
.main-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
  text-wrap: balance;
}

.highlight-green {
  color: #22c55e;
}

.highlight-yellow {
  color: #fbbf24;
}

/* Vídeos */
.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vsl-video {
  max-width: 600px;
  margin-bottom: 48px;
}

.video-audio-notice {
  text-align: center;
  color: #fbbf24;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.youtube-section {
  margin: 48px 0;
}

/* Seção de Oferta */
.offer-section {
  text-align: center;
  margin: 48px 0;
}

.offer-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
}

.offer-subtitle {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Benefícios */
.benefits {
  max-width: 600px;
  margin: 0 auto 32px;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.checkmark {
  font-size: 20px;
  flex-shrink: 0;
}

/* Preço */
.price-label {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  color: #22c55e;
  margin-bottom: 32px;
  line-height: 1;
}

.price-special {
  color: #fbbf24;
}

/* Botões */
.btn-primary,
.btn-secondary {
  width: 100%;
  max-width: 600px;
  padding: 20px 32px;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin: 0 auto 16px;
  display: block;
}

.btn-primary {
  background-color: #22c55e;
  color: #000;
}

.btn-primary:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
  background-color: #6b7280;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #4b5563;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 114, 128, 0.4);
}

.btn-final {
  margin-top: 48px;
  margin-bottom: 48px;
}

/* Página Segunda Chance */
.segunda-chance .wait-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #fbbf24;
  text-wrap: balance;
}

.persuasion-section {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.persuasion-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ef4444;
  text-wrap: balance;
}

.persuasion-text {
  font-size: 18px;
  line-height: 1.6;
  color: #d1d5db;
}

/* Responsivo */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  .main-title,
  .wait-title {
    font-size: 24px;
  }

  .offer-title {
    font-size: 22px;
  }

  .persuasion-title {
    font-size: 20px;
  }

  .price {
    font-size: 36px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .success-banner {
    font-size: 14px;
    padding: 10px 16px;
  }

  .main-title,
  .wait-title {
    font-size: 20px;
  }

  .offer-title {
    font-size: 18px;
  }

  .persuasion-title {
    font-size: 18px;
  }

  .persuasion-text {
    font-size: 16px;
  }

  .price {
    font-size: 32px;
  }

  .benefit-item {
    font-size: 14px;
  }
}
