/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Seções */
.section {
  padding: 60px 0;
}

/* Gradientes e Cores */
.gradient-text {
  background: linear-gradient(45deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.gradient-section {
  background: linear-gradient(180deg, #000 0%, #1f2937 100%);
}

.error-text {
  color: #ef4444;
}

.orange-text {
  color: #f97316;
}

.success-text {
  color: #22c55e;
}

.gray-text {
  color: #d1d5db;
}

/* Botões */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #dc2626, #ea580c);
  color: white;
  padding: 18px 35px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #b91c1c, #c2410c);
}

.btn-large {
  font-size: 20px;
  padding: 20px 40px;
  margin: 30px auto;
  display: block;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero h2 {
  font-size: 1.5rem;
  color: #d1d5db;
  font-weight: 400;
  margin-bottom: 40px;
}

/* Imagem do Hero - Tamanho VSL */
.hero-image {
  margin: 40px auto;
  text-align: center;
  max-width: 600px;
}

.transformation-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
  transition: transform 0.3s ease;
}

.transformation-image:hover {
  transform: scale(1.02);
}

/* Cards */
.card {
  background: #1f2937;
  border-radius: 12px;
  padding: 30px;
  margin: 20px 0;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Depoimentos */
.testimonial {
  background: #1f2937;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin: 20px 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ef4444, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.rating {
  color: #f97316;
}

.rating-text {
  margin-left: 10px;
  color: white;
  font-weight: bold;
}

/* Bônus */
.bonus-card {
  background: #1f2937;
  border-radius: 12px;
  padding: 25px;
  margin: 15px 0;
}

.bonus-1 {
  border-left: 4px solid #ef4444;
}

.bonus-2 {
  border-left: 4px solid #f97316;
}

.bonus-3 {
  border-left: 4px solid #ef4444;
}

.bonus-4 {
  border-left: 4px solid #f97316;
}

.bonus-value-box {
  background: #1f2937;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
  text-align: center;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.bonus-total {
  font-size: 1.2rem;
  color: #ef4444;
  margin-bottom: 10px;
}

.bonus-free {
  font-size: 2rem;
  font-weight: bold;
  color: #22c55e;
  margin-bottom: 15px;
}

.bonus-text {
  font-size: 1.125rem;
  color: #d1d5db;
}

/* Bônus com imagens - Layout Desktop */
.bonus-card-with-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bonus-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(239, 68, 68, 0.3);
  margin: 0 auto;
}

.bonus-content {
  flex: 1;
  text-align: center;
}

/* Garantia */
.guarantee {
  background: linear-gradient(45deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.guarantee-icon {
  font-size: 60px;
  margin-bottom: 30px;
}

.guarantee-content {
  font-size: 18px;
  line-height: 1.8;
}

.guarantee-item {
  margin-bottom: 20px;
}

.guarantee-final {
  margin-top: 30px;
}

/* FAQ */
.faq-item {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 8px;
  padding: 25px;
  margin: 15px 0;
}

/* Preço */
.price-box {
  background: #1f2937;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.price-main {
  font-size: 4rem;
  font-weight: bold;
  color: #ef4444;
  margin: 30px 0;
  line-height: 1;
}

.price-cash {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 1.5rem;
}

.price-copy {
  background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.price-copy-item {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.price-copy-final {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1rem;
}

/* Falsas Soluções */
.false-solution {
  background: linear-gradient(45deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
}

/* Objeções */
.objection-card {
  background: #1f2937;
  border-left: 4px solid #f97316;
  border-radius: 8px;
  padding: 25px;
  margin: 20px 0;
}

/* Benefícios */
.benefit-card {
  background: #1f2937;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 25px;
  margin: 15px 0;
}

/* Urgência */
.urgency-box {
  background: linear-gradient(45deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.urgency-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

/* Boxes de Destaque */
.highlight-box {
  background: linear-gradient(45deg, rgba(239, 68, 68, 0.2), rgba(249, 115, 22, 0.2));
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  margin-top: 30px;
}

.solution-box {
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(234, 88, 12, 0.2));
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-top: 30px;
}

/* Listas */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin: 15px 0;
  display: flex;
  align-items: flex-start;
}

.benefits-list .icon {
  margin-right: 10px;
  font-size: 20px;
  color: #ef4444;
}

.benefits-list .icon.success {
  color: #22c55e;
}

/* CTAs */
.cta-section {
  margin-top: 40px;
}

/* Badges de Segurança */
.security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #9ca3af;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer-text {
  color: #9ca3af;
  font-size: 14px;
  margin-top: 40px;
}

/* Classes Utilitárias */
.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-bold {
  font-weight: bold;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero h2 {
    font-size: 1.1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .text-4xl {
    font-size: 1.8rem;
  }

  .text-3xl {
    font-size: 1.6rem;
  }

  .text-2xl {
    font-size: 1.3rem;
  }

  .card,
  .testimonial,
  .bonus-card,
  .faq-item,
  .objection-card,
  .benefit-card {
    padding: 20px;
    margin: 15px 0;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .btn {
    padding: 15px 25px;
    font-size: 16px;
  }

  .guarantee {
    padding: 25px;
  }

  .price-box {
    padding: 20px;
  }

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

  .security-badges {
    flex-direction: column;
    gap: 10px;
  }

  /* Imagem do Hero - Mobile compacta */
  .hero-image {
    margin: 30px auto;
    max-width: 350px;
  }

  .transformation-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(239, 68, 68, 0.2);
  }

  /* Bônus Mobile - Imagens menores */
  .bonus-card-with-image {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .bonus-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
  }

  .bonus-content {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero h2 {
    font-size: 1rem;
  }

  .text-4xl {
    font-size: 1.6rem;
  }

  .text-3xl {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 10px;
  }

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

  /* Imagem do Hero ainda menor em telas muito pequenas */
  .hero-image {
    margin: 20px auto;
    max-width: 280px;
  }

  /* Bônus ainda menores em telas pequenas */
  .bonus-image {
    max-width: 200px;
  }
}

/* Desktop - Layout horizontal para bônus */
@media (min-width: 769px) {
  .bonus-card-with-image {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .bonus-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin: 0;
  }

  .bonus-content {
    text-align: left;
  }
}
