/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.headline {
  font-size: clamp(20px, 5vw, 28px);
  color: #00ffb3;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 255, 179, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px rgba(0, 255, 179, 0.3); }
  to { text-shadow: 0 0 20px rgba(0, 255, 179, 0.6); }
}

.subheadline {
  font-size: clamp(14px, 3vw, 18px);
  color: #ffd700;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert {
  background: linear-gradient(45deg, #ff4757, #ff3838);
  color: #ffffff;
  padding: 15px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

#countdown {
  color: #ffcc00;
  font-size: 1.1em;
}

/* Progress Bar */
.progress-container {
  margin: 20px 0;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: #333;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar::before {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #00ffb3, #00d4aa);
  width: 33.33%;
  transition: width 0.5s ease;
  border-radius: 3px;
}

.progress-text {
  color: #888;
  font-size: 14px;
}

/* Quiz Styles */
.quiz-container {
  margin-bottom: 30px;
}

.question {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.question.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.question h3 {
  margin-bottom: 20px;
  color: #00ffb3;
  font-size: 18px;
  text-align: center;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-btn {
  background: linear-gradient(145deg, #333, #444);
  color: #ffffff;
  border: 2px solid transparent;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-btn:hover {
  background: linear-gradient(145deg, #444, #555);
  border-color: #00ffb3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 179, 0.2);
}

.option-btn.highlight {
  background: linear-gradient(145deg, #ff4757, #ff3838);
  border-color: #ff4757;
}

.option-btn.highlight:hover {
  background: linear-gradient(145deg, #ff3838, #ff2f2f);
  box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.option-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.option-btn:hover::before {
  left: 100%;
}

/* Results Section */
.results-section {
  text-align: center;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.results-content h2 {
  color: #00ffb3;
  font-size: 24px;
  margin-bottom: 15px;
}

.results-text {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ccc;
}

.benefits {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  text-align: left;
}

.benefit-item {
  padding: 8px 0;
  font-size: 16px;
  color: #00ffb3;
}

.pricing-card {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  padding: 25px;
  border-radius: 15px;
  margin: 25px 0;
  border: 2px solid #ffd700;
  position: relative;
}

.pricing-card::before {
  content: '🔥 OFERTA LIMITADA';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.price-strike {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
}

.price-current {
  font-size: 32px;
  color: #ffd700;
  font-weight: bold;
  margin: 10px 0;
}

.price-subtitle {
  color: #ff4757;
  font-weight: bold;
}

.cta-button {
  background: linear-gradient(45deg, #ff4757, #ff3838);
  color: white;
  border: none;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
}

.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: rgba(0, 255, 179, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
}

.guarantee-badge {
  font-size: 24px;
}

.guarantee-text {
  text-align: left;
  font-size: 14px;
}

/* Trust Seals */
.trust-seals {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.seal {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 179, 0.3);
  min-width: 140px;
  transition: all 0.3s ease;
}

.seal:hover {
  border-color: #00ffb3;
  box-shadow: 0 5px 15px rgba(0, 255, 179, 0.2);
  transform: translateY(-2px);
}

.seal-icon {
  font-size: 20px;
  color: #00ffb3;
}

.seal-text {
  text-align: left;
  font-size: 11px;
  line-height: 1.3;
}

.seal-text strong {
  color: #00ffb3;
  display: block;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 2px;
}

.seal-text span {
  color: #888;
  font-size: 9px;
}

.secure-seal .seal-icon {
  color: #ffd700;
}

.secure-seal .seal-text strong {
  color: #ffd700;
}

.guarantee-seal .seal-icon {
  color: #00ff88;
}

.guarantee-seal .seal-text strong {
  color: #00ff88;
}

/* Testimonials */
.testimonials {
  margin: 40px 0;
}

.testimonials h3 {
  text-align: center;
  color: #00ffb3;
  margin-bottom: 25px;
  font-size: 20px;
}

.testimonial {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  padding: 20px;
  border-radius: 15px;
  margin: 15px 0;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-content {
  flex: 1;
}

.testimonial-stars {
  color: #ffd700;
  margin-bottom: 8px;
}

.testimonial-content p {
  margin-bottom: 8px;
  line-height: 1.5;
}

.testimonial-date {
  color: #888;
  font-size: 12px;
}

/* FAQ Section */
.faq-section {
  margin: 40px 0;
}

.faq-section h3 {
  text-align: center;
  color: #00ffb3;
  margin-bottom: 25px;
  font-size: 20px;
}

.faq-item {
  background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
  border-radius: 10px;
  margin: 10px 0;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 255, 179, 0.1);
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #ccc;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Notification Popup */
.notification-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #00ffb3, #00d4aa);
  color: #000;
  padding: 8px 12px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 255, 179, 0.4);
  z-index: 1000;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  font-weight: 400;
  max-width: 220px;
  font-size: 12px;
}

.notification-popup.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notification-icon {
  font-size: 14px;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-cta button {
  background: linear-gradient(45deg, #ff4757, #ff3838);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
  
  .notification-popup {
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .floating-cta {
    right: 10px;
  }
  
  .trust-seals {
    flex-direction: column;
    align-items: center;
  }
  
  .seal {
    min-width: 200px;
    justify-content: center;
  }
}