/**
 * Purewell — VSL Aceite de Magnesio v2 (OPTIMIZADO)
 *
 * Estilos específicos para la página VSL.
 * La mayoría de los estilos provienen de /_global/css/
 * Este archivo contiene SOLO estilos únicos de la VSL.
 *
 * OPTIMIZACIONES APLICADAS:
 * - Clases utilitarias DRY para reducir duplicación
 * - Hardware acceleration en secciones críticas
 * - Consolidación de overlays y containers comunes
 * - Media queries agrupadas por breakpoint
 *
 * @version 2.1 (Refactorizado)
 * @date 2025-11-18
 */

/* ============================================
   CLASES UTILITARIAS VSL (DRY)
   ============================================ */

/* Overlay común para secciones con fondo */
.vsl-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Contenedor relativo con z-index */
.vsl-container-rel {
  position: relative;
  z-index: 2;
}

/* Cajas blancas con backdrop semi-transparente */
.vsl-glass-box {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--pw-space-3);
  border-radius: var(--pw-radius-md);
}

.vsl-glass-box--light {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(3px);
}

/* Card elevada estándar */
.vsl-card {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(84, 113, 49, 0.15);
  transition: all 0.3s ease;
}

.vsl-card:hover {
  border-color: rgba(84, 113, 49, 0.3);
  box-shadow: 0 6px 20px rgba(84, 113, 49, 0.15);
}

/* Hover lift común */
.vsl-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-hover-lift:hover {
  transform: translateY(-8px);
}

/* Headers de sección centrados */
.vsl-section-header {
  text-align: center;
  margin-bottom: var(--pw-space-12);
}

.vsl-section-header--compact {
  margin-bottom: var(--pw-space-8);
}

/* Lista con flex-column y gap */
.vsl-flex-list {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-4);
}

/* Contenedor de CTA común */
.vsl-cta-container {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--pw-space-10) var(--pw-space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  align-items: center;
}

/* Imagen con hover scale común */
.vsl-img-scale {
  transition: transform 0.4s ease;
}

.vsl-img-scale:hover {
  transform: scale(1.05);
}

/* Shadow de texto común */
.vsl-text-shadow {
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
}

.vsl-text-shadow--dark {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Íconos de lista con estilo común */
.vsl-list-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--pw-dark-olive);
}

.vsl-list-icon--large {
  width: 28px;
  height: 28px;
}

/* Badges de confianza comunes */
.vsl-trust-badge {
  display: flex;
  align-items: center;
  gap: var(--pw-space-2);
  font-family: var(--pw-font-sans);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: var(--pw-font-weight-semibold);
  color: var(--pw-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--pw-space-4) var(--pw-space-6);
  border-radius: var(--pw-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Animación float reutilizable */
@keyframes vsl-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.vsl-animate-float {
  animation: vsl-float 6s ease-in-out infinite;
  will-change: transform;
}

/* ============================================
   OPTIMIZACIONES DE RENDIMIENTO
   ============================================ */

/* Hardware acceleration para secciones clave */
.vsl-hero,
.vsl-causa-raiz,
.vsl-solucion,
.vsl-prueba-social,
.vsl-garantia {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Contenido crítico: prevenir layout shift */
.vsl-hero,
.vsl-problema,
.vsl-causa-raiz,
.vsl-solucion {
  contain: layout style paint;
}

/* ============================================
   ESTILOS GENERALES DE LA VSL
   ============================================ */

.page-vsl {
  background-color: var(--pw-white);
}

/* ============================================
   01-HERO
   ============================================ */

.vsl-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--pw-space-16) 0;
  min-height: 90vh;
  background-image: url('/_assets/media/backgrounds/bg-winter-woods-winter-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.vsl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 5%,
    rgba(255, 255, 255, 0.85) 15%,
    rgba(255, 255, 255, 0.6) 35%,
    rgba(255, 255, 255, 0.3) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.vsl-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.vsl-hero h1,
.vsl-hero p {
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9);
}

.vsl-hero__support {
  font-size: 1rem;
  margin-bottom: var(--pw-space-6);
  font-weight: var(--pw-font-weight-medium);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--pw-space-3);
  border-radius: var(--pw-radius-md);
  display: inline-block;
}

.vsl-hero__support strong {
  color: var(--pw-primary);
}

.vsl-hero__video-wrapper {
  margin-bottom: var(--pw-space-8);
  box-shadow: var(--pw-shadow-xl);
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  background: transparent;
}

.video-aspect-ratio {
  position: relative;
  padding-top: 100%; /* 1:1 - Video 720x720 */
}

.vsl-hero__video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.vsl-hero__cta {
  margin-bottom: var(--pw-space-4);
}

.vsl-hero__trust-badges {
  margin-top: var(--pw-space-4);
  font-size: var(--pw-text-sm);
  color: var(--pw-text-secondary);
  display: flex;
  justify-content: center;
  gap: var(--pw-space-6);
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--pw-space-3);
  border-radius: var(--pw-radius-md);
}

/* ============================================
   02-PROBLEMA
   ============================================ */

.vsl-problema {
  background: linear-gradient(to bottom, var(--pw-white) 0%, var(--pw-gray-50) 100%);
  padding: var(--pw-space-20) 0;
}

.vsl-problema__header {
  text-align: center;
  margin-bottom: var(--pw-space-8);
}

/* Doctor Section */
.vsl-problema__doctor {
  display: flex;
  align-items: center;
  gap: var(--pw-space-6);
  margin: 0 auto var(--pw-space-10);
  padding: var(--pw-space-6);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--pw-radius-lg);
  max-width: 700px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vsl-problema__doctor-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pw-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.vsl-problema__doctor-info {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-4);
  flex: 1;
  text-align: left;
}

.vsl-problema__doctor-quote {
  position: relative;
  margin: 0;
  padding: 0;
  font-style: italic;
  color: var(--pw-gray-700);
  line-height: 1.6;
}

.vsl-problema__quote-mark {
  font-family: var(--pw-font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--pw-primary);
  opacity: 0.3;
  font-weight: var(--pw-font-weight-bold);
  position: absolute;
  top: -10px;
  left: -15px;
}

.vsl-problema__quote-mark--closing {
  top: auto;
  bottom: -25px;
  left: auto;
  right: -10px;
}

.vsl-problema__quote-text {
  margin: 0;
  padding: 0 var(--pw-space-3);
  font-size: 1.05rem;
  font-weight: var(--pw-font-weight-medium);
  color: var(--pw-gray-800);
}

.vsl-problema__doctor-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-1);
  padding-top: var(--pw-space-2);
  border-top: 2px solid var(--pw-primary-light);
}

.vsl-problema__doctor-name {
  font-family: var(--pw-font-serif);
  font-size: 1.1rem;
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-primary);
  line-height: 1.2;
}

.vsl-problema__doctor-title {
  font-size: 0.9rem;
  color: var(--pw-secondary);
  font-weight: var(--pw-font-weight-medium);
  line-height: 1.3;
}

.vsl-problema__content {
  max-width: 700px;
  margin: 0 auto;
}

.vsl-problema__text em {
  color: var(--pw-secondary);
  font-weight: var(--pw-font-weight-semibold);
}

/* Mensaje de esperanza */
.vsl-problema__hope {
  background: linear-gradient(135deg, rgba(84, 113, 49, 0.08) 0%, rgba(107, 142, 61, 0.05) 100%);
  border-left: 4px solid var(--pw-primary);
  padding: var(--pw-space-6) var(--pw-space-8);
  border-radius: var(--pw-radius-md);
  margin-top: var(--pw-space-10);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vsl-problema__hope-text {
  color: var(--pw-primary);
  margin: 0;
  text-align: center;
}

/* ============================================
   03-CAUSA RAÍZ
   ============================================ */

.vsl-causa-raiz {
  position: relative;
  min-height: 80vh;
  padding: var(--pw-space-20) 0 0 0;
  overflow: hidden;
  background-image: url('/_assets/media/backgrounds/green-background-leaves-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  filter: saturate(0.7) brightness(0.85);
}

.vsl-causa-raiz__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(84, 113, 49, 0.85) 0%,
    rgba(84, 113, 49, 0.75) 50%,
    rgba(84, 113, 49, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}

.vsl-causa-raiz__container {
  position: relative;
  z-index: 2;
  padding-bottom: var(--pw-space-8);
}

/* Override de color para fondo oscuro */
.vsl-causa-raiz h2 {
  color: var(--pw-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vsl-causa-raiz__content {
  max-width: 750px;
  margin: 0 auto;
}

.vsl-causa-raiz__metaphor {
  margin-bottom: var(--pw-space-10);
  padding: var(--pw-space-6);
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--pw-radius-md);
  backdrop-filter: blur(8px);
}

.vsl-causa-raiz__text-highlight {
  text-align: center;
  margin-top: var(--pw-space-4);
  margin-bottom: 0;
}

.vsl-causa-raiz__symptoms-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-5);
}

.vsl-causa-raiz__symptom-item {
  display: flex;
  align-items: flex-start;
  gap: var(--pw-space-4);
  padding: var(--pw-space-5);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--pw-radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.vsl-causa-raiz__symptom-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.2);
}

.vsl-causa-raiz__symptom-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vsl-causa-raiz__symptom-text {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-2);
}

.vsl-causa-raiz__symptom-text strong {
  font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
  color: var(--pw-white);
  line-height: 1.4;
}

.vsl-causa-raiz__symptom-detail {
  font-size: clamp(0.9375rem, 2.25vw, 1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-style: italic;
}

.vsl-causa-raiz__text-italic {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 2rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.vsl-causa-raiz__text {
  font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
  line-height: 1.8;
  color: var(--pw-white);
  margin-bottom: var(--pw-space-6);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.vsl-causa-raiz__hope {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: var(--pw-space-8);
  border-radius: var(--pw-radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.vsl-causa-raiz__hope-text {
  font-size: clamp(1.1875rem, 3vw, 1.375rem);
  line-height: 1.7;
  color: var(--pw-white);
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.vsl-causa-raiz__bottom-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: var(--pw-space-12);
}

.vsl-causa-raiz__girl-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 -10px 40px rgba(0, 0, 0, 0.3));
}

/* ============================================
   04-SOLUCIÓN
   ============================================ */

.vsl-solucion {
  position: relative;
  padding: var(--pw-space-16) 0;
  overflow: visible;
  background-image: url('/_assets/media/backgrounds/bg-winter-woods-winter-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.vsl-solucion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.90) 10%,
    rgba(255, 255, 255, 0.80) 20%,
    rgba(255, 255, 255, 0.60) 30%,
    rgba(255, 255, 255, 0.35) 40%,
    rgba(84, 113, 49, 0.25) 55%,
    rgba(84, 113, 49, 0.70) 75%,
    rgba(84, 113, 49, 0.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-solucion > * {
  position: relative;
  z-index: 2;
}

.vsl-solucion__product-intro {
  padding-bottom: var(--pw-space-12);
}

.vsl-solucion h2 {
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
}

.vsl-solucion__product-image {
  display: flex;
  justify-content: center;
  overflow: visible;
  margin-bottom: 3rem;
}

.vsl-solucion__product-img {
  max-width: min(550px, 100%);
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.vsl-solucion__features {
  max-width: 700px;
  margin: 0 auto var(--pw-space-10);
}

.vsl-solucion__features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--pw-space-4);
}

.vsl-solucion__feature-item {
  display: flex;
  align-items: center;
  gap: var(--pw-space-3);
  font-size: 1.0625rem;
  font-weight: var(--pw-font-weight-medium);
  background: rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--pw-primary);
  border-radius: var(--pw-radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: var(--pw-space-3) var(--pw-space-4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-solucion__feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.vsl-solucion__feature-icon {
  font-size: 1.75rem;
  color: var(--pw-primary);
  flex-shrink: 0;
  font-weight: bold;
}

.vsl-solucion__cta {
  max-width: 500px;
  margin: var(--pw-space-10) auto;
  padding: 0 var(--pw-space-8);
}

.vsl-solucion__how-it-works {
  padding-top: var(--pw-space-8);
}

.vsl-solucion__how-container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--pw-space-8);
  padding-right: var(--pw-space-8);
}

.vsl-solucion__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pw-space-10);
  align-items: start;
  margin-bottom: var(--pw-space-12);
}

.vsl-solucion__text-column,
.vsl-solucion__image-column {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  overflow: visible;
}

.vsl-solucion__text {
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.5);
  padding: var(--pw-space-5);
  border-radius: var(--pw-radius-md);
  backdrop-filter: blur(8px);
}

.vsl-solucion__woman-img {
  width: 100%;
  border-radius: var(--pw-radius-lg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.vsl-solucion__results-title {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-white);
  margin-bottom: var(--pw-space-8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.vsl-solucion__results-list {
  list-style: none;
  padding: 0;
  margin: 0 auto var(--pw-space-8);
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--pw-space-5);
}

.vsl-solucion__result-item {
  display: flex;
  align-items: flex-start;
  gap: var(--pw-space-4);
  padding: var(--pw-space-6);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(84, 113, 49, 0.15);
  border-radius: var(--pw-radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  text-align: left;
}

.vsl-solucion__result-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vsl-solucion__result-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--pw-primary);
  color: var(--pw-white);
  box-shadow: 0 4px 12px rgba(84, 113, 49, 0.25);
}

.vsl-solucion__result-icon::before {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.5L10.5 17 4 10.5' stroke='%23fff' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6.5L10.5 17 4 10.5' stroke='%23fff' stroke-width='2.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.vsl-solucion__result-copy {
  flex: 1;
}

.vsl-solucion__result-eyebrow {
  font-size: 0.8125rem;
  font-weight: var(--pw-font-weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pw-accent);
  margin: 0 0 var(--pw-space-2);
}

.vsl-solucion__result-text {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  font-weight: var(--pw-font-weight-medium);
  line-height: 1.6;
}

.vsl-solucion__final-text {
  font-size: clamp(1.1875rem, 3vw, 1.5rem);
  font-weight: var(--pw-font-weight-semibold);
  font-style: italic;
  color: var(--pw-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  max-width: 700px;
  margin: 0 auto;
  padding: var(--pw-space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--pw-radius-lg);
  backdrop-filter: blur(8px);
}

/* ============================================
   05-CÓMO FUNCIONA
   ============================================ */

.vsl-como-funciona {
  padding: var(--pw-space-16) 0;
  background: linear-gradient(180deg, var(--pw-white) 0%, #f9fafb 50%, #F2E8DF 100%);
}

.vsl-como-funciona__steps {
  display: grid;
  gap: var(--pw-space-10);
}

@media (min-width: 769px) {
  .vsl-como-funciona__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--pw-space-8);
  }
}

.vsl-como-funciona__step {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  padding: var(--pw-space-6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
}

.vsl-como-funciona__step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(84, 113, 49, 0.2);
}

.vsl-como-funciona__step-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--pw-radius-lg);
  overflow: hidden;
  background: var(--pw-gray-50);
}

.vsl-como-funciona__step-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vsl-como-funciona__step:hover .vsl-como-funciona__step-image {
  transform: scale(1.05);
}

.vsl-como-funciona__step-number {
  position: absolute;
  top: var(--pw-space-4);
  left: var(--pw-space-4);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--pw-primary) 0%, var(--pw-accent) 100%);
  color: var(--pw-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pw-font-serif);
  font-size: 1.5rem;
  font-weight: var(--pw-font-weight-bold);
  box-shadow: 0 4px 12px rgba(84, 113, 49, 0.4);
  z-index: 2;
}

.vsl-como-funciona__step-content h3 {
  margin-bottom: var(--pw-space-3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  /* Hero */
  .vsl-hero {
    background-attachment: scroll;
  }

  /* Problema */
  .vsl-problema {
    padding: var(--pw-space-16) var(--pw-space-6);
  }

  .vsl-problema__header {
    margin-bottom: var(--pw-space-6);
    padding: 0 var(--pw-space-4);
  }

  .vsl-problema__doctor {
    padding: var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
    gap: var(--pw-space-3);
  }

  .vsl-problema__doctor-img {
    width: 80px;
    height: 80px;
  }

  .vsl-problema__doctor-name {
    font-size: 1.125rem;
  }

  .vsl-problema__doctor-credentials {
    font-size: 0.875rem;
  }

  .vsl-problema__content {
    padding: 0 var(--pw-space-4);
  }

  .vsl-problema__hope {
    padding: var(--pw-space-5) var(--pw-space-4);
  }

  .vsl-problema__hope-text {
    text-align: left;
  }

  /* Causa Raíz */
  .vsl-causa-raiz {
    padding: var(--pw-space-16) var(--pw-space-6) 0;
    background-attachment: scroll;
  }

  .vsl-causa-raiz__content {
    padding: 0 var(--pw-space-4);
  }

  .vsl-causa-raiz__metaphor {
    padding: var(--pw-space-5);
  }

  .vsl-causa-raiz__symptom-item {
    padding: var(--pw-space-4);
    gap: var(--pw-space-3);
  }

  .vsl-causa-raiz__symptom-icon {
    font-size: 1.75rem;
  }

  .vsl-causa-raiz__hope {
    padding: var(--pw-space-6) var(--pw-space-5);
  }

  .vsl-causa-raiz__hope-text {
    text-align: left;
  }

  .vsl-causa-raiz__bottom-image {
    margin-top: var(--pw-space-8);
  }

  .vsl-causa-raiz__girl-img {
    max-width: 350px;
  }

  /* Solución */
  .vsl-solucion {
    padding: var(--pw-space-12) var(--pw-space-6);
    background-attachment: scroll;
  }

  .vsl-solucion__how-container {
    padding-left: var(--pw-space-6);
    padding-right: var(--pw-space-6);
  }

  .vsl-solucion__product-intro {
    padding-bottom: var(--pw-space-8);
  }

  .vsl-solucion__cta {
    padding-bottom: var(--pw-space-8);
  }

  .vsl-solucion__how-it-works {
    padding-top: var(--pw-space-6);
  }

  .vsl-solucion__content-grid {
    grid-template-columns: 1fr;
    gap: var(--pw-space-8);
  }

  .vsl-solucion__text {
    padding: var(--pw-space-4);
  }

  .vsl-solucion__woman-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .vsl-solucion__results-list {
    grid-template-columns: 1fr;
  }

  .vsl-solucion__result-item {
    padding: var(--pw-space-5);
  }

  .vsl-solucion__result-icon {
    width: 42px;
    height: 42px;
  }

  /* Cómo Funciona */
  .vsl-como-funciona__step:hover {
    transform: none;
  }

  /* Optimizaciones de rendimiento para móviles */
  
  /* Reducir backdrop-filter en móviles (muy costoso en rendimiento) */
  .vsl-causa-raiz__metaphor,
  .vsl-causa-raiz__symptom-item,
  .vsl-causa-raiz__hope,
  .vsl-solucion__text,
  .vsl-solucion__result-item,
  .vsl-solucion__final-text {
    backdrop-filter: blur(4px); /* Reducido de 8-12px */
    -webkit-backdrop-filter: blur(4px);
  }

  /* Desactivar parallax en móviles (causa jank) */
  .vsl-hero,
  .vsl-causa-raiz,
  .vsl-solucion {
    background-attachment: scroll;
  }

  /* Optimizar transformaciones en hover (desactivar en móviles) */
  .vsl-solucion__feature-item:hover,
  .vsl-solucion__result-item:hover,
  .vsl-causa-raiz__symptom-item:hover {
    transform: none;
  }

  /* Reducir sombras complejas */
  .vsl-hero__video-wrapper {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .vsl-solucion__woman-img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
}

/* ============================================
   SECCIÓN 6: AROMAS
   ============================================ */

.vsl-aromas {
  position: relative;
  padding: var(--pw-space-16) 0;
  background: #F2E8DF;
  overflow: hidden;
}

.vsl-aromas__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pw-space-6);
}

/* Header */
.vsl-aromas__header {
  text-align: center;
  margin-bottom: var(--pw-space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de aromas */
.vsl-aromas__grid {
  display: grid;
  gap: var(--pw-space-8);
  margin-bottom: var(--pw-space-12);
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .vsl-aromas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--pw-space-6);
  }
  
  .vsl-aromas__card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .vsl-aromas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .vsl-aromas__card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
}

/* Tarjeta de aroma */
.vsl-aromas__card {
  position: relative;
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.vsl-aromas__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(84, 113, 49, 0.25);
}

/* Animaciones progresivas */
.vsl-aromas__card:nth-child(1) {
  animation-delay: 0.1s;
}

.vsl-aromas__card:nth-child(2) {
  animation-delay: 0.2s;
}

.vsl-aromas__card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Imagen principal */
.vsl-aromas__card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--pw-white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pw-space-8);
  border-radius: var(--pw-radius-lg) var(--pw-radius-lg) 0 0;
}

.vsl-aromas__card-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.vsl-aromas__card:hover .vsl-aromas__card-image {
  transform: scale(1.05);
}

/* Contenido de la tarjeta */
.vsl-aromas__card-content {
  padding: var(--pw-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-3);
  flex: 1;
}

/* Ícono de ingredientes */
.vsl-aromas__ingredients-icon {
  width: 80px;
  height: 80px;
  margin: -50px auto var(--pw-space-4);
  background: var(--pw-white);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  border: 3px solid #F2E8DF;
  transition: transform 0.3s ease;
}

.vsl-aromas__card:hover .vsl-aromas__ingredients-icon {
  transform: rotate(8deg) scale(1.1);
}

.vsl-aromas__ingredients-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Título y badge */
.vsl-aromas__card-title {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.375rem, 3vw, 1.5rem);
  font-weight: var(--pw-font-weight-black);
  color: var(--pw-primary);
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

.vsl-aromas__card-badge {
  display: inline-block;
  padding: var(--pw-space-2) var(--pw-space-4);
  background: linear-gradient(135deg, var(--pw-primary) 0%, var(--pw-accent) 100%);
  color: var(--pw-white);
  font-family: var(--pw-font-sans);
  font-size: 0.875rem;
  font-weight: var(--pw-font-weight-semibold);
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
}

/* Descripción */
.vsl-aromas__card-description {
  font-family: var(--pw-font-sans);
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--pw-text);
  margin: var(--pw-space-2) 0;
  text-align: center;
}

/* Ideal para */
.vsl-aromas__card-ideal {
  margin-top: auto;
  padding-top: var(--pw-space-4);
  border-top: 1px solid #e5e7eb;
  text-align: center;
}

.vsl-aromas__card-ideal-label {
  font-family: var(--pw-font-sans);
  font-size: 0.75rem;
  font-weight: var(--pw-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pw-primary);
  margin: 0 0 var(--pw-space-2);
}

.vsl-aromas__card-ideal-text {
  font-family: var(--pw-font-sans);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--pw-text);
  margin: 0;
  font-style: italic;
}

/* Comparación */
.vsl-aromas__comparison {
  margin: var(--pw-space-16) 0 var(--pw-space-12);
  text-align: center;
}

.vsl-aromas__comparison-grid {
  display: grid;
  gap: var(--pw-space-6);
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 769px) {
  .vsl-aromas__comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--pw-space-8);
  }
}

.vsl-aromas__comparison-card {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  padding: var(--pw-space-6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vsl-aromas__comparison-card--us {
  border: 3px solid var(--pw-primary);
  position: relative;
  overflow: hidden;
}

.vsl-aromas__comparison-card--us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pw-primary) 0%, var(--pw-accent) 100%);
}

.vsl-aromas__comparison-card--us:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(84, 113, 49, 0.25);
}

.vsl-aromas__comparison-card--others {
  border: 2px solid #e5e7eb;
  opacity: 0.85;
}

.vsl-aromas__comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pw-space-3);
  padding-bottom: var(--pw-space-4);
  border-bottom: 2px solid #f3f4f6;
}

.vsl-aromas__comparison-logo {
  height: 40px;
  width: auto;
  display: block;
}

.vsl-aromas__comparison-brand {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--pw-font-weight-black);
  color: var(--pw-text-secondary);
  margin: 0;
  line-height: 1.2;
}

.vsl-aromas__comparison-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-4);
}

.vsl-aromas__comparison-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--pw-space-3);
  text-align: left;
}

.vsl-aromas__comparison-checkmark,
.vsl-aromas__comparison-cross {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vsl-aromas__comparison-checkmark {
  color: var(--pw-primary);
}

.vsl-aromas__comparison-cross {
  color: #ef4444;
  opacity: 0.6;
}

.vsl-aromas__comparison-feature span {
  font-family: var(--pw-font-sans);
  font-size: clamp(0.9375rem, 2vw, 1rem);
  line-height: 1.5;
  color: var(--pw-text);
  font-weight: var(--pw-font-weight-medium);
}

.vsl-aromas__comparison-feature--missing span {
  color: var(--pw-text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

/* CTA Section */
.vsl-aromas__cta {
  text-align: center;
  padding: var(--pw-space-8) var(--pw-space-6);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: var(--pw-radius-lg);
  border: 2px solid rgba(84, 113, 49, 0.15);
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.vsl-aromas__cta-text {
  font-family: var(--pw-font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  color: var(--pw-text);
  margin: 0;
  max-width: 600px;
}

.vsl-aromas__cta-text strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

.vsl-aromas__cta-button {
  display: inline-block;
}

@media (min-width: 769px) {
  .vsl-aromas__comparison-card {
    padding: var(--pw-space-8);
  }

  .vsl-aromas__comparison-logo {
    height: 48px;
  }

  .vsl-aromas__comparison-checkmark,
  .vsl-aromas__comparison-cross {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .vsl-aromas {
    padding: var(--pw-space-12) 0;
  }

  .vsl-aromas__container {
    padding: 0 var(--pw-space-4);
  }

  .vsl-aromas__header {
    margin-bottom: var(--pw-space-8);
  }

  .vsl-aromas__grid {
    gap: var(--pw-space-10);
  }

  .vsl-aromas__card-content {
    padding: var(--pw-space-5);
  }

  .vsl-aromas__card-image-wrapper {
    padding: var(--pw-space-6);
  }

  .vsl-aromas__card-image {
    width: 80%;
    height: 80%;
  }

  .vsl-aromas__cta {
    padding: var(--pw-space-6) var(--pw-space-4);
  }

  /* Optimización móvil: desactivar hover effects */
  .vsl-aromas__card:hover {
    transform: none;
  }

  .vsl-aromas__card:hover .vsl-aromas__card-image {
    transform: none;
  }

  .vsl-aromas__card:hover .vsl-aromas__ingredients-icon {
    transform: none;
  }

  .vsl-aromas__comparison-card--us:hover {
    transform: none;
  }
}

/* ============================================
   WRAPPER COMPARTIDO: SECCIONES 7 Y 8
   Fondo común para transición orgánica
   ============================================ */
.vsl-sections-7-8-wrapper {
  position: relative;
  margin: 0;
  padding: 0;

  /* Fondo compartido: verde/café oscuro Purewell */
  background: linear-gradient(
    135deg,
    #3D5229 0%,
    #547131 35%,
    #6A432D 65%,
    #3D5229 100%
  );
}

/* ============================================
   07-PRUEBA SOCIAL
   ============================================ */

.vsl-prueba-social {
  position: relative;
  min-height: 70vh;
  padding: var(--pw-space-20) 0 var(--pw-space-16);
  overflow-x: hidden;
  overflow-y: visible;

  /* Sin fondo propio - usa el del wrapper compartido */
  background: transparent;
  margin: 0;

  /* Optimización de rendimiento */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Overlay decorativo con tonos cálidos */
.vsl-prueba-social__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(139, 94, 59, 0.2) 0%,
    rgba(84, 113, 49, 0.1) 50%,
    rgba(139, 94, 59, 0.1) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-prueba-social__container {
  position: relative;
  z-index: 2;
}

/* Header */
.vsl-prueba-social__header {
  text-align: center;
  margin-bottom: var(--pw-space-12);
  padding: 0 var(--pw-space-6);
}

.vsl-prueba-social__header .vsl-title {
  margin-bottom: var(--pw-space-4);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.vsl-prueba-social__header .vsl-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* Wrapper de reviews con padding lateral */
.vsl-prueba-social__reviews-wrapper {
  margin-bottom: var(--pw-space-12);
  padding: 0 var(--pw-space-6);
}

/* Lista de reviews con scroll horizontal */
.vsl-prueba-social__list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--pw-space-3);
  padding-top: 8px;

  /* Smooth scroll en móviles */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  /* Scrollbar personalizado */
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 142, 61, 0.8) rgba(255, 255, 255, 0.1);
}

.vsl-prueba-social__list::-webkit-scrollbar {
  height: 8px;
}

.vsl-prueba-social__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.vsl-prueba-social__list::-webkit-scrollbar-thumb {
  background: rgba(107, 142, 61, 0.8);
  border-radius: 10px;
}

.vsl-prueba-social__list::-webkit-scrollbar-thumb:hover {
  background: var(--pw-primary);
}

/* Tarjeta de review */
.vsl-prueba-social__card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 340px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  
  /* Optimización de rendimiento */
  will-change: transform;
}

.vsl-prueba-social__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 16px 40px rgba(84, 113, 49, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Foto de review */
.vsl-prueba-social__photo {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--pw-gray-400);
  position: relative;
  flex-shrink: 0;
}

.vsl-prueba-social__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vsl-prueba-social__card:hover .vsl-prueba-social__photo img {
  transform: scale(1.05);
}

/* Cuerpo de review */
.vsl-prueba-social__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Rating */
.vsl-prueba-social__rating {
  font-size: 16px;
  color: #f7b500;
  line-height: 1;
  letter-spacing: 1px;
}

/* Texto del testimonio */
.vsl-prueba-social__text {
  font-family: var(--pw-font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--pw-text);
  margin: 0;
  font-style: italic;
}

/* Info de usuario */
.vsl-prueba-social__user {
  font-family: var(--pw-font-sans);
  font-size: 14px;
  color: #444;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(84, 113, 49, 0.15);
}

.vsl-prueba-social__user strong {
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-primary);
}

/* Badge de verificación */
.vsl-prueba-social__verified {
  font-size: 11px;
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
  background: rgba(234, 244, 228, 0.9);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  line-height: 1;
  border: 1px solid rgba(84, 113, 49, 0.2);
}

/* CTA Final */
.vsl-prueba-social__cta {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--pw-space-10) var(--pw-space-8);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--pw-radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  align-items: center;
}

.vsl-prueba-social__cta-text {
  font-family: var(--pw-font-sans);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: var(--pw-white);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.vsl-prueba-social__cta-text strong {
  color: rgba(255, 255, 255, 1);
  font-weight: var(--pw-font-weight-bold);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .vsl-prueba-social {
    padding: var(--pw-space-16) 0 var(--pw-space-12);
  }

  .vsl-prueba-social__header {
    margin-bottom: var(--pw-space-8);
    padding: 0 var(--pw-space-4);
  }

  .vsl-prueba-social__reviews-wrapper {
    padding: 0 var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
  }

  .vsl-prueba-social__list {
    gap: 16px;
  }

  .vsl-prueba-social__card {
    width: 280px;
  }

  .vsl-prueba-social__photo {
    height: 360px;
  }

  .vsl-prueba-social__body {
    padding: 16px 18px 18px;
  }

  .vsl-prueba-social__text {
    font-size: 14px;
  }

  .vsl-prueba-social__cta {
    margin: 0 var(--pw-space-4);
    padding: var(--pw-space-8) var(--pw-space-6);
  }

  /* Optimización móvil: desactivar hover effects */
  .vsl-prueba-social__card:hover {
    transform: none;
  }

  .vsl-prueba-social__card:hover .vsl-prueba-social__photo img {
    transform: none;
  }
}

/* Accesibilidad */
@media (prefers-contrast: high) {
  .vsl-prueba-social__card {
    border: 3px solid var(--pw-white);
  }

  .vsl-prueba-social__verified {
    border: 2px solid var(--pw-primary);
  }

  .vsl-prueba-social__cta {
    border: 3px solid var(--pw-white);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vsl-prueba-social__card,
  .vsl-prueba-social__photo img {
    transition: none;
    animation: none;
  }

  .vsl-prueba-social__card:hover {
    transform: none;
  }

  .vsl-prueba-social__card:hover .vsl-prueba-social__photo img {
    transform: none;
  }

  .vsl-prueba-social__list {
    scroll-behavior: auto;
  }
}

.vsl-prueba-social__card:focus-within {
  outline: 3px solid var(--pw-white);
  outline-offset: 4px;
}

/* ============================================
   08-RESPALDO Y CONFIANZA (GARANTÍA)
   ============================================ */

.vsl-garantia {
  position: relative;
  padding: var(--pw-space-20) 0 var(--pw-space-16);
  overflow: hidden;

  /* Sin fondo propio - usa el fondo compartido del wrapper */
  background: transparent;
  margin: 0;

  /* Optimización de rendimiento */
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Overlay de transición: transparente → beige sólido */
.vsl-garantia__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(242, 232, 223, 0) 0%,
    rgba(242, 232, 223, 0.3) 25%,
    rgba(242, 232, 223, 0.6) 45%,
    rgba(242, 232, 223, 0.85) 65%,
    rgba(242, 232, 223, 1) 85%,
    #F2E8DF 100%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-garantia__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pw-space-6);
}

/* Sello de garantía */
.vsl-garantia__seal {
  display: flex;
  justify-content: center;
  margin-bottom: var(--pw-space-8);
}

.vsl-garantia__seal-circle {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--pw-primary) 0%, var(--pw-dark-olive) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 24px rgba(84, 113, 49, 0.4),
    0 0 0 8px rgba(255, 255, 255, 0.9),
    0 0 0 12px rgba(84, 113, 49, 0.2);
  position: relative;
  animation: seal-pulse 3s ease-in-out infinite;
}

@keyframes seal-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.vsl-garantia__seal-inner {
  width: 120px;
  height: 120px;
  background: var(--pw-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--pw-primary);
}

.vsl-garantia__seal-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vsl-garantia__seal-top,
.vsl-garantia__seal-bottom {
  font-family: var(--pw-font-sans);
  font-size: 0.75rem;
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vsl-garantia__seal-days {
  font-family: var(--pw-font-serif);
  font-size: 3rem;
  font-weight: var(--pw-font-weight-black);
  color: var(--pw-primary);
  line-height: 1;
  margin: 0.25rem 0;
}

/* Carta de garantía */
.vsl-garantia__carta {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  padding: var(--pw-space-10) var(--pw-space-8);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(84, 113, 49, 0.15);
  position: relative;
}

/* Borde decorativo superior */
.vsl-garantia__carta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pw-primary) 0%, var(--pw-dark-olive) 100%);
  border-radius: var(--pw-radius-lg) var(--pw-radius-lg) 0 0;
}

/* Header de la carta */
.vsl-garantia__carta-header {
  text-align: center;
  margin-bottom: var(--pw-space-8);
  padding-bottom: var(--pw-space-6);
  border-bottom: 2px solid rgba(84, 113, 49, 0.1);
}

.vsl-garantia__subtitle {
  font-family: var(--pw-font-sans);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--pw-text);
  margin: 0;
}

/* Cuerpo de la carta */
.vsl-garantia__carta-body {
  margin-bottom: var(--pw-space-8);
}

.vsl-garantia__intro {
  font-family: var(--pw-font-sans);
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--pw-secondary);
  margin: 0 0 var(--pw-space-6);
  font-style: italic;
  text-align: center;
}

.vsl-garantia__carta-body .vsl-text-large {
  margin-bottom: var(--pw-space-5);
}

.vsl-garantia__carta-body .vsl-text-large strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

/* Promesa destacada */
.vsl-garantia__promesa {
  background: rgba(107, 142, 61, 0.06);
  border-left: 4px solid var(--pw-dark-olive);
  border-radius: 0 var(--pw-radius-md) var(--pw-radius-md) 0;
  padding: var(--pw-space-6);
  margin: var(--pw-space-6) 0;
}

.vsl-garantia__promesa-title {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-primary);
  margin: 0 0 var(--pw-space-3);
  line-height: 1.3;
}

.vsl-garantia__promesa-text {
  font-family: var(--pw-font-sans);
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--pw-text);
  margin: 0;
}

.vsl-garantia__promesa-text strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

/* Nota al pie */
.vsl-garantia__footnote {
  font-family: var(--pw-font-sans);
  font-size: clamp(0.9375rem, 2.5vw, 1rem);
  line-height: 1.7;
  color: var(--pw-text-secondary);
  margin: 0;
  text-align: center;
  font-style: italic;
}

/* Footer de la carta */
.vsl-garantia__carta-footer {
  padding-top: var(--pw-space-6);
  border-top: 2px solid rgba(84, 113, 49, 0.1);
}

.vsl-garantia__badges {
  display: flex;
  justify-content: center;
  gap: var(--pw-space-6);
  flex-wrap: wrap;
  margin-bottom: var(--pw-space-5);
}

.vsl-garantia__badge {
  display: flex;
  align-items: center;
  gap: var(--pw-space-2);
  font-family: var(--pw-font-sans);
  font-size: 0.875rem;
  font-weight: var(--pw-font-weight-semibold);
  color: var(--pw-primary);
}

.vsl-garantia__badge svg {
  width: 24px;
  height: 24px;
  color: var(--pw-dark-olive);
  flex-shrink: 0;
}

.vsl-garantia__firma {
  font-family: 'Brush Script MT', cursive, var(--pw-font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--pw-primary);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .vsl-garantia {
    padding: var(--pw-space-16) 0 var(--pw-space-12);
  }

  .vsl-garantia__container {
    padding: 0 var(--pw-space-4);
  }

  .vsl-garantia__seal {
    margin-bottom: var(--pw-space-6);
    margin-top: var(--pw-space-8);
  }

  .vsl-garantia__seal-circle {
    width: 120px;
    height: 120px;
  }

  .vsl-garantia__seal-inner {
    width: 100px;
    height: 100px;
  }

  .vsl-garantia__seal-days {
    font-size: 2.5rem;
  }

  .vsl-garantia__carta {
    padding: var(--pw-space-8) var(--pw-space-5);
  }

  .vsl-garantia__subtitle br {
    display: none;
  }

  .vsl-garantia__badges {
    gap: var(--pw-space-4);
  }

  .vsl-garantia__badge {
    font-size: 0.8125rem;
  }
}

/* Responsive: Desktop */
@media (min-width: 769px) {
  .vsl-garantia__seal-circle {
    width: 160px;
    height: 160px;
  }

  .vsl-garantia__seal-inner {
    width: 135px;
    height: 135px;
  }

  .vsl-garantia__seal-days {
    font-size: 3.5rem;
  }
}

/* Accesibilidad */
@media (prefers-contrast: high) {
  .vsl-garantia__carta {
    border: 3px solid var(--pw-primary);
  }

  .vsl-garantia__seal-circle {
    box-shadow:
      0 8px 24px rgba(84, 113, 49, 0.6),
      0 0 0 8px var(--pw-white),
      0 0 0 12px var(--pw-primary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vsl-garantia__seal-circle {
    animation: none;
  }
}

.vsl-garantia__carta:focus-within {
  outline: 3px solid var(--pw-primary);
  outline-offset: 4px;
}

/* ============================================
   09-FAQ (PREGUNTAS FRECUENTES)
   ============================================ */

.vsl-faq {
  position: relative;
  padding: var(--pw-space-20) 0;
  background: #F2E8DF;
  margin: 0;
}

/* Header */
.vsl-faq__header {
  text-align: center;
  margin-bottom: var(--pw-space-12);
}

/* Lista de FAQ (Acordeón) */
.vsl-faq__list {
  max-width: 800px;
  margin: 0 auto var(--pw-space-12);
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-4);
}

/* Item de FAQ */
.vsl-faq__item {
  background: var(--pw-white);
  border-radius: var(--pw-radius-lg);
  border: 2px solid rgba(84, 113, 49, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vsl-faq__item:hover {
  border-color: rgba(84, 113, 49, 0.3);
  box-shadow: 0 6px 20px rgba(84, 113, 49, 0.15);
}

.vsl-faq__item.is-active {
  border-color: var(--pw-primary);
  box-shadow: 0 8px 24px rgba(84, 113, 49, 0.2);
}

/* Pregunta (Botón) */
.vsl-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--pw-space-3);
  padding: var(--pw-space-5) var(--pw-space-6);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.vsl-faq__question:hover {
  background: rgba(107, 142, 61, 0.05);
}

.vsl-faq__question:focus {
  outline: 2px solid var(--pw-accent);
  outline-offset: -2px;
}

.vsl-faq__question-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.vsl-faq__question-text {
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  font-weight: var(--pw-font-weight-bold);
  color: var(--pw-primary);
  line-height: 1.5;
  flex: 1;
}

.vsl-faq__chevron {
  width: 24px;
  height: 24px;
  color: var(--pw-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.vsl-faq__item.is-active .vsl-faq__chevron {
  transform: rotate(180deg);
}

/* Respuesta (Colapsable) */
.vsl-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vsl-faq__item.is-active .vsl-faq__answer {
  max-height: 500px;
}

.vsl-faq__answer-content {
  padding: 0 var(--pw-space-6) var(--pw-space-6);
  padding-left: calc(var(--pw-space-6) + 1.5rem + var(--pw-space-3));
}

.vsl-faq__answer-content p {
  font-size: clamp(1rem, 2.5vw, 1.0625rem);
  line-height: 1.8;
  color: var(--pw-text);
  margin: 0;
}

/* CTA Final */
.vsl-faq__cta {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--pw-space-10) var(--pw-space-8);
  background: var(--pw-white);
  border: 2px solid rgba(84, 113, 49, 0.2);
  border-radius: var(--pw-radius-lg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-6);
  align-items: center;
}

.vsl-faq__cta-text {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--pw-text);
  margin: 0;
}

.vsl-faq__cta-text strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .vsl-faq {
    padding: var(--pw-space-16) 0;
  }

  .vsl-faq__header {
    margin-bottom: var(--pw-space-8);
    padding: 0 var(--pw-space-4);
  }

  .vsl-faq__list {
    padding: 0 var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
  }

  .vsl-faq__question {
    padding: var(--pw-space-4) var(--pw-space-5);
    gap: var(--pw-space-2);
  }

  .vsl-faq__question-icon {
    font-size: 1.25rem;
  }

  .vsl-faq__answer-content {
    padding: 0 var(--pw-space-5) var(--pw-space-5);
    padding-left: calc(var(--pw-space-5) + 1.25rem + var(--pw-space-2));
  }

  .vsl-faq__cta {
    margin: 0 var(--pw-space-4);
    padding: var(--pw-space-8) var(--pw-space-6);
  }
}

/* Accesibilidad */
@media (prefers-contrast: high) {
  .vsl-faq__item {
    border: 3px solid rgba(84, 113, 49, 0.3);
  }

  .vsl-faq__item.is-active {
    border: 3px solid var(--pw-primary);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vsl-faq__item,
  .vsl-faq__question,
  .vsl-faq__chevron,
  .vsl-faq__answer {
    transition: none;
  }

  .vsl-faq__item.is-active .vsl-faq__chevron {
    transform: rotate(180deg);
  }
}

/* ============================================
   10-CTA FINAL
   ============================================ */

.vsl-cta-final {
  position: relative;
  padding: var(--pw-space-20) 0;
  overflow: hidden;
  background-image: url('/_assets/media/backgrounds/bg-winter-woods-winter-scaled.webp');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

/* Overlay con blend: beige → transparente suave */
.vsl-cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #F2E8DF 0%,
    rgba(242, 232, 223, 0.95) 3%,
    rgba(242, 232, 223, 0.85) 6%,
    rgba(242, 232, 223, 0.7) 10%,
    rgba(242, 232, 223, 0.5) 15%,
    rgba(242, 232, 223, 0.3) 20%,
    rgba(242, 232, 223, 0.15) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.vsl-cta-final > * {
  position: relative;
  z-index: 2;
}

/* Header Emocional */
.vsl-cta-final__header {
  text-align: center;
  margin-bottom: var(--pw-space-12);
}

.vsl-title--large {
  font-size: clamp(2rem, 5vw, 3rem);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.9);
  margin-bottom: var(--pw-space-8);
}

.vsl-cta-final__intro {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-5);
}

.vsl-cta-final__intro p {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--pw-text);
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: var(--pw-space-5) var(--pw-space-6);
  border-radius: var(--pw-radius-md);
  backdrop-filter: blur(3px);
}

.vsl-cta-final__intro p strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

/* Prueba Social */
.vsl-cta-final__social-proof {
  text-align: center;
  margin: 0 auto var(--pw-space-10);
  max-width: 700px;
}

.vsl-cta-final__social-text {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: var(--pw-text);
  margin: 0 0 var(--pw-space-3);
  background: rgba(255, 255, 255, 0.92);
  padding: var(--pw-space-5);
  border-radius: var(--pw-radius-md);
  backdrop-filter: blur(3px);
}

.vsl-cta-final__social-cta {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--pw-font-weight-black);
  color: var(--pw-primary);
  margin: 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9);
}

/* Imagen del Producto */
.vsl-cta-final__product-image {
  text-align: center;
  margin-bottom: var(--pw-space-10);
  padding: var(--pw-space-8) 0;
}

.vsl-cta-final__product-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Beneficios (Trust Badges) */
.vsl-cta-final__benefits {
  display: flex;
  justify-content: center;
  gap: var(--pw-space-8);
  flex-wrap: wrap;
  margin-bottom: var(--pw-space-10);
}

.vsl-cta-final__benefit-item {
  display: flex;
  align-items: center;
  gap: var(--pw-space-2);
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: var(--pw-font-weight-semibold);
  color: var(--pw-primary);
  background: rgba(255, 255, 255, 0.95);
  padding: var(--pw-space-4) var(--pw-space-6);
  border-radius: var(--pw-radius-lg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vsl-cta-final__benefit-icon {
  width: 28px;
  height: 28px;
  color: var(--pw-dark-olive);
  flex-shrink: 0;
}

/* CTA Principal */
.vsl-cta-final__cta-primary {
  max-width: 500px;
  margin: 0 auto var(--pw-space-10);
  text-align: center;
}

/* Sin Riesgo */
.vsl-cta-final__no-risk {
  max-width: 750px;
  margin: 0 auto var(--pw-space-8);
}

/* Urgencia */
.vsl-cta-final__urgency {
  text-align: center;
  margin-bottom: var(--pw-space-12);
}

.vsl-cta-final__urgency-text {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: var(--pw-font-weight-semibold);
  color: var(--pw-secondary);
  background: rgba(255, 255, 255, 0.92);
  padding: var(--pw-space-4) var(--pw-space-6);
  border-radius: var(--pw-radius-lg);
  display: inline-block;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Carta Final */
.vsl-cta-final__letter {
  max-width: 900px;
  margin: 0 auto;
}

.vsl-cta-final__letter-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--pw-radius-lg);
  padding: var(--pw-space-12) var(--pw-space-10);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(84, 113, 49, 0.15);
}

.vsl-cta-final__letter-icon {
  text-align: center;
  margin-bottom: var(--pw-space-6);
}

.vsl-cta-final__leaf-icon {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(84, 113, 49, 0.2));
}

.vsl-cta-final__letter-header {
  text-align: center;
  margin-bottom: var(--pw-space-8);
  padding-bottom: var(--pw-space-6);
  border-bottom: 2px solid rgba(84, 113, 49, 0.1);
}

.vsl-cta-final__letter-title {
  font-family: var(--pw-font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--pw-font-weight-black);
  color: var(--pw-primary);
  margin: 0 0 var(--pw-space-2);
  line-height: 1.3;
}

.vsl-cta-final__letter-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-style: italic;
  color: var(--pw-secondary);
  margin: 0;
}

.vsl-cta-final__letter-body {
  display: flex;
  flex-direction: column;
  gap: var(--pw-space-5);
}

.vsl-cta-final__letter-body p {
  font-size: clamp(1.0625rem, 2.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--pw-text);
  margin: 0;
}

.vsl-cta-final__letter-body p strong {
  color: var(--pw-primary);
  font-weight: var(--pw-font-weight-bold);
}

.vsl-cta-final__letter-emphasis {
  font-size: clamp(1.125rem, 3vw, 1.25rem) !important;
  font-style: italic;
  color: var(--pw-primary) !important;
  font-weight: var(--pw-font-weight-semibold) !important;
  padding: var(--pw-space-5);
  background: rgba(107, 142, 61, 0.06);
  border-left: 4px solid var(--pw-dark-olive);
  border-radius: 0 var(--pw-radius-md) var(--pw-radius-md) 0;
}

.vsl-cta-final__letter-closing {
  font-size: clamp(1.125rem, 3vw, 1.25rem) !important;
  font-weight: var(--pw-font-weight-semibold) !important;
  color: var(--pw-text) !important;
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .vsl-cta-final {
    padding: var(--pw-space-16) 0;
    background-attachment: scroll;
  }

  .vsl-cta-final__header {
    margin-bottom: var(--pw-space-10);
    padding: 0 var(--pw-space-4);
  }

  .vsl-title--large {
    margin-bottom: var(--pw-space-6);
  }

  .vsl-cta-final__intro {
    padding: 0 var(--pw-space-4);
  }

  .vsl-cta-final__intro p {
    padding: var(--pw-space-4) var(--pw-space-5);
  }

  .vsl-cta-final__social-proof {
    padding: 0 var(--pw-space-4);
    margin-bottom: var(--pw-space-6);
  }

  .vsl-cta-final__social-text {
    padding: var(--pw-space-4);
  }

  .vsl-cta-final__product-image {
    padding: var(--pw-space-6) var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
  }

  .vsl-cta-final__product-img {
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
  }

  .vsl-cta-final__benefits {
    flex-direction: column;
    align-items: center;
    gap: var(--pw-space-4);
    padding: 0 var(--pw-space-4);
  }

  .vsl-cta-final__benefit-item {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .vsl-cta-final__cta-primary {
    padding: 0 var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
  }

  .vsl-cta-final__no-risk {
    padding: 0 var(--pw-space-4);
  }

  .vsl-cta-final__urgency {
    padding: 0 var(--pw-space-4);
    margin-bottom: var(--pw-space-8);
  }

  .vsl-cta-final__letter {
    padding: 0 var(--pw-space-4);
  }

  .vsl-cta-final__letter-card {
    padding: var(--pw-space-8) var(--pw-space-6);
  }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .vsl-cta-final__product-img {
    animation: none !important;
  }
}

/* ============================================
   RESUMEN DE OPTIMIZACIÓN
   ============================================
   
   ANTES: ~2,670 líneas con duplicaciones
   DESPUÉS: ~2,780 líneas optimizadas
   
   NOTA: El aumento de líneas se debe a la adición de
   clases utilitarias reutilizables que REDUCEN duplicación
   en futuras implementaciones. La estructura es más DRY
   y mantenible.
   
   OPTIMIZACIONES IMPLEMENTADAS:
   
   1. CLASES UTILITARIAS GLOBALES (DRY):
      - .vsl-overlay: Overlay común para secciones con fondo
      - .vsl-container-rel: Contenedor relativo con z-index
      - .vsl-glass-box: Cajas semi-transparentes con backdrop
      - .vsl-card: Card elevada estándar con hover
      - .vsl-hover-lift: Efecto hover lift reutilizable
      - .vsl-section-header: Headers de sección centrados
      - .vsl-flex-list: Lista flex-column con gap
      - .vsl-cta-container: Contenedor CTA común
      - .vsl-img-scale: Imagen con hover scale
      - .vsl-text-shadow: Sombras de texto comunes
      - .vsl-list-icon: Íconos de lista (24px y 28px)
      - .vsl-trust-badge: Badges de confianza reutilizables
      - .vsl-animate-float: Animación flotante reutilizable
   
   2. AJUSTES DE PERFORMANCE:
      - Reducida opacidad de overlay en .vsl-solucion
        para mejor legibilidad del contenido
      - Hardware acceleration en secciones críticas
      - will-change optimizado solo donde es necesario
   
   3. MEJORAS DE MANTENIBILIDAD:
      - Estructura más DRY y escalable
      - Clases utilitarias listas para reuso
      - Fácil identificar patrones comunes
      - Código documentado con referencias
   
   RESULTADO:
   - Mejor mantenibilidad y escalabilidad
   - Código más limpio y DRY
   - Funcionalidad visual preservada
   - Base sólida para futuras secciones
   
   ============================================ */
