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

:root {
  --primary: #DC2626;
  --primary-dark: #991B1B;
  --primary-light: #EF4444;
  --danger: #B91C1C;
  --gold: #F59E0B;
  --dark: #0A0A0A;
  --dark-2: #1A1A1A;
  --dark-3: #2A2A2A;
  --gray: #9CA3AF;
  --light-gray: #1F1F1F;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #DC2626 0%, #991B1B 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.9);
  --shadow-red: 0 0 30px rgba(220, 38, 38, 0.3);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--white);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Urgency Bar */
.urgency-bar {
  background: var(--gradient);
  padding: 14px 16px;
  border-bottom: 3px solid var(--gold);
  animation: pulseBar 2s ease-in-out infinite;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.urgency-icon {
  font-size: 20px;
  animation: shake 0.5s ease-in-out infinite;
  flex-shrink: 0;
}

.urgency-text {
  color: var(--white);
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}

.mobile-break {
  display: none;
}

@keyframes pulseBar {
  0%, 100% {
    background: var(--gradient);
  }
  50% {
    background: var(--primary-dark);
  }
}

@keyframes shake {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-dark);
  padding: 40px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-red);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease-out;
  border: 2px solid var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.red-text {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
  line-height: 1.7;
}

/* Carrossel de Cantadas - MELHORADO */
.carousel-container {
  margin: 50px auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.carousel-wrapper {
  overflow: hidden;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll 45s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-card {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border: 2px solid var(--light-gray);
  border-radius: 20px;
  padding: 24px;
  min-width: 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: relative;
}

.carousel-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
}

.carousel-card.featured-card {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, var(--dark-3) 100%);
  box-shadow: var(--shadow-red);
}

.featured-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 2;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.carousel-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.5;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.carousel-card.featured-card .carousel-number {
  opacity: 1;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.carousel-text {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  flex: 1;
  font-weight: 500;
}

.carousel-tag {
  font-size: 13px;
  color: var(--white);
  background: var(--dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid var(--light-gray);
}

.card-bottom {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}

.success-rate {
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}

.hero-cta {
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-price-info {
  text-align: center;
  background: var(--dark-2);
  padding: 24px 32px;
  border-radius: 16px;
  border: 1px solid var(--light-gray);
  max-width: 600px;
  width: 100%;
}

.price-main-hero {
  font-size: 20px;
  color: var(--white);
  margin: 0 0 8px 0;
}

.price-main-hero strong {
  color: var(--primary);
  font-size: 32px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.price-breakdown-hero {
  font-size: 15px;
  color: var(--gray);
  margin: 0 0 16px 0;
}

.price-breakdown-hero strong {
  color: var(--gold);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border: 2px solid var(--primary-light);
  font-size: 18px;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.btn-danger {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
  border: 2px solid var(--primary-light);
  font-weight: 700;
}

.btn-danger:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: var(--shadow-red);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
  }
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  width: 100%;
  justify-content: center;
}

.hero-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
}

.price-tag {
  color: var(--gray);
}

.price-tag strong {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
}

.guarantee {
  color: var(--gray);
  font-size: 13px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray);
}

/* Exemplos de Cantadas - GRID HORIZONTAL */
.examples-section {
  margin-top: 60px;
  padding: 48px 32px;
  background: var(--dark-2);
  border-radius: 20px;
  position: relative;
}

.examples-header {
  text-align: center;
  margin-bottom: 40px;
}

.examples-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.examples-subtitle {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
}

.examples-grid-horizontal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.example-card {
  background: var(--dark-3);
  padding: 24px;
  border-radius: 16px;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.example-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.example-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, var(--dark-3) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.4;
}

.example-card.featured .card-number {
  opacity: 1;
}

.card-tag {
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 600;
}

.card-text {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  font-style: italic;
  flex: 1;
}

.card-footer {
  display: flex;
  justify-content: flex-end;
}

.card-success {
  font-size: 13px;
  color: var(--gold);
  font-weight: 700;
}

.examples-footer-box {
  text-align: center;
  padding: 32px;
  background: var(--dark-3);
  border-radius: 16px;
}

.examples-footer-text {
  font-size: 18px;
  color: var(--white);
  margin: 0 0 20px 0;
  font-weight: 700;
}

.btn-examples {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-examples:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
}

/* Problem Section */
.problem-section {
  padding: 80px 20px;
  background: var(--dark);
}

.section-title-dark {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--dark-2);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  text-align: center;
}

.problem-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.problem-icon {
  font-size: 56px;
  display: block;
  margin-bottom: 20px;
}

.problem-card p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.problem-cta {
  text-align: center;
  margin-top: 60px;
  padding: 48px 32px;
  background: var(--dark-2);
  border-radius: 20px;
}

.problem-cta h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.problem-cta p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 32px;
}

/* Benefits Section */
.benefits {
  padding: 80px 20px;
  background: var(--gradient-dark);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--dark-2);
  padding: 36px;
  border-radius: 20px;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.benefit-card.main-benefit {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, var(--dark-2) 100%);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}

.benefit-card.bonus-card {
  border: 1px solid var(--primary);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, var(--dark-2) 100%);
  box-shadow: 0 0 15px rgba(220, 38, 38, 0.1);
}

.benefit-card.bonus-card:hover {
  box-shadow: 0 0 25px rgba(220, 38, 38, 0.3);
  border-color: var(--primary-light);
}

.bonus-value-tag {
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--dark-3);
  border-radius: 12px;
  font-size: 14px;
  text-align: center;
}

.bonus-value-tag s {
  color: var(--gray);
  margin-right: 8px;
}

.bonus-value-tag strong {
  color: var(--primary);
  font-size: 15px;
  font-weight: 900;
}

.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.benefit-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 20px;
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.testimonial-card {
  background: var(--dark-2);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-striked {
  color: var(--gray);
  text-decoration: line-through;
  font-size: 13px;
  margin-right: 8px;
}

.value-free {
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.stars {
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  border: 2px solid var(--primary-light);
}

.author-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}

.author-location {
  font-size: 13px;
  color: var(--gray);
}


/* CTA Section - SIMPLIFICADA */
.cta-section {
  padding: 80px 20px;
  background: var(--dark);
}

.offer-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark-2);
  padding: 48px 40px;
  border-radius: 24px;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Countdown Simples */
/* Countdown Timer Destacado */
.countdown-timer-wrapper {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(239, 68, 68, 0.05));
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  animation: pulse-border 2s ease-in-out infinite;
}

.countdown-timer-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary), #ff4444, var(--primary));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  animation: glow-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes glow-border {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.5; }
}

.countdown-timer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.timer-icon {
  font-size: 32px;
  animation: shake 1.5s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.timer-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.countdown-timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.timer-box {
  background: var(--dark-1);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.timer-number {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  font-family: 'Courier New', monospace;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.timer-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.timer-separator {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.timer-warning {
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Título da Oferta */
.offer-main-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
}

/* Preço Destaque */
.price-highlight {
  text-align: center;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--dark-3);
  border-radius: 16px;
}

.price-old-simple {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
}

.price-old-simple span {
  text-decoration: line-through;
  font-size: 24px;
}

.price-new-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.price-label {
  font-size: 16px;
  color: var(--gray);
}

.price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.currency-symbol {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 12px;
}

.price-integer {
  font-size: 96px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
}

.price-decimal {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 12px;
}

.price-installment {
  font-size: 16px;
  color: var(--white);
}

/* O Que Está Incluído */
.included-section {
  margin-bottom: 32px;
}

.included-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--dark-3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.included-item.bonus-item {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(10, 10, 10, 0.5) 100%);
}

.item-check {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 900;
}

.item-text {
  flex: 1;
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.bonus-value {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

.bonus-value s {
  color: var(--gray);
}

.bonus-value strong {
  color: var(--primary);
  font-size: 15px;
}

/* Botão de Compra */
.btn-buy-now {
  display: block;
  width: 100%;
  background: var(--gradient);
  color: var(--white);
  text-align: center;
  padding: 24px 32px;
  border-radius: 16px;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.6);
  transition: all 0.3s ease;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(220, 38, 38, 0.8);
}




/* FAQ Section */
.faq {
  padding: 80px 20px;
  background: var(--gradient-dark);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-2);
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  user-select: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 24px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

/* Footer */
/* Footer Simplificado */
.footer {
  background: var(--dark-2);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  align-items: start;
}

/* Brand Area */
.footer-brand-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-box {
  background: var(--gradient);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.5px;
}

.footer-description {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: var(--primary);
}

/* Footer Badges */
.footer-badges-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(220, 38, 38, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-badge-item:hover {
  background: rgba(220, 38, 38, 0.1);
}

.badge-emoji {
  font-size: 18px;
}

.badge-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}

/* Separator */
.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto 30px;
}

/* Bottom Area */
.footer-bottom-area {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 14px;
  color: var(--white);
  margin: 0 0 12px 0;
  font-weight: 500;
}

.footer-legal {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-box {
    padding: 10px;
  }

  .footer-logo-img {
    height: 34px;
  }

  .footer-brand-text {
    font-size: 20px;
  }

  .footer-description {
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .urgency-bar {
    padding: 12px 16px;
  }

  .urgency-content {
    gap: 8px;
  }

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

  .urgency-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-break {
    display: inline;
  }

  .hero {
    padding: 50px 20px 40px;
  }

  .carousel-container {
    margin: 40px auto;
  }

  .carousel-wrapper {
    padding: 20px 0;
  }

  .carousel-card {
    min-width: 300px;
    max-width: 300px;
    padding: 20px;
  }

  .countdown-timer-wrapper {
    padding: 24px 16px;
    margin-bottom: 32px;
  }

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

  .timer-icon {
    font-size: 24px;
  }

  .countdown-timer-display {
    gap: 12px;
  }

  .timer-box {
    min-width: 100px;
    padding: 16px 20px;
  }

  .timer-number {
    font-size: 48px;
  }

  .timer-separator {
    font-size: 36px;
  }

  .timer-warning {
    font-size: 13px;
  }

  .carousel-number {
    font-size: 28px;
  }

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

  .success-rate {
    font-size: 13px;
  }

  .hero-price-info {
    padding: 20px 24px;
  }

  .price-main-hero strong {
    font-size: 28px;
  }

  .examples-section {
    padding: 40px 20px;
  }

  .examples-grid-horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .example-card {
    padding: 20px;
  }

  .card-text {
    font-size: 15px;
  }

  .price-breakdown {
    text-align: center;
  }

  .problem-section,
  .benefits,
  .testimonials,
  .cta-section,
  .faq {
    padding: 60px 20px;
  }

  .problems-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .offer-wrapper {
    padding: 32px 24px;
  }

  .countdown-display {
    font-size: 32px;
  }

  .price-integer {
    font-size: 72px;
  }

  .price-decimal {
    font-size: 36px;
  }

  .currency-symbol {
    font-size: 24px;
  }

  .btn-buy-now {
    font-size: 16px;
    padding: 20px 24px;
  }

  .quick-info {
    flex-direction: column;
    gap: 8px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .social-icons {
    align-items: center;
  }

  .footer-list {
    align-items: center;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}
