/* quiz-firemax.css - Estilos Premium Dark FIRE Theme (Vermelho/Laranja) */

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* Dark fire gradient */
  background: linear-gradient(135deg, #1a0505 0%, #2d0a0a 50%, #3d1a0a 100%);
  font-family: 'Poppins', sans-serif;
  color: #e2e8f0;
}

#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

/* ===== Logo ===== */
.logo-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 0 16px;
}

.logo-container img {
  height: 72px;
}

/* ===== Quiz App ===== */
#quiz-app {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 16px;
}

/* ===== Question Content Card ===== */
.question-content {
  position: relative;
  background: rgba(40, 15, 15, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  max-width: 600px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.3),
    0 20px 25px -5px rgba(239, 68, 68, 0.15);
  animation: slideInUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Animações de entrada */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
  }
}

@keyframes fireGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5), 0 0 40px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.7), 0 0 60px rgba(249, 115, 22, 0.5);
  }
}

/* Animações para elementos internos */
.question-content h1 {
  animation: slideInLeft 0.4s ease 0.1s both;
}

.question-content .options-list {
  animation: slideInRight 0.4s ease 0.2s both;
}

.question-content .btn-primary {
  animation: scaleIn 0.3s ease 0.3s both;
}

/* ===== Quiz Header ===== */
.quiz-header {
  margin-bottom: 24px;
}

.step-indicator {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(40, 15, 15, 0.6);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  /* Fire Gradient */
  background: linear-gradient(90deg, #ef4444, #f97316, #fbbf24, #f97316, #ef4444);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
  border-radius: 4px;
  transition: width 0.5s ease;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

/* ===== Typography ===== */
h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 16px;
  line-height: 1.4;
}

.subtitle,
.offer-subtitle {
  color: #fca5a5;
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.question-subtext {
  color: #fb923c;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #ef4444 100%);
  background-size: 200% 100%;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.pulse {
  animation: pulse 2s infinite;
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  animation: none;
}

/* ===== INTRO STEP ===== */
.intro-step {
  padding: 16px 8px;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: fireGlow 2s infinite;
}

.intro-headline {
  font-size: 1.8rem !important;
  line-height: 1.3 !important;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px !important;
  text-align: center;
  padding: 0 8px;
}

.intro-subheadline {
  color: #fca5a5;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  padding: 0 4px;
}

.intro-features {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.intro-features li {
  padding: 12px 16px;
  margin: 10px 0;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #34d399;
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-features li::before {
  content: "🔥";
}

.intro-testimonial-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin: 28px 0;
  text-align: left;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

.intro-testimonial-preview img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(249, 115, 22, 0.5);
}

.intro-testimonial-preview p {
  font-style: italic;
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.5;
}

.intro-testimonial-preview span {
  color: #fb923c;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-large {
  padding: 20px 48px !important;
  font-size: 1.2rem !important;
}

.btn-subtext {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-top: 14px;
}

/* ===== INPUT ===== */
.input-container {
  margin: 28px 0;
}

.name-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-family: inherit;
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  background: rgba(30, 10, 10, 0.6);
  color: #f1f5f9;
  outline: none;
  transition: all 0.3s ease;
}

.name-input::placeholder {
  color: #9ca3af;
}

.name-input:focus {
  border-color: #ef4444;
  background: rgba(40, 15, 15, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

/* ===== OPTIONS ===== */
.options-list {
  list-style: none;
  margin: 24px 0;
}

.options-list li {
  margin-bottom: 8px;
  position: relative;
  animation: slideInRight 0.4s ease both;
}

/* Staggered Animation */
.options-list li:nth-child(1) { animation-delay: 0.1s; }
.options-list li:nth-child(2) { animation-delay: 0.15s; }
.options-list li:nth-child(3) { animation-delay: 0.2s; }
.options-list li:nth-child(4) { animation-delay: 0.25s; }
.options-list li:nth-child(5) { animation-delay: 0.3s; }
.options-list li:nth-child(6) { animation-delay: 0.35s; }

.options-list li input {
  position: absolute;
  opacity: 0;
}

.options-list li label {
  display: block;
  padding: 14px 20px;
  background: rgba(40, 15, 15, 0.6);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-align: left;
  color: #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.options-list li label:hover {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.15);
  transform: translateX(4px);
}

.options-list li.selected label,
.options-list li input:checked+label {
  background: rgba(239, 68, 68, 0.2);
  border-color: #f97316;
  color: #fca5a5;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* ===== MULTISELECT ===== */
.options-list.multiselect li.selected label {
  background: rgba(239, 68, 68, 0.2);
  border-color: #f97316;
}

.options-list.multiselect li.selected label::after {
  content: '✓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #f97316;
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== VALIDATION / DIAGNOSIS ===== */
.validation-content,
.diagnosis-explanation,
.exclusivity-content {
  text-align: left;
  margin: 24px 0;
  padding: 0 8px;
}

.validation-content p,
.diagnosis-explanation p,
.exclusivity-content p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #d1d5db;
}

.text-negative {
  color: #f87171 !important;
}

.text-highlight,
.text-success {
  color: #34d399 !important;
  font-weight: 600;
}

.text-warning {
  color: #fbbf24 !important;
  font-weight: 600;
}

.text-bullet {
  padding-left: 16px;
}

.spacer {
  height: 16px;
}

.diagnosis-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.diagnosis-result {
  margin: 24px 0;
}

.diagnosis-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
  animation: fireGlow 2s infinite;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  margin: 28px 0;
}

.product-image-large {
  max-width: 300px;
  width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 20px 40px rgba(239, 68, 68, 0.2));
  animation: float 4s ease-in-out infinite;
}

.product-highlights {
  list-style: none;
  margin: 28px 0;
  text-align: left;
}

.product-highlights li {
  padding: 14px 20px;
  margin: 10px 0;
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.how-step {
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
  border-color: #f97316;
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 1rem;
  color: #fb923c;
  margin-bottom: 8px;
  font-weight: 600;
}

.how-step p {
  font-size: 0.85rem;
  color: #fca5a5;
  line-height: 1.4;
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-container {
  position: relative;
  margin: 24px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
  background: #000;
}

.video-container video {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 20px;
  cursor: pointer;
}

.play-btn {
  background: linear-gradient(135deg, #ef4444, #f97316) !important;
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
  animation: btnPulse 2s infinite;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 8px 50px rgba(249, 115, 22, 0.6);
  }
}

.video-hint {
  text-align: center;
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 20px 20px;
}

.video-unmute-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-info {
  background: rgba(40, 15, 15, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.video-info strong {
  display: block;
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.video-info .location {
  display: block;
  font-size: 0.9rem;
  color: #fca5a5;
  margin-bottom: 12px;
}

.video-info .result-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* ===== BEFORE/AFTER GALLERY ===== */
.transformation-card {
  background: rgba(40, 15, 15, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 24px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.transformation-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.transformation-info {
  padding: 24px;
  text-align: center;
}

.transformation-info h3 {
  font-size: 1.3rem;
  color: #f1f5f9;
  margin-bottom: 16px;
}

.result-badge.large {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.transformation-info .quote {
  font-style: italic;
  color: #fca5a5;
  font-size: 1rem;
  line-height: 1.5;
}

/* Transformation Slider */
.transformation-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px 0;
}

.slide-item {
  display: none;
  background: rgba(40, 15, 15, 0.85);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeIn 0.5s ease;
}

.slide-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  background: rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-dot.active {
  background: linear-gradient(135deg, #ef4444, #f97316);
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

.gallery-instruction {
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ===== SOCIAL PROOF GRID ===== */
.stats-row {
  display: flex;
  justify-content: space-around;
  margin: 24px 0;
  padding: 20px;
  background: rgba(40, 15, 15, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.8rem;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.testimonial-card-horizontal {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 16px;
  padding: 16px;
}

.testimonial-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 115, 22, 0.5);
}

.testimonial-content {
  flex: 1;
  text-align: left;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.testimonial-header strong {
  color: #f1f5f9;
  font-size: 0.95rem;
}

.testimonial-header .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-content p {
  color: #d1d5db;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.4;
}

/* ===== AUDIO TESTIMONIALS (NOVO!) ===== */
.audio-testimonials-container {
  margin: 24px 0;
}

.audio-card {
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.audio-info {
  flex: 1;
}

.audio-info strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.audio-info .location {
  color: #fb923c;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.audio-info .summary {
  color: #d1d5db;
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.4;
}

.audio-player {
  width: 100%;
  margin-top: 12px;
  border-radius: 8px;
}

.audio-player audio {
  width: 100%;
  height: 40px;
}

/* ===== EXCLUSIVITY ===== */
.exclusivity-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounceIn 0.6s ease;
}

.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 12px 24px;
  border-radius: 50px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: #fca5a5;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ===== OFFER PAGE ===== */
.offer-header {
  margin-bottom: 24px;
}

.offer-header h1 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.purchases-today {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #fb923c;
  animation: pulse 2s infinite;
}

.fire-icon {
  font-size: 1.2rem;
}

.payment-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
  border: 2px solid rgba(16, 185, 129, 0.4);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.payment-highlight-icon {
  font-size: 2.5rem;
}

.payment-highlight strong {
  display: block;
  color: #34d399;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.payment-highlight p {
  color: #a7f3d0;
  font-size: 0.9rem;
}

.offer-timer {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.timer-label {
  display: block;
  color: #fca5a5;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.timer-countdown {
  font-size: 2rem;
  font-weight: 700;
  color: #ef4444;
  font-family: 'Courier New', monospace;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.payment-method {
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #d1d5db;
}

.payment-method.highlight {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  color: #34d399;
  font-weight: 600;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.package-card {
  background: rgba(40, 15, 15, 0.7);
  border: 2px solid rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #f97316;
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.package-card.featured {
  border-color: #f97316;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.package-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.package-name {
  font-size: 1.3rem;
  color: #f1f5f9;
  margin-bottom: 8px;
  margin-top: 8px;
}

.package-bottles-img {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
}

.bottle-img {
  height: 80px;
  object-fit: contain;
}

.package-duration {
  color: #fb923c;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.package-price {
  margin: 16px 0;
}

.original-price {
  display: block;
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
  margin-bottom: 4px;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.package-installment {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.package-perday {
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.package-cod {
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.package-bonus {
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.bonus-text {
  text-align: center;
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 24px;
  padding: 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 12px;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.guarantee-box .shield {
  font-size: 2.5rem;
}

.guarantee-box h4 {
  color: #34d399;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.guarantee-box p {
  color: #a7f3d0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.security-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.seal-icon {
  font-size: 2rem;
}

.seal-text strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.95rem;
}

.seal-text span {
  color: #94a3b8;
  font-size: 0.8rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-badge {
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #d1d5db;
}

/* ===== FAQ ===== */
.faq-section {
  margin-top: 32px;
  text-align: left;
}

.faq-title {
  color: #f1f5f9;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  background: rgba(40, 15, 15, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  font-weight: 600;
  color: #fb923c;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(239, 68, 68, 0.1);
}

.faq-answer {
  padding: 0 20px 16px;
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: rgba(40, 15, 15, 0.95);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 20px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal h2 {
  color: #f97316;
  margin-bottom: 16px;
}

.modal p {
  color: #d1d5db;
  margin-bottom: 24px;
}

.modal-close-btn {
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-close-btn:hover {
  transform: scale(1.05);
}

/* ===== SPINNER ===== */
#spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

#spinner-overlay.active {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(239, 68, 68, 0.3);
  border-top-color: #f97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== PROGRESS BAR VIDEO ===== */
.progress-bar-video {
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  margin-top: 5px;
  transition: width 0.2s;
  border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .question-content {
    padding: 28px 20px;
    border-radius: 20px;
  }

  h1 {
    font-size: 1.4rem;
  }

  .intro-headline {
    font-size: 1.5rem !important;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .package-card {
    padding: 20px 16px;
  }

  .current-price {
    font-size: 1.8rem;
  }

  .bottle-img {
    height: 60px;
  }

  .intro-testimonial-preview {
    flex-direction: column;
    text-align: center;
  }

  .audio-card {
    flex-direction: column;
    text-align: center;
  }

  .audio-icon {
    margin: 0 auto;
  }

  .payment-highlight {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== tsParticles Fire Config ===== */