:root {
  /* Brand colors */
  --color-crema:        #FAF5F0;  /* page background */
  --color-blush-claro:  #F5E8E4;  /* alternate sections */
  --color-blush:        #EDCAC4;  /* borders, dividers */
  --color-rosa:         #D4718A;  /* secondary buttons, highlights */
  --color-vino:         #8B2E4A;  /* PRIMARY brand color — CTA buttons, headings */
  --color-marron:       #4A3728;  /* body text, dark headings */

  /* Gold accents */
  --color-dorado:       #C9A84C;  /* decorative lines, icons, underlines */
  --color-dorado-claro: #E8D5A3;  /* soft gold backgrounds */

  /* Semantic aliases */
  --color-fondo:        #FAF5F0;
  --color-fondo-alt:    #F5E8E4;
  --color-texto:        #4A3728;
  --color-texto-suave:  #7A5C50;
  --color-texto-inv:    #FAF5F0;  /* text on dark backgrounds */
  --color-marca:        #8B2E4A;
  --color-acento:       #C9A84C;
  
  /* Fonts */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Layout */
  --container-width: 1000px;
  --section-padding: 5rem 1.5rem;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
  font-size: 1.125rem;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .hero-title, .section-title {
  font-family: var(--font-heading);
  color: var(--color-marron);
  line-height: 1.2;
  font-weight: 400;
}

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

.section-title {
  font-size: 2.75rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.section-title.text-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.highlight-text {
  font-size: 1.35rem;
  color: var(--color-marca);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--color-fondo-alt);
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--color-marca);
  color: var(--color-texto-inv);
  border: 1px solid var(--color-marca);
  box-shadow: 0 4px 15px rgba(139, 46, 74, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-rosa);
  border-color: var(--color-rosa);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 113, 138, 0.3);
}

.btn-large {
  font-size: 1.25rem;
  padding: 1.2rem 3rem;
  width: 100%;
  max-width: 400px;
}

/* Lists */
.check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-texto);
}

.icon-check {
  color: var(--color-acento);
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* 1. Hero */
.hero {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--color-blush);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: var(--color-dorado-claro);
  color: var(--color-marron);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-marca);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-texto-suave);
  margin-bottom: 2rem;
  max-width: 90%;
}

.cta-wrapper {
  margin-top: 2.5rem;
}

.price-launch {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--color-texto-suave);
}

.price-launch strong {
  color: var(--color-marca);
  font-size: 1.25rem;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid var(--color-acento);
  border-radius: 20px;
  z-index: -1;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(74, 55, 40, 0.1);
  aspect-ratio: 4/5;
}

/* 2. Problem */
.problem-container {
  max-width: 800px;
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.quote {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-style: italic;
  color: var(--color-marca);
  margin: 1.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.quote-mark {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-dorado-claro);
  opacity: 0.5;
}

.doubts-list {
  list-style: none;
  background: var(--color-fondo-alt);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--color-acento);
  margin-top: 1rem;
}

.doubts-list li {
  margin-bottom: 0.75rem;
  font-style: italic;
  color: var(--color-texto-suave);
  display: flex;
  align-items: center;
}

.doubt-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-rosa);
  border-radius: 50%;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.problem-closing {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-marca);
  padding-top: 2rem;
  border-top: 1px solid var(--color-blush);
}

/* 3. Solution */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 4px solid var(--color-fondo);
}

.solution-nots {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--color-blush);
  border-radius: 8px;
}

.solution-nots p {
  color: var(--color-texto-suave);
  margin-bottom: 0.5rem;
}

.solution-nots p:last-child {
  margin-bottom: 0;
}

.solution-final {
  font-size: 1.2rem;
  color: var(--color-marron);
}

/* 4. Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid var(--color-blush-claro);
  transition: transform 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-dorado-claro);
}

.achievement-icon {
  width: 40px;
  height: 40px;
  color: var(--color-acento);
  margin-bottom: 1rem;
}

.achievement-card-featured {
  background-color: var(--color-dorado-claro);
  border-color: var(--color-acento);
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto;
}

.achievement-card-featured .achievement-icon {
  color: var(--color-marron);
}

/* 5. Includes */
.subtitle {
  font-size: 1.5rem;
  color: var(--color-texto-suave);
  margin-bottom: 3rem;
  font-weight: 400;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.module-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  border-left: 3px solid var(--color-marca);
}

.module-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-blush);
  margin-right: 1.5rem;
  line-height: 1;
}

/* 6. Bonuses */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bonus-card {
  border: 1px solid var(--color-blush);
  padding: 2.5rem;
  border-radius: 12px;
  position: relative;
  background: white;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  left: 2.5rem;
  background-color: var(--color-rosa);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.bonus-title {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-marca);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* 7 & 8. Who is */
.who-is-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.who-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.for-who {
  border-top: 4px solid #4CAF50;
}

.not-for-who {
  border-top: 4px solid var(--color-rosa);
}

.who-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.who-list {
  list-style: none;
}

.who-list li {
  display: flex;
  margin-bottom: 1rem;
  color: var(--color-texto-suave);
}

.icon-success {
  color: #4CAF50;
  margin-right: 1rem;
  flex-shrink: 0;
}

.icon-error {
  color: var(--color-rosa);
  margin-right: 1rem;
  flex-shrink: 0;
}

/* 9. Story */
.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-img {
  width: 100%;
  border-radius: 50% 50% 0 0;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--color-blush);
  padding: 0.5rem;
}

.story-content p {
  margin-bottom: 1rem;
}

.story-highlight {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-marca);
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-acento);
}

/* 10. Guarantee */
.guarantee-container {
  max-width: 700px;
}

.guarantee-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-dorado-claro);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.guarantee-icon {
  width: 40px;
  height: 40px;
  color: var(--color-marron);
}

.guarantee-text {
  font-size: 1.25rem;
  color: var(--color-texto-suave);
}

/* 11. Pricing */
.pricing-card {
  background: white;
  max-width: 950px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(74, 55, 40, 0.08);
  border: 1px solid var(--color-blush);
}

.pricing-title {
  background-color: var(--color-marca);
  color: var(--color-texto-inv);
  text-align: center;
  padding: 2rem;
  margin: 0;
  font-style: normal;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  padding: 3rem;
}

.pricing-subtitle {
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.pricing-actions-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.pricing-boxes {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.pricing-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-fondo);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-blush);
}

.pricing-location {
  color: var(--color-marron);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--color-marron);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-amount span {
  font-size: 1.5rem;
  font-family: var(--font-body);
}

.pricing-launch-text {
  color: var(--color-marca);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-support {
  font-size: 0.95rem;
  color: var(--color-texto-suave);
  margin-top: 1rem;
  margin-bottom: 0;
  text-align: center;
}

/* 12. FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 2px solid var(--color-dorado);
}

.faq-question {
  font-size: 1.1rem;
  color: var(--color-marron);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.faq-answer {
  color: var(--color-texto-suave);
  font-size: 0.95rem;
}

/* 13. Final CTA */
.final-cta {
  background-color: var(--color-dorado-claro);
  padding: 6rem 1.5rem;
}

.final-cta-container {
  max-width: 700px;
}

.final-text {
  font-size: 1.35rem;
  color: var(--color-marron);
  margin-bottom: 3rem;
}

/* Footer */
.footer {
  background-color: var(--color-marron);
  color: var(--color-dorado-claro);
  padding: 2rem;
  font-size: 0.9rem;
}

/* Testimonials Stack Effect */
.scroll-container {
  height: 500vh;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1200px;
}

.cards-stack {
  position: relative;
  width: 350px;
  height: 450px;
  transform-style: preserve-3d;
}

.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: var(--color-crema);
  border: 4px solid var(--color-blush-claro);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center center;
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card img.img-contain {
  object-fit: contain;
  background-color: #1A1A1A; /* Fondo oscuro para que combine con las capturas de WhatsApp en dark mode */
  padding: 1rem;
}

.closing-testimonials {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--color-texto-suave);
}

.closing-testimonials strong {
  color: var(--color-marca);
  display: block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-container,
  .solution-grid,
  .story-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .who-is-container,
  .pricing-content {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 1.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .problem-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cards-stack {
    width: 300px;
    height: 400px;
  }

  .pricing-boxes {
    flex-direction: column;
  }
  
  .pricing-amount {
    font-size: 2.5rem;
  }
}
