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

body {
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #333;
  line-height: 1.6;
  padding: 20px 10px;
  min-height: 100vh;
}

.header-badge {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #667eea;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero-section {
  text-align: center;
  margin-bottom: 30px;
}

.main-title {
  font-size: 42px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 15px;
  animation: fadeInDown 0.6s ease;
}

.subtitle {
  font-size: 20px;
  color: #555;
  font-weight: 500;
}

.highlight {
  color: #FF5722;
  font-weight: 700;
}

/* Product Title Section */
.product-title-section {
  text-align: center;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.product-name {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(135deg, #EA6294, #C84E89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(234, 98, 148, 0.2);
  margin: 0;
}

.badge-popular {
  background: linear-gradient(135deg, #FF5722, #FF8A65);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  animation: pulse 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
.section {
  margin: 40px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8f9ff;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-item .icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-content strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 3px;
}

.benefit-content p {
  font-size: 14px;
  color: #666;
}

/* Bonus Section */
.bonus-section {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(255, 152, 0, 0.2);
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.bonus-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
}

.bonus-badge {
  position: absolute;
  top: -10px;
  left: 15px;
  background: linear-gradient(135deg, #E91E63, #F06292);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.bonus-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}

.bonus-icon {
  font-size: 28px;
}

.bonus-info strong {
  display: block;
  font-size: 15px;
  color: #333;
}

.bonus-info p {
  font-size: 13px;
  color: #666;
}

.bonus-value {
  font-size: 18px;
  font-weight: 700;
  color: #00C853;
  white-space: nowrap;
}

.bonus-total {
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  text-align: center;
  border: 2px dashed #FF9800;
}

.bonus-total strong {
  font-size: 18px;
  color: #333;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 20px;
}

.free-tag {
  color: #FF5722;
  font-size: 24px;
  font-weight: 800;
}

/* Price Section */
.price-section {
  background: #f8f9ff;
  padding: 30px;
  border-radius: 15px;
}

.price-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.price-option {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.price-option.featured {
  border: 3px solid #667eea;
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.price-header {
  text-align: center;
  margin-bottom: 15px;
}

.badge-best {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.installments {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}

.price-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin: 10px 0;
}

.price-detail {
  display: block;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-main.pix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pix-icon {
  font-size: 40px;
}

.divider {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #999;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ddd;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Timer */
.urgency-box {
  background: linear-gradient(135deg, #FF5722, #FF8A65);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3);
}

.urgency-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-value {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: white;
  color: #FF5722;
  padding: 15px 25px;
  border-radius: 10px;
  min-width: 90px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timer-label {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 600;
}

.timer-separator {
  font-size: 48px;
  font-weight: 800;
  margin: 0 5px;
}

/* Guarantee Box */
.guarantee-box {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  padding: 25px;
  border-radius: 12px;
  margin: 30px 0;
  box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-align: left;
}

.guarantee-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.guarantee-badge strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.guarantee-badge p {
  font-size: 14px;
  opacity: 0.95;
}

/* CTA Button */
.cta-button {
  display: block;
  background: linear-gradient(135deg, #FF5722, #FF8A65);
  color: white;
  padding: 25px 40px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  margin: 30px 0;
  box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.5);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-icon {
  font-size: 24px;
  margin-right: 10px;
}

.cta-text {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

.cta-subtext {
  display: block;
  font-size: 13px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-button.secondary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Footer Info */
.footer-info {
  text-align: center;
  margin: 30px 0;
}

.security-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.support-text {
  font-size: 14px;
  color: #666;
}

.support-text a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.support-text a:hover {
  text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9ff;
  border-radius: 15px;
}

.testimonials-section h3 {
  text-align: center;
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.stars {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-card strong {
  font-size: 13px;
  color: #667eea;
}

/* FAQ Section */
.faq-section {
  margin: 40px 0;
}

.faq-section h3 {
  text-align: center;
  font-size: 22px;
  color: #333;
  margin-bottom: 25px;
}

.faq-item {
  background: #f8f9ff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
}

.faq-item strong {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: #666;
}

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

/* Responsive */
@media (max-width: 768px) {
  body {
    padding: 10px 5px;
  }

  .container {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .main-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 18px;
  }

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

  .product-name {
    font-size: 28px;
  }

  .price-value {
    font-size: 38px;
  }

  .timer-value {
    font-size: 36px;
    padding: 12px 20px;
    min-width: 70px;
  }

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

  .cta-button {
    padding: 20px 30px;
  }

  .cta-text {
    font-size: 18px;
  }

  .header-badge {
    gap: 15px;
    padding: 10px 15px;
  }

  .header-badge span {
    font-size: 11px;
  }

  .bonus-section,
  .price-section {
    padding: 20px;
  }

  .testimonials-section {
    padding: 20px;
  }
}

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