/* Reset and Base Styles */
:root {
  /* Romance Cósmico Premium Palette */
  --color-purple-night: #1a0b22; /* Deeper purple */
  --color-purple-light: #2d1b38;
  --color-wine-blackberry: #8a2b66;
  --color-wine-hover: #a13478;
  --color-rose-burnt: #D98AA5;
  --color-gold-lunar: #E5C37A; /* Brighter gold */
  --color-gold-dark: #b89752;
  --color-cream-lunar: #FFF7EF;
  --color-lilac-mist: #C8B6FF;
  
  /* Quiz Profile Colors */
  --color-fire: #ff6b4a;
  --color-earth: #6b8c6e;
  --color-air: #a8c2ff;
  --color-water: #5c77ff;

  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout */
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-purple-night);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(138, 43, 102, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(200, 182, 255, 0.1) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--color-cream-lunar);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 36px;
}

/* Hotstrip */
.hotstrip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ff4d4d, var(--color-wine-blackberry));
  padding: 8px 12px;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
  z-index: 1000;
  text-align: center;
}

.hotstrip-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.2rem;
  color: rgba(255, 247, 239, 0.85);
}

/* Container */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Background Stars */
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)), radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0,0,0,0)), radial-gradient(1px 1px at 50px 160px, #ffffff, rgba(0,0,0,0)), radial-gradient(1.5px 1.5px at 90px 40px, #ffffff, rgba(0,0,0,0)), radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.15;
  animation: floatStars 60s linear infinite;
}

@keyframes floatStars {
  0% { transform: translateY(0); }
  100% { transform: translateY(-200px); }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 28px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 50px; /* Pill shape */
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: 0.6s;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.skip-link {
  display: inline-block;
  color: rgba(255, 247, 239, 0.5);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: var(--transition);
  font-weight: 500;
}
.skip-link:hover {
  color: rgba(255, 247, 239, 0.8);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-wine-blackberry), var(--color-wine-hover));
  color: #fff;
  box-shadow: 0 8px 24px rgba(138, 43, 102, 0.4), inset 0 1px 1px rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(138, 43, 102, 0.6), inset 0 1px 1px rgba(255,255,255,0.3);
}

.btn-yellow {
  background: linear-gradient(135deg, #fce096, var(--color-gold-lunar));
  color: var(--color-purple-night);
  border: 1px solid rgba(255, 247, 239, 0.5);
  box-shadow: 0 4px 15px rgba(229, 195, 122, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  font-weight: 700;
}
.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 195, 122, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #fff0c7, #fce096);
}

.btn-secondary {
  background: rgba(229, 195, 122, 0.05);
  color: var(--color-gold-lunar);
  border: 1px solid rgba(229, 195, 122, 0.4);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: rgba(229, 195, 122, 0.15);
  border-color: var(--color-gold-lunar);
  transform: translateY(-3px);
}

/* HERO SECTION */
.hero {
  padding: 3vh 0 10vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 150px;
  background: linear-gradient(to top, var(--color-purple-night), transparent);
  pointer-events: none;
}

.hero-header {
  text-align: center;
  margin-bottom: 25px;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-header h1 {
  font-size: 3.5rem;
  color: var(--color-gold-lunar);
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(229, 195, 122, 0.25);
  background: linear-gradient(to right, var(--color-gold-lunar), #fff, var(--color-gold-lunar));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--color-lilac-mist);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

/* PREMIUM QUIZ CARDS */
.quiz-card {
  background: rgba(45, 27, 56, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(229, 195, 122, 0.15);
  border-radius: 24px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255,255,255,0.05);
  animation: scaleUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 10;
}

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



.pain-badge {
  display: inline-block;
  margin: 0 auto 12px auto;
  background: linear-gradient(135deg, #ff4d4d, var(--color-wine-blackberry));
  padding: 6px 12px;
  border-radius: 4px; /* Formato quadrado */
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
  width: max-content;
  max-width: 90%;
  z-index: 20;
}

.pain-badge-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  display: block;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.quiz-info {
  display: flex;
  flex-direction: column; /* Stacked for better readability */
  gap: 8px;
  margin-bottom: 25px;
  margin-top: 15px; /* Added to push content down away from the absolute badge */
  align-items: center;
}

@media (min-width: 600px) {
  .quiz-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.quiz-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(200, 182, 255, 0.12);
  border: 1px solid rgba(200, 182, 255, 0.25);
  padding: 8px 15px;
  border-radius: 12px;
  color: var(--color-cream-lunar);
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  width: 100%;
  justify-content: center;
}

@media (min-width: 600px) {
  .quiz-info-item {
    width: auto;
  }
}

.quiz-info-item:hover {
  transform: translateY(-2px);
  background: rgba(200, 182, 255, 0.2);
}

.quiz-info-item.highlight {
  background: rgba(229, 195, 122, 0.15);
  border-color: rgba(229, 195, 122, 0.4);
  color: var(--color-gold-lunar);
}

.quiz-info-item.highlight-free {
  background: rgba(138, 43, 102, 0.2);
  border-color: rgba(138, 43, 102, 0.5);
  color: #ff9ed6; /* Soft bright pink */
}

.alert-box {
  background: rgba(229, 195, 122, 0.08);
  border-left: 3px solid var(--color-gold-lunar);
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}

.alert-icon {
  font-size: 1.2rem;
  line-height: 1.2;
}

.alert-text {
  font-size: 0.88rem;
  color: rgba(255, 247, 239, 0.85);
  margin: 0;
  line-height: 1.5;
}

.alert-text strong {
  color: var(--color-gold-lunar);
}

.microcopy {
  font-size: 1.05rem;
  color: rgba(255, 247, 239, 0.7);
  margin-bottom: 35px;
  line-height: 1.8;
}

/* Question Specifics */
.progress-container {
  margin-bottom: 35px;
}

#question-counter {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-lunar);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 247, 239, 0.05);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-wine-blackberry), var(--color-gold-lunar));
  width: 0%;
  transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 10px rgba(229, 195, 122, 0.5);
}

.question-text {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--color-cream-lunar);
  line-height: 1.3;
}

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

.option-btn {
  background: rgba(255, 247, 239, 0.02);
  border: 1px solid rgba(255, 247, 239, 0.08);
  color: var(--color-cream-lunar);
  padding: 20px 24px;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.option-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.option-btn:hover::after {
  transform: translateX(100%);
}

.option-btn:hover {
  background: rgba(229, 195, 122, 0.05);
  border-color: rgba(229, 195, 122, 0.4);
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.option-btn.selected {
  background: rgba(229, 195, 122, 0.15);
  border-color: var(--color-gold-lunar);
  color: var(--color-gold-lunar);
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(229, 195, 122, 0.2);
}

.option-letter {
  font-weight: 700;
  color: var(--color-purple-night);
  margin-right: 20px;
  background: linear-gradient(135deg, var(--color-gold-lunar), var(--color-gold-dark));
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(229, 195, 122, 0.4);
}

/* Result Specifics */
.result-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-lilac-mist);
  margin-bottom: 15px;
}

.result-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.result-fire .result-title { 
  color: var(--color-fire); 
  background: linear-gradient(to right, #ff8a65, var(--color-fire));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-earth .result-title { 
  color: var(--color-earth); 
  background: linear-gradient(to right, #8eb591, var(--color-earth));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-air .result-title { 
  color: var(--color-air); 
  background: linear-gradient(to right, #d4e2ff, var(--color-air));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.result-water .result-title { 
  color: var(--color-water); 
  background: linear-gradient(to right, #879eff, var(--color-water));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.result-description {
  font-size: 1.15rem;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(229, 195, 122, 0.15);
  line-height: 1.8;
}

.transition-text {
  font-size: 1.25rem;
  color: var(--color-gold-lunar);
  margin-bottom: 40px;
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-serif);
}

/* OFFER SECTION */
.offer {
  padding: 40px 0 80px 0;
  background: linear-gradient(180deg, var(--color-purple-night) 0%, #110717 100%);
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229, 195, 122, 0.2), transparent);
}

.transition-bridge {
  text-align: center;
  margin-bottom: 80px;
}

.intro-highlight {
  font-size: 1.25rem !important;
  color: var(--color-gold-lunar);
  font-weight: 600;
  margin-bottom: 18px !important;
}

.transition-bridge p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  line-height: 1.5;
  color: rgba(255, 247, 239, 0.9);
}

.astrology-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 247, 239, 0.02);
  padding: 15px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 247, 239, 0.05);
  text-align: left;
  transition: var(--transition);
}

.point-item:hover {
  background: rgba(200, 182, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(200, 182, 255, 0.2);
}

.point-item p {
  margin: 0;
}

.point-item strong {
  color: var(--color-gold-lunar);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.point-desc {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 247, 239, 0.65);
  margin-top: 4px;
  line-height: 1.4;
}

.point-icon {
  font-size: 2rem;
  color: var(--color-rose-burnt);
  min-width: 40px;
  text-align: center;
  text-shadow: 0 0 15px rgba(217, 138, 165, 0.4);
}

@media (min-width: 768px) {
  .astrology-points {
    flex-direction: row;
  }
  .point-item {
    flex: 1;
    flex-direction: column;
    text-align: center;
    border-top: 3px solid var(--color-gold-lunar);
    border-left: none;
    border-radius: 0 0 20px 20px;
  }
}

.product-presentation {
  text-align: center;
  margin-bottom: 80px;
}

.product-presentation h2 {
  font-size: 3.2rem;
  color: var(--color-gold-lunar);
  margin-bottom: 15px;
}

.product-subtitle {
  font-size: 1.3rem;
  color: var(--color-lilac-mist);
  margin-bottom: 50px;
}

.mockup-video-container {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px auto;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(229, 195, 122, 0.2);
}

.mockup-video-element {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.unmute-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

.unmute-btn {
  background: rgba(229, 195, 122, 0.95);
  color: #2D1B38;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: scale(1);
  transition: transform 0.2s;
}
.unmute-overlay:hover .unmute-btn {
  transform: scale(1.05);
}

.product-promise {
  font-size: 1.2rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
}

.plans-section {
  text-align: center;
  padding: 60px 40px;
  margin: 0 -24px; /* Compensate for container padding */
  background: linear-gradient(180deg, rgba(200, 182, 255, 0.05) 0%, rgba(138, 43, 102, 0.1) 50%, rgba(45, 27, 56, 0.05) 100%);
  border-radius: 24px;
}

.plans-section h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.plan-card {
  background: rgba(45, 27, 56, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 247, 239, 0.1);
  border-radius: 24px;
  padding: 35px 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 195, 122, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.premium-plan {
  background: linear-gradient(145deg, rgba(138, 43, 102, 0.25), rgba(36, 20, 47, 0.8));
  border: 2px solid rgba(229, 195, 122, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(138, 43, 102, 0.15);
  transform: scale(1.02); /* Slight pop out effect by default */
  z-index: 2;
}

.premium-plan:hover {
  transform: scale(1.04) translateY(-5px);
  border-color: var(--color-gold-lunar);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 195, 122, 0.25);
}

.most-popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-gold-lunar), var(--color-gold-dark));
  color: var(--color-purple-night);
  padding: 6px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(229, 195, 122, 0.5);
  white-space: nowrap; /* Prevents text from breaking into two lines */
  width: max-content;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--color-cream-lunar);
}

.promo-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.original-price {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 247, 239, 0.6);
  margin-bottom: -15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.original-price s {
  color: rgba(255, 77, 77, 0.8);
  font-weight: 600;
}

.plan-description {
  font-size: 1.05rem;
  color: var(--color-lilac-mist);
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: left;
}

.plan-price {
  font-size: 3.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-gold-lunar);
  margin-bottom: 35px;
  text-shadow: 0 2px 10px rgba(229, 195, 122, 0.2);
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255, 247, 239, 0.9);
}

.feature-desc {
  display: inline;
  font-size: 0.82rem;
  color: rgba(255, 247, 239, 0.55);
  line-height: 1.35;
}

.plan-features li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.9rem;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  text-align: center;
  margin-top: 10px;
}

/* O QUE VOCÊ RECEBE CAROUSEL */
.what-you-get-section {
  text-align: center;
  margin-bottom: 70px;
  padding: 0 10px;
}

.what-you-get-section h2 {
  font-size: 2.2rem;
  color: var(--color-gold-lunar);
  margin-bottom: 30px;
  font-family: var(--font-serif);
}

.infinite-carousel-container {
  width: 100vw;
  margin-left: -50vw;
  left: 50%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infinite-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-horizontal 30s linear infinite;
}

.infinite-carousel-track img {
  width: 250px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

.testimonials-section-inner {
  padding-top: 60px;
  border-top: 1px solid rgba(229, 195, 122, 0.15);
}

.testimonials-title {
  font-size: 2.8rem;
  color: var(--color-gold-lunar);
  margin-bottom: 40px;
  font-style: italic;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.carousel-container::before {
  left: 0;
  background: linear-gradient(to right, #110717, transparent);
}

.carousel-container::after {
  right: 0;
  background: linear-gradient(to left, #110717, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 40px; /* Space for shadows and gradients */
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  scrollbar-width: none; /* Hide scrollbar Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.carousel-slide {
  flex: 0 0 auto;
  width: 280px; /* Width of the whatsapp mockups */
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.carousel-slide img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.carousel-slide:hover {
  transform: translateY(-5px);
}

/* FOOTER */
.site-footer {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 247, 239, 0.05);
  background: var(--color-purple-night);
}

.brand-phrase {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-gold-lunar);
  font-style: italic;
  margin-bottom: 25px;
  opacity: 0.8;
}

.footer-links a {
  color: var(--color-lilac-mist);
  text-decoration: none;
  font-size: 0.95rem;
  margin: 0 15px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold-lunar);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .hero-header h1 {
    font-size: 2.5rem;
  }
  .quiz-card {
    padding: 30px 20px;
  }
  .question-text {
    font-size: 1.6rem;
  }
  .result-title {
    font-size: 2.8rem;
  }
  .plan-card {
    padding: 40px 25px;
  }
}
