/* quiz-mounjalift.css - Estilos Premium DELICATE (Light Theme) */

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  /* Soft warm gradient: Rose to Champagne */
  background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 50%, #fdf2f8 100%);
  font-family: 'Poppins', sans-serif;
  color: #334155;
  /* Slate 700 */
}

#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  /* Softer particles */
}

/* ===== Logo ===== */
.logo-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 0 16px;
}

.logo-container img {
  height: 52px;
  /* Invert white logo to dark gray/black for visibility, adding a slight hue rotate for warmth */
  filter: invert(1) brightness(0.5) sepia(1) hue-rotate(-50deg) saturate(1.5);
  /* Fallback if filter doesn't look perfect: just invert to dark gray */
  filter: invert(1) brightness(0.4);
}

/* ===== 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(255, 255, 255, 0.9);
  border: 1px solid rgba(244, 114, 182, 0.2);
  /* Soft Pink Border */
  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.05),
    0 20px 25px -5px rgba(244, 114, 182, 0.1);
  /* Soft rosy shadow */
  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);
  }
}

/* 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;
  /* Slate 400 */
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f1f5f9;
  /* Slate 100 */
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  /* Soft Pink Gradient */
  background: linear-gradient(90deg, #f472b6, #fb7185, #f472b6);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
  border-radius: 4px;
  transition: width 0.5s ease;
  box-shadow: 0 2px 4px rgba(244, 114, 182, 0.2);
}

/* ===== Typography ===== */
h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e293b;
  /* Slate 800 */
  margin-bottom: 16px;
  line-height: 1.4;
}

.subtitle,
.offer-subtitle {
  color: #64748b;
  /* Slate 500 */
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 400;
}

.question-subtext {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* ===== INTRO STEP ===== */
.intro-step {
  padding: 16px 8px;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  background: rgba(253, 224, 71, 0.2);
  /* Soft Yellow Bg */
  color: #d97706;
  /* Amber 600 */
  border: 1px solid rgba(251, 191, 36, 0.3);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.intro-headline {
  font-size: 1.8rem !important;
  line-height: 1.3 !important;
  color: #be185d;
  /* Pink 700 */
  background: linear-gradient(135deg, #be185d 0%, #db2777 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: #475569;
  /* Slate 600 */
  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: #f0fdf4;
  /* Light Green Bg */
  border: 1px solid #bbf7d0;
  /* Green 200 */
  border-radius: 12px;
  font-size: 0.95rem;
  color: #15803d;
  /* Green 700 */
  display: flex;
  align-items: center;
  gap: 10px;
}

.intro-features li::before {
  content: "✨";
}

.intro-testimonial-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #ffe4e6;
  /* Rose 100 */
  border-radius: 16px;
  padding: 20px;
  margin: 28px 0;
  text-align: left;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.intro-testimonial-preview img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fecdd3;
  /* Rose 200 */
}

.intro-testimonial-preview p {
  font-style: italic;
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.5;
}

.intro-testimonial-preview span {
  color: #db2777;
  /* Pink 600 */
  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 #e2e8f0;
  /* Slate 200 */
  border-radius: 16px;
  background: #f8fafc;
  /* Slate 50 */
  color: #1e293b;
  outline: none;
  transition: all 0.3s ease;
}

.name-input::placeholder {
  color: #94a3b8;
}

.name-input:focus {
  border-color: #f472b6;
  /* Pink 400 */
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244, 114, 182, 0.1);
}

/* ===== 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: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  text-align: left;
  color: #475569;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.options-list li label:hover {
  border-color: #f472b6;
  background: #fdf2f8;
  transform: translateX(4px);
}

.options-list li.selected label,
.options-list li input:checked+label {
  background: #fff1f2;
  /* Rose 50 */
  border-color: #db2777;
  /* Pink 600 */
  color: #db2777;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(219, 39, 119, 0.15);
}

/* ===== MULTISELECT ===== */
.options-list.multiselect li.selected label {
  background: #fff1f2;
  border-color: #db2777;
}

.options-list.multiselect li.selected label::after {
  content: '✓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #db2777;
  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: #475569;
}

.text-negative {
  color: #e11d48;
}

.text-highlight,
.text-success {
  color: #059669;
  font-weight: 600;
}

.text-warning {
  color: #d97706;
  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, #dc2626);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: pulse 2s infinite;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  margin: 28px 0;
}

.product-image-large {
  max-width: 300px;
  width: 100%;
  border-radius: 0;
  /* Remove border radius if transparent PNG, else keep */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  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: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #334155;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.how-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s;
}

.how-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: #f472b6;
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.how-step h3 {
  font-size: 1rem;
  color: #db2777;
  margin-bottom: 8px;
  font-weight: 600;
}

.how-step p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-container {
  position: relative;
  margin: 24px 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  background: #000;
}

.video-container video {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  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, #10b981, #059669);
  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(16, 185, 129, 0.4);
  animation: btnPulse 2s infinite;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 8px 50px rgba(16, 185, 129, 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: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.video-info strong {
  display: block;
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.video-info .location {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 12px;
}

.video-info .result-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #a7f3d0;
}

/* ===== BEFORE/AFTER GALLERY ===== */
.transformation-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  overflow: hidden;
  margin: 24px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.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: #1e293b;
  margin-bottom: 16px;
}

.result-badge.large {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.transformation-info .quote {
  font-style: italic;
  color: #4b5563;
  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: #fff;
  border: 1px solid #e2e8f0;
  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;
  border-radius: 50%;
  background: #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #db2777;
  transform: scale(1.3);
}

.gallery-instruction {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* ===== SOCIAL PROOF GRID ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 24px 0;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #db2777;
}

.stat-label {
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.mini-testimonial {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
}

.mini-testimonial img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #fecdd3;
}

.mini-info strong {
  font-size: 0.9rem;
  color: #1e293b;
  display: block;
}

.mini-info .stars {
  display: block;
  color: #fbbf24;
  font-size: 0.8rem;
  margin: 6px 0;
}

.mini-info p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
}

/* ===== EXCLUSIVITY ===== */
.exclusivity-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.viewers-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fef2f2;
  /* Red 50 */
  border: 1px solid #fecaca;
  /* Red 200 */
  color: #ef4444;
  /* Red 500 */
  border-radius: 30px;
  padding: 12px 24px;
  margin: 24px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* ===== OFFER ===== */
.offer-header {
  margin-bottom: 20px;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 16px 28px;
  border-radius: 16px;
  margin-bottom: 28px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
  animation: pulse 2s infinite;
}

.timer-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.timer-countdown {
  background: #fff;
  color: #dc2626;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: monospace;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0;
}

.package-card {
  position: relative;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.package-card:hover {
  border-color: #f472b6;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.package-card.featured {
  border-color: #db2777;
  background: #fff;
  box-shadow: 0 15px 40px rgba(219, 39, 119, 0.15);
  transform: scale(1.02);
}

.package-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f472b6, #db2777);
  color: #fff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(219, 39, 119, 0.3);
}

.package-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.package-bottles {
  font-size: 1.5rem;
  margin: 12px 0;
}

.package-duration {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.package-price .original-price {
  font-size: 1.1rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.package-price .current-price {
  font-size: 2rem;
  font-weight: 800;
  color: #059669;
  /* Green 600 */
}

.package-installment {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 6px;
}

.package-perday {
  font-size: 0.85rem;
  color: #059669;
  margin-bottom: 8px;
  font-weight: 600;
}

.package-cod {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #059669;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
}

.package-bonus {
  background: #fffbeb;
  border: 1px solid #fde047;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.85rem;
  color: #d97706;
  margin-bottom: 16px;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  /* Fresh Green */
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.4);
}

.package-card.featured .btn-buy {
  background: linear-gradient(135deg, #f472b6, #db2777);
  /* Pink for Featured */
  box-shadow: 0 8px 20px rgba(219, 39, 119, 0.3);
  animation: btnPulse 2s infinite;
}

/* ===== PAYMENT HIGHLIGHT ===== */
.payment-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 28px;
  animation: pulse 2s infinite;
}

.payment-highlight-icon {
  font-size: 3.5rem;
  color: #22c55e;
}

.payment-highlight strong {
  display: block;
  font-size: 1.25rem;
  color: #15803d;
  margin-bottom: 6px;
}

.payment-highlight p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-method {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #64748b;
}

.payment-method.highlight {
  background: #f0fdf4;
  border-color: #22c55e;
  color: #15803d;
  font-weight: 700;
}

.bonus-text {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 12px;
  padding: 16px;
  font-size: 0.9rem;
  color: #b45309;
  margin-bottom: 24px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.guarantee-box .shield {
  font-size: 2.8rem;
}

.guarantee-box h4 {
  color: #059669;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.guarantee-box p {
  color: #64748b;
  font-size: 0.9rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-badge {
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #64748b;
}

/* ===== VIDEO OVERLAY E PLAY BUTTON ===== */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  /* Lighter overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 20px;
}

.play-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  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(16, 185, 129, 0.4);
  animation: btnPulse 2s infinite;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.video-hint {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

.video-unmute-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS HORIZONTAL ===== */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.testimonial-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fecdd3;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-header strong {
  font-size: 1rem;
  color: #1e293b;
}

.testimonial-header .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-content p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

/* ===== PACKAGE BOTTLES IMAGE ===== */
.package-bottles-img {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.bottle-img {
  width: 50px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.package-card.featured .bottle-img {
  width: 55px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  width: 100%;
  padding: 20px 32px;
  /* Rose/Pink Gradient */
  background: linear-gradient(135deg, #f472b6, #db2777);
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(219, 39, 119, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(219, 39, 119, 0.4);
}

.btn-primary.pulse {
  animation: btnPulse 2s infinite;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: modalPop 0.4s ease forwards;
}

.modal h2 {
  color: #db2777;
  margin-bottom: 16px;
}

.modal p {
  color: #4b5563;
  margin-bottom: 28px;
}

.modal-close-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #f472b6, #db2777);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(219, 39, 119, 0.2);
}

/* ===== SPINNER ===== */
#spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
  backdrop-filter: blur(4px);
}

#spinner-overlay.active {
  display: flex;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(244, 114, 182, 0.2);
  border-top-color: #db2777;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 540px) {
  body {
    padding: 0 8px;
  }

  .logo-container {
    padding: 16px 0 12px;
  }

  .logo-container img {
    height: 40px;
  }

  #quiz-app {
    padding: 12px 4px;
  }

  .question-content {
    padding: 24px 16px;
    margin: 0 4px;
    border-radius: 20px;
  }

  h1 {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .intro-headline {
    font-size: 1.4rem !important;
  }

  .intro-subheadline {
    font-size: 0.95rem;
  }

  .intro-features li {
    font-size: 0.9rem;
    padding: 10px 14px;
  }

  .btn-primary {
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .options-list li {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .how-step {
    padding: 16px 12px;
  }

  .testimonials-grid,
  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .testimonial-card-horizontal {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .product-image-large {
    max-width: 200px;
  }

  .packages-grid {
    gap: 16px;
  }

  .package-card {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .package-price .current-price {
    font-size: 1.5rem;
  }

  .transformation-image img {
    max-height: 280px;
  }

  .video-container {
    margin: 16px 0;
    border-radius: 16px;
  }

  .video-info {
    padding: 16px;
    margin: 12px 0;
  }

  .guarantee-box {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .trust-badges {
    gap: 8px;
  }

  .trust-badge {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .offer-timer {
    padding: 12px 16px;
  }

  .payment-highlight {
    padding: 14px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .faq-section {
    padding: 16px;
    margin: 20px 0;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .purchases-today {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .security-seal {
    padding: 12px 16px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  margin: 32px 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
}

.faq-title {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  color: #db2777;
  font-size: 1rem;
  margin-bottom: 8px;
}

.faq-answer {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PURCHASES TODAY ===== */
.purchases-today {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #fbbf24;
  border-radius: 30px;
  padding: 12px 24px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #92400e;
  animation: pulseGlow 2s infinite;
}

.purchases-today .fire-icon {
  font-size: 1.2rem;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  }
}

/* ===== SECURITY SEAL ===== */
.security-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 16px 24px;
  margin: 20px 0;
}

.seal-icon {
  font-size: 2rem;
}

.seal-text {
  text-align: left;
}

.seal-text strong {
  display: block;
  color: #065f46;
  font-size: 1rem;
}

.seal-text span {
  font-size: 0.85rem;
  color: #059669;
}

/* ===== PURCHASE NOTIFICATION POPUP ===== */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 9999;
  animation: slideInNotif 0.5s ease, slideOutNotif 0.5s ease 4.5s forwards;
  transform: translateX(-120%);
}

.purchase-notification.show {
  transform: translateX(0);
}

@keyframes slideInNotif {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutNotif {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(-120%);
    opacity: 0;
  }
}

.notification-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-content strong {
  display: block;
  color: #1e293b;
  font-size: 0.95rem;
}

.notification-content span {
  font-size: 0.8rem;
  color: #64748b;
}

.notification-time {
  font-size: 0.75rem;
  color: #94a3b8;
}

@media (max-width: 540px) {
  .purchase-notification {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }
}

/* ===== VIDEO TESTIMONIAL STYLES ===== */
.video-container {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-container video {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}

.play-btn {
  padding: 16px 32px;
  background: linear-gradient(135deg, #db2777, #be185d);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(219, 39, 119, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulsePlay 2s ease-in-out infinite;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(219, 39, 119, 0.5);
}

@keyframes pulsePlay {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(219, 39, 119, 0.4);
  }

  50% {
    box-shadow: 0 8px 48px rgba(219, 39, 119, 0.6);
  }
}

.video-unmute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
}

.video-hint {
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 8px;
}

.video-info {
  text-align: center;
  padding: 16px 0;
}

.video-info strong {
  display: block;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.video-info .location {
  display: block;
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 8px;
}

.video-info .result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.progress-bar-video {
  border-radius: 4px;
}