/* ========================================
   SL COLLECTION - PALETA DE COLORES
   ======================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  /* Offset para el menú sticky */
}

:root {
  /* Paleta principal - Tonos rosados/púrpura */
  --color-primary: #FF78C4;
  --color-primary-light: #FFBDF7;
  --color-secondary: #E1AEFF;
  --color-bg-accent: #FFF5F7;

  /* Colores base */
  --color-dark: #2D2D2D;
  --color-black: #111827;
  --color-gray: #374151;
  --color-light-gray: #4B5563;
  --color-bg: #FFFFFF;
  --color-white: #FFFFFF;

  /* Sombras */
  --shadow-primary: 0 10px 30px rgba(255, 120, 196, 0.15);
  --shadow-soft: 0 4px 14px rgba(225, 174, 255, 0.1);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.05);
  --shadow-video: 0 20px 60px rgba(255, 120, 196, 0.15);

  /* Bordes */
  --border-primary: 2px solid rgba(255, 120, 196, 0.4);
  --border-soft: 1px solid rgba(255, 189, 247, 0.5);

  /* Utilidades */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container-max-width: 1200px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-Index Layering */
  --z-base: 1;
  --z-video: 2;
  --z-overlay: 5;
  --z-loading: 10;
  --z-controls: 30;
  --z-badge: 32;
  --z-toast: 33;
  --z-header: 1000;
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  background-color: #FFFFFF;
  padding: 20px 0 0 0 !important;
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-soft);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo svg,
.logo img {
  height: 64px;
  width: auto;
}

/* ========================================
   MAIN HERO COVER
   ======================================== */
.hero-cover-main {
  width: 100%;
  background-color: var(--color-white);
  line-height: 0; /* Elimina espacio inferior residual */
}

.hero-cover-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.hero-cover-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Vista PC - Ajustes de proporción y tamaño */
@media (min-width: 1024px) {
  .hero-cover-main {
    padding: 0;
  }
  
  .hero-cover-container {
    /* En PC podemos limitar el ancho máximo si es necesario, 
       pero para ser "full responsive" usamos el 100% */
    max-width: 100%;
  }
}

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 16px;
  font-family: var(--font-family);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 120, 196, 0.4);
  background: linear-gradient(135deg, #ff66b8 0%, #d69aff 100%);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-soft);
}

.btn-full {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ========================================
   BANNER
   ======================================== */
.orange-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 120, 196, 0.2);
}

/* ========================================
   HERO SECTION - COMBINED (Video + Image)
   ======================================== */
.hero {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

/* Hero Combined Section */
.hero-combined-section {
  padding: 40px 0;
}

.hero-combined-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 40px;
  align-items: center;
}

.hero-video-col,
.hero-image-col {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  background-color: var(--color-white);
  border: var(--border-soft);
  width: 100%;
  max-width: 450px;
  aspect-ratio: 9/16;
  max-height: 800px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.image-container:hover .hero-img {
  transform: scale(1.02);
}

/* Hero Content Wrapper - Imagen 1:1 */
.hero-content-wrapper {
  display: flex;
  justify-content: center;
}

.hero-square-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  border: var(--border-soft);
  background: linear-gradient(135deg, #FFECEC 0%, #FFF9FB 100%);
  width: 100%;
  max-width: 600px;
}

.square-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.hero-square-image:hover .square-img {
  transform: scale(1.05);
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rating-center {
  justify-content: center;
  margin-bottom: 32px;
}

.stars {
  color: var(--color-primary);
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 2px 4px rgba(255, 120, 196, 0.2);
}

.rating-text {
  color: var(--color-gray);
  font-size: 14px;
}

.rating-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

h1 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-black);
}

.highlight {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 4px;
  font-weight: 600;
}

.brand-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.guarantee {
  text-align: center;
  color: var(--color-primary);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.guarantee::before {
  content: "✨";
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
}

.testimonial-quote {
  font-size: 24px;
  line-height: 1.5;
  color: var(--color-black);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-style: italic;
}

.testimonial-quote p {
  margin-bottom: 12px;
}

.testimonial-quote cite {
  font-style: normal;
  font-size: 16px;
  color: var(--color-light-gray);
}

.verified {
  color: var(--color-primary);
  font-weight: 600;
}

/* ========================================
   SECCIONES DE RAZONES
   ======================================== */
.reason {
  padding: 80px 0;
  background-color: var(--color-white);
}

.reason-alt {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-accent) 100%);
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.reason-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  border: var(--border-soft);
  aspect-ratio: 4/5;
}

.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.reason-image:hover img {
  transform: scale(1.05);
}

.reason-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reason-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 4px rgba(255, 120, 196, 0.3));
}

.reason-badge {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 120, 196, 0.25);
}

.reason h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 32px;
  color: var(--color-black);
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--color-gray);
}

.reason-content h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-black);
}

.benefits-list {
  list-style: none;
  margin-bottom: 24px;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  color: var(--color-gray);
}

.benefits-list li:before {
  content: "💕";
  position: absolute;
  left: 0;
  font-size: 16px;
}

.highlight-box {
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
  box-shadow: var(--shadow-card);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
  gap: 16px;
  margin-top: 32px;
}

.feature-item {
  background-color: var(--color-white);
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--color-black);
  box-shadow: var(--shadow-card);
  border: var(--border-soft);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
}

/* Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.comparison-item {
  padding: 24px;
  border-radius: 12px;
}

.comparison-item.before {
  background-color: #FFF0F5;
  border: 2px solid #FFD6E8;
}

.comparison-item.after {
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  border: 2px solid var(--color-primary-light);
  box-shadow: var(--shadow-card);
}

.comparison-item h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.comparison-item.before h4 {
  color: #C71F5C;
}

.comparison-item.after h4 {
  color: var(--color-primary);
}

.small {
  font-size: 14px;
  margin-top: 12px;
  color: var(--color-light-gray);
}

/* Scale Grid */
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.scale-item {
  background-color: var(--color-white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: var(--border-soft);
  transition: var(--transition);
}

.scale-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.scale-item h4 {
  margin-bottom: 12px;
  color: var(--color-black);
  font-size: 18px;
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-accent) 100%);
}

.offer h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.offer-intro {
  text-align: center;
  font-size: 16px;
  color: var(--color-gray);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.offer-box {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg-accent) 100%);
  border: 3px solid var(--color-primary);
  border-radius: 24px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}

.offer-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 120, 196, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.offer-header {
  text-align: center;
  margin-bottom: 32px;
}

.offer-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 120, 196, 0.3);
}

.offer-header h3 {
  font-size: 32px;
  color: var(--color-black);
}

.offer-discount {
  text-align: center;
  margin-bottom: 32px;
}

.discount-text {
  font-size: 18px;
  margin-bottom: 8px;
}

.urgency {
  color: var(--color-light-gray);
  font-size: 14px;
}

.offer-products {
  margin-bottom: 32px;
}

.products-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.swipe-hint {
  color: var(--color-primary);
  font-size: 14px;
  margin-bottom: 20px;
  text-align: right;
  font-weight: 500;
}

.products-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: var(--border-soft);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-primary);
  border-color: var(--color-primary);
}

.product-image {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-soft);
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--color-black);
}

.product-savings {
  margin-bottom: 12px;
}

.savings-tag {
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary) 100%);
  color: var(--color-black);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.product-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-current {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
}

.price-current.gratis {
  color: var(--color-primary);
  font-size: 20px;
}

.price-original {
  font-size: 14px;
  color: var(--color-light-gray);
  text-decoration: line-through;
}

/* Content-visibility for below-fold sections */
.lp-gallery-section,
.video-testimonials,
.gallery-scroll-section,
.references-section,
.advisor-banner,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.offer-total {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: var(--border-soft);
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #FFE4E8;
  font-size: 16px;
}

.total-row:last-child {
  border-bottom: none;
}

.total-row.highlight {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 3px solid var(--color-primary);
}

.total-value {
  font-weight: 600;
  color: var(--color-gray);
}

.total-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 2px 4px rgba(255, 120, 196, 0.15);
}

.offer-deadline {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: linear-gradient(135deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  color: var(--color-black);
  padding: 30px 0 60px 0;
  text-align: center;
  border-top: var(--border-soft);
}

.disclaimer {
  font-size: 12px;
  color: var(--color-light-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.copyright {
  font-size: 14px;
  color: var(--color-gray);
}

/* ========================================
   GUARANTEE VIDEO SECTION
   ======================================== */
.guarantee-video-section {
  max-width: 450px;
  margin: 40px auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .guarantee-video-section {
    max-width: 100%;
    margin: 30px 0;
    padding: 0;
  }
}

/* ========================================
   VIDEO CONTAINER - Aspect Ratio 9:16
   ======================================== */
.video-container {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  background: linear-gradient(135deg, #FFECEC 0%, #FFF9FB 100%);
  border: var(--border-soft);
  aspect-ratio: 9/16;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* ========================================
   VIDEO ELEMENT - ÚNICA DEFINICIÓN
   ======================================== */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 20px;
  visibility: visible !important;
  opacity: 1 !important;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  z-index: var(--z-video);
  min-width: 100%;
  min-height: 100%;
}

/* Ocultar controles nativos del video HTML5 */
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-panel {
  display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
  display: none !important;
}

.hero-video::-webkit-media-controls-timeline {
  display: none !important;
}

.hero-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

/* Video container self-hosted */
.video-container.self-hosted .hero-video {
  background: linear-gradient(135deg, #FFECEC 0%, #FFBDF7 100%);
}

/* Fallback image */
.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: var(--z-base);
  pointer-events: none;
}

.video-container.error .video-fallback,
.video-container:not(.loaded) .video-fallback {
  opacity: 1;
  z-index: 2;
}

/* Loading state overlay */
.video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFECEC 0%, #FFBDF7 100%);
  z-index: var(--z-loading);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container.loaded::before,
.video-container.playing::before {
  opacity: 0;
}

/* Video states */
.video-container.playing {
  box-shadow: 0 25px 70px rgba(255, 120, 196, 0.3);
}

.video-container.paused .hero-video {
  opacity: 0.9;
}

.video-container:hover {
  box-shadow: 0 30px 80px rgba(255, 120, 196, 0.35);
  transform: translateY(-4px);
}

/* ========================================
   VIDEO CONTROLS - Visibilidad Garantizada
   ======================================== */
.video-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  z-index: var(--z-controls);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.volume-control-group {
  display: flex;
  align-items: center;
  gap: 4px;
}

.volume-slider {
  width: 0;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255, 120, 196, 0.2);
  border-radius: 2px;
  outline: none;
}

.volume-control-group:hover .volume-slider,
.volume-slider:active {
  width: 60px;
  opacity: 1;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mostrar controles cuando el video está cargado o tiene clase visible */
.video-container.loaded .video-controls,
.video-controls.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Controles siempre visibles en hover desktop */
@media (hover: hover) and (pointer: fine) {
  .video-container:hover .video-controls {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Móvil: controles visibles después de touch */
.video-container.touched .video-controls {
  opacity: 1;
  pointer-events: auto;
}

/* Botones de control */
.volume-toggle,
.play-pause-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  z-index: calc(var(--z-controls) + 1);
}

.volume-toggle:hover,
.play-pause-toggle:hover {
  background: rgba(255, 120, 196, 0.15);
  color: var(--color-secondary);
  transform: scale(1.05);
}

.volume-toggle:active,
.play-pause-toggle:active {
  transform: scale(0.95);
}

/* Íconos de volumen */
.volume-toggle .icon-unmuted {
  display: none;
}

.volume-toggle.unmuted .icon-muted {
  display: none;
}

.volume-toggle.unmuted .icon-unmuted {
  display: block;
  color: var(--color-primary);
}

.volume-label {
  display: none;
}

@media (min-width: 769px) {
  .volume-label {
    display: inline;
  }
}

/* Separador */
.controls-separator {
  width: 1px;
  height: 24px;
  background: rgba(255, 120, 196, 0.4);
  margin: 0 4px;
}

/* Íconos play/pause */
.play-pause-toggle .icon-pause {
  display: none;
}

.play-pause-toggle.paused .icon-play {
  display: none;
}

.play-pause-toggle.paused .icon-pause {
  display: block;
}

/* Overlay - no bloquea controles */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: var(--z-overlay);
  cursor: pointer;
  pointer-events: none;
}

/* Los controles SÍ reciben clicks */
.video-controls,
.video-controls * {
  pointer-events: auto;
}

/* ========================================
   VIDEO BADGE - YouTube link
   ======================================== */
.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  z-index: var(--z-badge);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  transition: all 0.2s ease;
  border: 2px solid rgba(255, 120, 196, 0.3);
}

.video-badge:hover {
  background: #FFFFFF;
  color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 120, 196, 0.35);
  border-color: var(--color-primary);
}

/* ========================================
   VIDEO TOAST - Notificación
   ======================================== */
.video-toast {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 45, 45, 0.95);
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  z-index: var(--z-toast);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90%;
  text-align: center;
}

.video-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.video-toast strong {
  color: var(--color-primary);
  font-weight: 700;
}

.toast-close {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.toast-close:hover {
  opacity: 1;
}

/* ========================================
   SOUND ACTIVATE BUTTON - Overlay on videos
   ======================================== */
.sound-activate-btn {
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 120, 196, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: calc(var(--z-badge) + 1);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sound-activate-btn:hover {
  background: #FFFFFF;
  color: var(--color-secondary);
  transform: translate(-50%, 50%) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 120, 196, 0.3);
  border-color: var(--color-primary);
}

.sound-activate-btn:active {
  transform: translate(-50%, 50%) scale(0.98);
}

.sound-activate-btn svg {
  flex-shrink: 0;
}

.sound-activate-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 50%) scale(0.9);
}

@media (max-width: 768px) {
  .sound-activate-btn {
    bottom: 75%;
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ========================================
   BOTÓN RECLAMAR OFERTA
   ======================================== */
button.text.r-1823po7.alchemy-rte.btn,
button[data-rid="reclamar-oferta"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 56px;
  padding: 18px 40px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #FF78C4 0%, #E1AEFF 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(255, 120, 196, 0.35), 0 4px 12px rgba(225, 174, 255, 0.2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

button.text.r-1823po7.alchemy-rte.btn div.r-4pixxy.alchemy-rte.btn-content,
button[data-rid="reclamar-oferta"] div[data-rid="23831531-c1d2-454c-9d7e-2686c7a560ed"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

button.text.r-1823po7.alchemy-rte.btn p,
button[data-rid="reclamar-oferta"] p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

button.text.r-1823po7.alchemy-rte.btn .arrow,
button[data-rid="reclamar-oferta"] .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button.text.r-1823po7.alchemy-rte.btn:hover,
button[data-rid="reclamar-oferta"]:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ff66b8 0%, #d69aff 100%);
  box-shadow: 0 16px 40px rgba(255, 120, 196, 0.45), 0 8px 20px rgba(225, 174, 255, 0.3);
}

button.text.r-1823po7.alchemy-rte.btn:hover .arrow,
button[data-rid="reclamar-oferta"]:hover .arrow {
  transform: translateX(4px);
}

button.text.r-1823po7.alchemy-rte.btn:active,
button[data-rid="reclamar-oferta"]:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 8px 20px rgba(255, 120, 196, 0.3), 0 4px 10px rgba(225, 174, 255, 0.15);
  transition-duration: 0.1s;
}

button.text.r-1823po7.alchemy-rte.btn:focus-visible,
button[data-rid="reclamar-oferta"]:focus-visible {
  outline: 3px solid #FF78C4;
  outline-offset: 3px;
  box-shadow: 0 0 0 8px rgba(255, 120, 196, 0.2), 0 12px 32px rgba(255, 120, 196, 0.4);
}

button.text.r-1823po7.alchemy-rte.btn:disabled,
button[data-rid="reclamar-oferta"]:disabled,
button.text.r-1823po7.alchemy-rte.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: 0 4px 12px rgba(255, 120, 196, 0.15);
}

button.text.r-1823po7.alchemy-rte.btn::before,
button[data-rid="reclamar-oferta"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

button.text.r-1823po7.alchemy-rte.btn:hover::before,
button[data-rid="reclamar-oferta"]:hover::before {
  left: 100%;
}

button.text.r-1823po7.alchemy-rte.btn::after,
button[data-rid="reclamar-oferta"]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

button.text.r-1823po7.alchemy-rte.btn:active::after,
button[data-rid="reclamar-oferta"]:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: none;
}

/* ========================================
   ANIMACIONES
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSlideInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.reason.animate-in,
.offer-box.animate-in,
.testimonial.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

button.text.r-1823po7.alchemy-rte.btn.animate-in,
button[data-rid="reclamar-oferta"].animate-in {
  animation: buttonSlideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleExpand 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 1;
}

/* ========================================
   ACCESIBILIDAD - GLOBAL
   ======================================== */
.btn:focus-visible,
a:focus-visible,
.logo-link:focus-visible,
.video-container:focus-within,
.video-badge:focus-visible,
.volume-toggle:focus-visible,
.play-pause-toggle:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Remove focus ring on click (only show for keyboard focus) */
.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible),
.logo-link:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Removido el soporte de modo oscuro para mantener la consistencia visual clara */

/* ========================================
   MOBILE STICKY CTA
   ======================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A; /* Fondo oscuro sólido para destacar */
  color: var(--color-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
  border-top: 2px solid var(--color-primary); /* Línea de color arriba para branding */
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.sticky-cta-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta-original {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: line-through;
  white-space: nowrap;
}

.sticky-cta .btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 13px;
  min-width: 120px;
  max-width: 45%;
  background: var(--color-primary);
  border: none;
  color: white;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(255, 120, 196, 0.3);
}

.sticky-cta .btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* Sticky CTA - Mobile Breakpoint */
@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  .sticky-cta-content {
    gap: 8px;
  }

  .sticky-cta-price {
    font-size: 14px;
  }

  .sticky-cta .btn {
    padding: 10px 14px;
    font-size: 12px;
    min-width: 110px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sticky-cta {
    padding: 10px 12px;
  }

  .sticky-cta-content {
    gap: 6px;
  }

  .sticky-cta-price {
    font-size: 13px;
  }

  .sticky-cta .btn {
    padding: 9px 12px;
    font-size: 11px;
    min-width: 100px;
  }
}


@media (prefers-contrast: high) {

  .video-badge,
  .btn-outline {
    border: 2px solid var(--color-primary);
  }
}

/* ========================================
   GO TO TOP BUTTON
   ======================================== */
.go-top-btn {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(255, 120, 196, 0.3);
}

.go-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-top-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 120, 196, 0.4);
}

.go-top-btn svg {
  width: 24px;
  height: 24px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .go-top-btn {
    bottom: 100px;
    /* Evitar que tape el sticky CTA */
    left: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ========================================
   UTILIDADES
   ======================================== */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge-new {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary-light), transparent);
  margin: 40px 0;
  border: none;
}

.hover-lift {
  transition: var(--transition);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
}

.highlight {
  color: var(--color-primary);
  font-weight: 600;
}

.section-pink {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-accent) 100%);
}

.premium {
  border: var(--border-primary);
  box-shadow: var(--shadow-primary);
}

.btn-full-width {
  width: 100% !important;
  max-width: none !important;
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-with-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.action-btn.like-btn.liked {
  color: var(--color-primary);
  fill: var(--color-primary);
  transform: scale(1.2);
}

.action-btn.like-btn.liked svg {
  fill: var(--color-primary);
}

/* ========================================
   VIDEO TESTIMONIALS SLIDER
   ======================================== */

.video-testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  overflow: hidden;
}

.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-black);
}

.section-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 16px;
  margin-bottom: 48px;
}

/* Slider Container */
.testimonial-slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.slider-viewport {
  overflow: hidden;
  position: relative;
  /* El "Fade" suave en los bordes como en el video */
  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);
}

.slider-wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
  /* Forzar GPU */
}

/* Individual Video Card */
.testimonial-video {
  flex: 0 0 calc(33.333% - 13.333px);
  min-width: 0;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.95);
  will-change: transform, opacity, filter;
}

.testimonial-video.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.testimonial-video.prev,
.testimonial-video.next {
  opacity: 0.7;
  filter: blur(1px);
  transform: scale(0.97);
}

.video-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 189, 247, 0.3);
}

/* Video Header */
.video-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 189, 247, 0.2);
}

.user-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-primary);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  border: 2px solid white;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  color: var(--color-black);
  font-size: 14px;
}

.user-location {
  font-size: 12px;
  color: var(--color-light-gray);
}

/* Video Container */
.video-container-self {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #FFECEC 0%, #FFF9FB 100%);
  overflow: hidden;
  cursor: pointer;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.testimonial-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.video-overlay-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 5;
  cursor: pointer;
}

.video-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.video-overlay-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}

.video-container-self.playing .video-overlay-play {
  opacity: 0;
  pointer-events: none;
}

/* Video Controls */
.video-controls-self {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.video-container-self:hover .video-controls-self,
.video-container-self.playing .video-controls-self {
  opacity: 1;
}

.control-btn-self {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.control-btn-self:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.control-btn-self svg {
  width: 18px;
  height: 18px;
}

.control-btn-self .pause-icon,
.control-btn-self .volume-mute {
  display: none;
}

.control-btn-self.paused .play-icon,
.control-btn-self.muted .volume-high {
  display: none;
}

.control-btn-self.paused .pause-icon,
.control-btn-self.muted .volume-mute {
  display: block;
}

/* Progress Bar */
.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  background: var(--color-primary);
  width: 0%;
  transition: width 0.1s linear;
}

/* Social Badge */
.social-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 15;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.social-badge.youtube {
  background: rgba(255, 0, 0, 0.9);
  color: white;
}

.social-badge.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-badge.facebook {
  background: rgba(24, 119, 242, 0.9);
  color: white;
}

.social-badge.tiktok {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.social-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-badge.lightbox-trigger {
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.social-badge.lightbox-trigger:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Video Footer */
.video-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-top: 1px solid rgba(255, 189, 247, 0.2);
}

.video-actions {
  display: flex;
  gap: 16px;
}

.action-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-gray);
  transition: all 0.2s ease;
  padding: 4px;
}

.action-btn:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.action-btn.like-btn.liked {
  color: #ff3860;
  fill: #ff3860;
  stroke: none;
}

.action-btn svg {
  width: 20px;
  height: 20px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 2px solid rgba(255, 189, 247, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.slider-nav:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: -24px;
}

.slider-nav.next {
  right: -24px;
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Dots Indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 120, 196, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--color-primary);
  width: 30px;
  border-radius: 5px;
}

.slider-dot:hover {
  background: var(--color-primary);
}

/* Lightbox Styles */
.video-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 2001;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-video-container {
  width: 100%;
  height: 100%;
}

#lightboxVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2002;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-video {
    flex: 0 0 calc(50% - 10px);
  }

  .testimonial-slider {
    padding: 0 50px;
  }

  .slider-wrapper {
    gap: 16px;
  }
}

/* Mobile - AHORA MUESTRA 3 VIDEOS */
@media (max-width: 768px) {
  .hero {
    padding: 20px 0;
  }

  /* Hero Combined Section - Mobile */
  .hero-combined-section {
    padding: 20px 0;
  }

  .hero-combined-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-video-col {
    order: -1;
    /* Video arriba en móvil */
  }

  .hero .video-container {
    aspect-ratio: 9/16 !important;
    /* Formato Story Vertical */
    max-width: 320px;
    max-height: 520px;
  }

  .hero-square-image {
    max-width: 320px;
  }

  /* Header WhatsApp button - Mobile */
  .btn-header-whatsapp {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }

  .btn-header-whatsapp .wa-icon {
    width: 16px;
    height: 16px;
  }

  /* Features Section - Mobile */
  .features-section {
    padding: 40px 0;
  }

  .features-title {
    font-size: 24px;
  }

  .features-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .features-grid-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 24px 16px;
  }

  .feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .feature-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .reason-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reason-image {
    order: -1;
    /* Siempre imagen arriba en móvil */
    aspect-ratio: 9/16;
    /* Formato Story Vertical */
    max-width: 320px;
    /* Tamaño tipo story */
    margin: 0 auto 30px;
  }

  .reason-text {
    text-align: center;
  }

  .reason-header {
    justify-content: center;
  }

  .benefits-list li {
    text-align: left;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .scale-grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: block;
  }

  .orange-banner {
    padding: 5px 0;
    font-size: 12px;
  }

  .video-testimonials {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .testimonial-slider {
    padding: 0 20px;
  }

  .slider-wrapper {
    gap: 8px;
    /* Reducir gap para que quepan 3 */
  }

  /* 3 videos en móvil - Forzamos visibilidad sin blur */
  .testimonial-video {
    flex: 0 0 calc(33.333% - 5.333px) !important;
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .testimonial-video.active,
  .testimonial-video.prev,
  .testimonial-video.next {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    z-index: 10;
  }

  .video-container-self {
    aspect-ratio: 9/16 !important;
    /* Mantener formato vertical real */
    pointer-events: auto !important;
  }

  .video-header {
    padding: 8px;
    gap: 8px;
  }

  .user-avatar {
    width: 32px;
    height: 32px;
  }

  .user-name {
    font-size: 12px;
  }

  .user-location {
    font-size: 10px;
  }

  .verified-badge {
    width: 12px;
    height: 12px;
    font-size: 8px;
  }

  .video-footer {
    padding: 8px;
  }

  .video-actions {
    gap: 8px;
  }

  .action-btn svg {
    width: 16px;
    height: 16px;
  }

  .video-controls-self {
    padding: 8px;
  }

  .control-btn-self {
    width: 28px;
    height: 28px;
  }

  .control-btn-self svg {
    width: 14px;
    height: 14px;
  }

  .social-badge {
    top: 8px;
    right: 8px;
    padding: 10px 14px;
    /* Mayor área de click */
    font-size: 11px;
    gap: 6px;
    opacity: 1 !important;
    display: flex !important;
    z-index: 30 !important;
    /* Más arriba */
  }

  .social-badge svg {
    width: 10px;
    height: 10px;
  }

  .slider-nav {
    display: flex;
    /* Mostrar flechas en móvil */
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-primary);
    z-index: 1000;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  /* Lightbox Mobile Adjustments */
  .lightbox-content {
    width: 95%;
    max-height: 85vh;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .testimonial-slider {
    padding: 0 10px;
  }

  .testimonial-video {
    flex: 0 0 calc(33.333% - 5.333px) !important;
  }

  .video-container-self {
    aspect-ratio: 3/5 !important;
    /* Más vertical en móviles pequeños */
  }

  .user-info,
  .video-footer {
    display: none;
    /* Ahorrar espacio */
  }

  /* Features - 1 columna en móviles pequeños */
  .features-grid-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .feature-icon {
    font-size: 32px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .lp-title {
    font-size: 26px;
  }

  .hero-title-box {
    padding: 20px 15px;
    margin-bottom: 25px;
    border-radius: 16px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Accessibility */
.slider-nav:focus,
.control-btn-self:focus,
.action-btn:focus,
.slider-dot:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* ========================================
   LP SECTION - PROBLEMS & SOLUTIONS
   ======================================== */
.lp-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
}

.lp-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title-box {
  background: rgba(255, 120, 196, 0.15); /* Fondo rosa muy sutil */
  padding: 30px 20px;
  border-radius: 24px;
  margin-bottom: 35px;
  border: 1px solid rgba(255, 120, 196, 0.15);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.lp-title {
  text-align: center;
  font-size: 36px; /* Aumentado de 28px */
  font-weight: 800; /* Más grueso */
  margin-bottom: 12px;
  color: var(--color-black);
  line-height: 1.2;
}

.highlight-accent {
  color: var(--color-primary);
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(255, 120, 196, 0.1);
}

.lp-gallery-subtitle-small {
  text-align: center;
  font-size: 18px; /* Un poco más grande */
  color: var(--color-gray);
  margin-bottom: 0; /* Quitamos el margen inferior porque ya lo tiene el box */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.lp-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 24px;
  color: var(--color-black);
}

/* Step Section - How to order */
.lp-step-section {
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--color-primary-light);
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-step-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary);
}

.lp-step-image {
  margin: 20px;
  width: auto;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  flex: 1;
}

/* imagen-7 specific */
.lp-step-image-7 .lp-step-image {
  margin: 30px;
}

/* imagen-8 specific */
.lp-step-image-8 .lp-step-image {
  margin: 15px 30px;
}

.lp-step-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.lp-step-image {
  width: 90%;
  max-width: 90%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  margin: 20px;
}

.lp-step-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.lp-step-content {
  padding: 10px 0;
}

.lp-step-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-black);
}

.lp-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-step-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.lp-step-list li:last-child {
  border-bottom: none;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lp-step-list li span:not(.step-number) {
  font-size: 16px;
  color: var(--color-text);
}

/* Mobile: imagen arriba, texto abajo */
@media (max-width: 768px) {
  .lp-step-section {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
    max-width: 100%;
  }

  .lp-step-image {
    width: 100%;
    justify-content: center;
  }

  .lp-step-image img {
    width: 100%;
    max-width: 100%;
  }

  .lp-step-content {
    width: 100%;
  }

  .lp-step-content h4 {
    font-size: 20px;
    text-align: center;
  }

  .lp-step-list li {
    gap: 10px;
    padding: 10px 0;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .lp-step-list li span:not(.step-number) {
    font-size: 14px;
  }
}

/* Problems Grid - 2x2 en mobile */
.lp-grid-problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.lp-problem {
  display: flex;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid rgba(255, 189, 247, 0.3);
  padding: 14px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.lp-problem:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
  border-color: var(--color-primary);
}

.lp-problem .lp-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.lp-problem p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-gray);
  margin: 0;
}

/* Main Block - Default MOBILE (stacked: carousel top, benefits bottom) */
.lp-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

/* Video específico en lp-main - más grande */
.lp-main .guarantee-video-section {
  max-width: 100%;
  margin: 20px 0;
}

.lp-main .video-container {
  max-height: 600px;
}

.lp-image-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
  border: var(--border-soft);
  background: linear-gradient(135deg, #FFECEC 0%, #FFF9FB 100%);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
  z-index: 1;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 9/16;
  max-height: 600px;
  z-index: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Benefits - Default MOBILE (2x2 grid) */
.lp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
}

.lp-benefits .lp-problem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 12px;
}

.lp-benefits .lp-problem .lp-icon {
  font-size: 28px;
  margin-bottom: 4px;
}

.lp-benefits .lp-problem p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-gray);
  margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 120, 196, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
  opacity: 0.9;
  pointer-events: auto;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.carousel-nav:hover {
  background: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(255, 120, 196, 0.3);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav.carousel-prev {
  left: 16px;
}

.carousel-nav.carousel-next {
  right: 16px;
}

.carousel-nav svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .carousel-wrapper {
    max-width: 280px;
  }

  .carousel-nav {
    width: 36px;
    height: 36px;
  }

  .carousel-nav svg {
    width: 20px;
    height: 20px;
  }

  .carousel-slide img {
    object-fit: fill;
  }

  .references-carousel-track {
    padding: 10px 0 0 55px;
  }
}

/* Benefits */
.lp-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 0;
}

.lp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lp-benefit .lp-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.lp-benefit p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray);
  margin: 0;
}

/* CTA Wrapper */
.lp-cta-wrapper {
  text-align: center;
  margin-top: 32px;
}

.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 15px rgba(255, 120, 196, 0.3);
}

.lp-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 120, 196, 0.4);
  background: linear-gradient(135deg, #ff66b8 0%, #d69aff 100%);
}

.lp-cta:active {
  transform: translateY(-1px);
}

/* Note */
.lp-note {
  text-align: center;
  font-size: 11px;
  color: var(--color-light-gray);
  margin-top: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  animation: pulse 2s infinite;
}

/* Tablet */
@media (min-width: 768px) {
  .lp-section {
    padding: 60px 20px;
  }

  .lp-title {
    font-size: 42px;
  }

  .lp-subtitle {
    font-size: 24px;
  }

  .lp-problem p,
  .lp-benefit p {
    font-size: 15px;
  }

  .lp-grid-problems {
    gap: 18px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .lp-section {
    padding: 80px 20px;
  }

  .lp-container {
    max-width: 900px;
  }

  .lp-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
  }

  .lp-image-carousel {
    height: 100%;
    min-height: 500px;
    max-width: 400px;
    margin: 0 auto;
  }

  .carousel-wrapper {
    height: 100%;
    aspect-ratio: 9/16;
    max-height: 600px;
  }

  .carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-slide img {
    object-fit: fill;
    max-height: 100%;
  }

  .lp-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    padding: 20px 0;
  }

  .lp-benefits .lp-problem {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 14px 12px;
  }

  .lp-benefits .lp-problem .lp-icon {
    font-size: 32px;
    margin-bottom: 0;
  }

  .lp-benefits .lp-problem p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }

  .lp-container {
    max-width: 900px;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-accent) 100%);
}

.features-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-black);
}

.features-subtitle {
  text-align: center;
  color: var(--color-gray);
  font-size: 16px;
  margin-bottom: 48px;
}

.features-grid-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: var(--border-soft);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-primary);
  border-color: var(--color-primary);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(255, 120, 196, 0.2));
}

.feature-card h3 {
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.ref-action-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.ref-action-btn:hover {
  transform: scale(1.2);
}

.ref-action-btn:active {
  transform: scale(0.9);
}

.ref-action-btn.heart.liked {
  animation: heartPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
  position: relative;
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1.2);
  }
}

/* Heart Float Animation - CodePen inspired */
@keyframes heartFloat {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(var(--s, 0.8)) rotate(0deg);
  }

  20% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(var(--tx, 20px), var(--ty, -120px)) scale(var(--s, 0.8)) rotate(var(--r, 15deg));
  }
}

.heart-float {
  position: fixed;
  pointer-events: none;
  font-size: var(--size, 20px);
  z-index: 10000;
  animation: heartFloat var(--duration, 2s) ease-out forwards;
  will-change: transform, opacity;
}

/* Toast Notification */
.ref-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(45, 45, 45, 0.95);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.ref-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ========================================
   REFERENCES SECTION (Instagram Style)
   ======================================== */
.references-section {
  padding: 80px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.references-title {
  font-size: 32px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--color-black);
  letter-spacing: 1px;
}

/* ========================================
   REFERENCES CAROUSEL (Instagram Style)
   ======================================== */
.references-carousel-container {
  position: relative;
  padding: 20px 0;
  margin-bottom: 10px;
}

.references-carousel-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.references-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.references-carousel-track:active {
  cursor: grabbing;
}

.references-carousel-track.is-dragging {
  transition: none !important;
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 0;
}

.carousel-indicators .indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 120, 196, 0.4);
  background: rgba(255, 120, 196, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.carousel-indicators .indicator-dot:hover {
  background: rgba(255, 120, 196, 0.5);
  border-color: var(--color-primary);
}

.carousel-indicators .indicator-dot.active {
  width: 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(255, 120, 196, 0.4);
}

@media (max-width: 768px) {
  .carousel-indicators .indicator-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-indicators .indicator-dot.active {
    width: 22px;
  }
}

.ref-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 120, 196, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 200;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--color-primary);
  opacity: 0;
  pointer-events: auto;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.references-carousel-container:hover .ref-nav-btn {
  opacity: 1;
  pointer-events: auto;
}

.ref-nav-btn:hover {
  background: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(255, 120, 196, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.ref-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.ref-nav-btn.ref-prev {
  left: 10px;
}

.ref-nav-btn.ref-next {
  right: 10px;
}

.ref-nav-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .ref-nav-btn {
    width: 40px;
    height: 40px;
    opacity: 0.95;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.98);
  }

  .references-carousel-container:hover .ref-nav-btn,
  .ref-nav-btn {
    opacity: 0.95;
  }

  .ref-nav-btn svg {
    width: 22px;
    height: 22px;
  }

  .ref-nav-btn.ref-prev {
    left: 8px;
  }

  .ref-nav-btn.ref-next {
    right: 8px;
  }
}

.reference-card {
  width: 350px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #efefef;
  overflow: hidden;
  flex-shrink: 0;
}

.ref-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

.ref-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ref-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--color-primary-light);
}

.ref-username {
  font-size: 14px;
  font-weight: 600;
  color: #262626;
}

.ref-dots {
  color: #262626;
  font-size: 18px;
  cursor: pointer;
}

.ref-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fafafa;
}

.ref-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ref-text-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ref-text-overlay p {
  font-size: 13px;
  color: #262626;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
}

.ref-footer {
  padding: 12px 15px;
}

.ref-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ref-icons-left {
  display: flex;
  gap: 15px;
}

.ref-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.ref-icon:hover {
  transform: scale(1.1);
}

.ref-icon.heart {
  color: #ed4956;
}

@media (max-width: 768px) {
  .references-section {
    padding: 60px 0;
  }

  .references-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .reference-card {
    width: 280px;
  }

  .ref-text-overlay {
    padding: 10px;
    bottom: 15px;
  }

  .ref-text-overlay p {
    font-size: 11px;
  }
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-accent) 100%);
}

.solution-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.solution-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  box-shadow: var(--shadow-card);
  border: var(--border-soft);
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--color-primary);
}

.solution-icon {
  font-size: 32px;
  width: 60px;
  height: 60px;
  background: var(--color-bg-accent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.solution-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-black);
}

.solution-info p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
}

/* Advisor Banner */
.advisor-banner {
  background: var(--color-white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--color-primary-light);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.advisor-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--color-primary);
}

.advisor-content {
  padding: 40px 50px;
}

.advisor-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-bg-accent);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.advisor-banner h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--color-black);
}

.advisor-banner p {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 25px;
}

.advisor-list {
  list-style: none;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.advisor-list li {
  font-size: 16px;
  color: var(--color-black);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.advisor-icon {
  font-size: 18px;
  line-height: 1.5;
}

.advisor-text {
  display: flex;
  flex-direction: column;
}

.advisor-text strong {
  color: var(--color-primary);
  display: block;
}

.advisor-text span {
  font-size: 15px;
  color: var(--color-light-gray);
}

@media (max-width: 768px) {
  .solution-section {
    padding: 60px 0;
  }

  .solution-card {
    align-items: center;
    text-align: center;
  }

  .advisor-content {
    padding: 30px 20px;
    text-align: center;
  }

  .advisor-list {
    text-align: left;
  }

  .advisor-banner h3 {
    font-size: 22px;
  }

  .lp-step-section {
    flex-direction: column;
    max-width: 100%;
  }

  .lp-step-section::before {
    width: 100%;
    height: 6px;
  }

  .lp-step-image {
    width: 100%;
    flex: none;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-white);
}

.faq-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.faq-grid {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-card);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(255, 120, 196, 0.1);
}

.faq-question {
  width: 100%;
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  transition: var(--transition);
}

.faq-toggle {
  font-size: 24px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 30px;
  color: var(--color-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  /* Suficiente para el contenido */
  padding-bottom: 25px;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
}

.faq-step-image {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.faq-step-image img {
  width: 100%;
  height: auto;
  display: block;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: grid;
  gap: 10px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding-bottom: 20px;
  }
}

/* ========================================
   IMPACT CTA SECTION
   ======================================== */
.impact-cta-section {
  padding: 30px 0;
  background-color: var(--color-bg-accent);
}

.cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 60px 40px;
  border-radius: 40px;
  box-shadow: var(--shadow-video);
  border: 2px solid var(--color-primary-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.cta-card h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--color-black);
  line-height: 1.2;
}

.cta-card p {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-divider {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #9CA3AF;
  font-size: 12px;
  font-weight: 700;
}

.cta-divider::before,
.cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E5E7EB;
}

.btn-whatsapp-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #25D366;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-large:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large i {
  font-size: 24px;
}

/* Header WhatsApp button */
.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.btn-header-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.btn-header-whatsapp .wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Pulse animation for header WhatsApp button */
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6); }
}

.btn-header-whatsapp {
  animation: pulse-wa 2s ease-in-out infinite;
}

.btn-header-whatsapp:hover {
  animation: none;
}

/* Pulse Animation for CTA */
@keyframes pulse-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 120, 196, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 120, 196, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 120, 196, 0);
  }
}

.pulse-animation {
  animation: pulse-cta 2s infinite;
}

/* ========================================
   GALLERY SCROLL SECTION
   ======================================== */
.gallery-scroll-section {
  padding: 60px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}

.gallery-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  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);
}

.gallery-marquee {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  animation: gallery-scroll 50s linear infinite;
  width: max-content;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes gallery-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.gallery-marquee.reverse {
  animation: gallery-scroll-reverse 50s linear infinite;
}

.mt-4 {
  margin-top: 1.5rem;
}

.gallery-item {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid #efefef;
}

.gallery-item:hover {
  transform: scale(1.05);
  z-index: 10;
  box-shadow: var(--shadow-primary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Diferentes tamaños (Masonry style in row) */
.size-v {
  width: 250px;
  height: 350px;
}

/* Vertical */
.size-h {
  width: 350px;
  height: 250px;
}

/* Horizontal */
.size-s {
  width: 300px;
  height: 300px;
}

/* Cuadrada */

@media (max-width: 768px) {
  .cta-card {
    padding: 40px 20px;
    border-radius: 30px;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .btn-whatsapp-large {
    font-size: 16px;
    padding: 15px 25px;
  }

  .size-v {
    width: 126px;
    height: 175px;
  }

  /* 180 * 0.7 */
  .size-h {
    width: 175px;
    height: 126px;
  }

  /* 250 * 0.7 */
  .size-s {
    width: 154px;
    height: 154px;
  }

  /* 220 * 0.7 */
}

/* ========================================
   PINTEREST GALLERY - COLLAGE 3x4
   ======================================== */
.lp-gallery-section {
  padding: 80px 0;
  background: var(--color-bg-accent);
}

.lp-gallery-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--color-light-gray);
  margin-top: -10px;
  margin-bottom: 40px;
  font-style: italic;
}

/* Wrapper para centrar y limitar el ancho igual que el video */
.pinterest-gallery-wrapper {
  max-width: 650px;
  margin: 0 auto;
  width: 100%;
}

.pinterest-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  /* Mismo aspect ratio que el video 9:16 */
  aspect-ratio: 9/16;
  max-height: 800px;
  overflow: hidden;
}

.pinterest-gallery .gallery-column {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
}

/* Estilo collage: algunas celdas ocupan 2 filas */
.pinterest-gallery .gallery-column:nth-child(1) .gallery-item:nth-child(1) {
  grid-row: span 2;
}

.pinterest-gallery .gallery-column:nth-child(3) .gallery-item:nth-child(3) {
  grid-row: span 2;
}

.pinterest-gallery .gallery-column:nth-child(5) .gallery-item:nth-child(2) {
  grid-row: span 2;
}

.pinterest-gallery .gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  opacity: 1;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  cursor: pointer;
  min-height: 0;
}

.pinterest-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pinterest-gallery .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(255, 120, 196, 0) 0%,
      rgba(255, 120, 196, 0) 60%,
      rgba(255, 120, 196, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.pinterest-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.pinterest-gallery .gallery-item:hover {
  box-shadow: var(--shadow-primary);
  z-index: 2;
}

/* Animation classes for fade in/out asíncrono */
.pinterest-gallery .gallery-item.fade-out {
  opacity: 0;
  transform: scale(0.92) rotate(-2deg);
}

.pinterest-gallery .gallery-item.fade-in {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.pinterest-gallery .gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .pinterest-gallery-wrapper {
    max-width: 500px;
  }

  .pinterest-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .pinterest-gallery .gallery-column {
    gap: 8px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pinterest-gallery-wrapper {
    max-width: 400px;
  }

  .pinterest-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pinterest-gallery .gallery-column {
    gap: 8px;
  }

  .lp-gallery-subtitle {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pinterest-gallery-wrapper {
    max-width: 320px;
  }

  .pinterest-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .pinterest-gallery .gallery-column {
    gap: 6px;
  }
}

/* ========================================
   HOW TO BUY SECTION (Steps)
   ======================================== */
.how-to-buy-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-bg-accent) 0%, var(--color-white) 100%);
  overflow: hidden;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
}

.step-item {
  flex: 1;
  background: var(--color-white);
  padding: 40px 25px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid #F3F4F6;
  transition: var(--transition);
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-video);
  border-color: var(--color-primary-light);
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--color-bg-accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary-light);
  padding: 14px;
  transition: var(--transition);
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Colores únicos para los fondos de los iconos de los pasos */
.step-item:nth-child(1) .step-icon { background: #FFF0F5; border-color: #FFB6C1; } /* Rosa claro */
.step-item:nth-child(3) .step-icon { background: #E6F3FF; border-color: #A0C4FF; } /* Azul claro */
.step-item:nth-child(5) .step-icon { background: #F0FFF0; border-color: #98FB98; } /* Verde menta */
.step-item:nth-child(7) .step-icon { background: #FFF8E1; border-color: #FFE082; } /* Ámbar claro */
.step-item:nth-child(9) .step-icon { background: #F3E5F5; border-color: #CE93D8; } /* Púrpura claro */

.step-item:hover .step-icon {
  background: var(--color-white);
  transform: rotate(-5deg) scale(1.1);
}
.step-number-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  border: 3px solid var(--color-white);
  box-shadow: 0 4px 10px rgba(255, 120, 196, 0.3);
}

.step-content h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.whatsapp-badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg-accent);
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 15px;
  border: 1px solid var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(255, 120, 196, 0.1);
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-badge-mini:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 120, 196, 0.3);
}

.whatsapp-badge-mini:hover img {
  filter: brightness(0) invert(1);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  width: 30px;
  flex-shrink: 0;
}

.step-arrow svg {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .steps-wrapper {
    gap: 10px;
  }
  
  .step-item {
    padding: 30px 15px;
  }
  
  .step-content h3 {
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .step-arrow {
    display: none;
  }
  
  .steps-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .step-item:nth-child(n+7) {
    grid-column: span 1.5;
  }
}

@media (max-width: 768px) {
  .steps-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .step-arrow {
    display: none; /* Sin flechas en móvil */
  }

  .step-item {
    width: 100%;
    max-width: none;
    padding: 20px 15px;
    border-radius: 20px;
  }

  .step-item:last-child:nth-child(odd) {
    grid-column: span 2;
    max-width: 250px;
    margin: 0 auto;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .step-content h3 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 13px;
  }
}

/* ========================================
   PRINT
   ======================================== */
@media print {
  .header,
  .orange-banner,
  .offer,
  .footer,
  .video-container,
  .features-section {
    display: none;
  }
}



/* ========================================
   TRUST BANNER SECTION (2 Rows)
   ======================================== */
.trust-banner-section {
  width: 100%;
}

/* Row 1: Urgency */
.urgency-row {
  background: linear-gradient(90deg, var(--color-primary) 0%, #D4145A 100%);
  padding: 30px 0;
  color: var(--color-white);
}

.urgency-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.urgency-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.alarm-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: alarm-pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
}

@keyframes alarm-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.alarm-icon svg {
  width: 45px;
  height: 45px;
  color: white;
}

.urgency-text .small-text {
  font-size: 14px;
  opacity: 0.9;
  display: block;
  margin-bottom: 4px;
}

.urgency-text .main-text {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
}

.urgency-text .sub-text {
  font-size: 16px;
  margin-top: 8px;
  opacity: 0.95;
}

/* WhatsApp Button White Style */
.wa-btn-white {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-white);
  padding: 12px 30px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.wa-btn-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.wa-icon-green i {
  font-size: 32px;
  color: #25D366;
}

.wa-btn-text {
  display: flex;
  flex-direction: column;
}

.wa-btn-text strong {
  color: #D4145A;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.wa-btn-text span {
  color: var(--color-gray);
  font-size: 13px;
}

/* Row 2: Trust Elements */
.trust-row {
  background-color: #F8F9FA;
  padding: 25px 0;
  border-bottom: 1px solid #EEE;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.trust-icon {
  font-size: 24px;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  color: var(--color-black);
  font-size: 15px;
  font-weight: 700;
}

.trust-text span {
  color: var(--color-gray);
  font-size: 13px;
}

.trust-sep {
  width: 1px;
  height: 35px;
  background-color: #DDD;
  margin: 0 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .urgency-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .urgency-left {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }
  
  .trust-sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .urgency-text .main-text {
    font-size: 24px;
  }
  
  .trust-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .trust-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  
  .trust-banner-section .trust-sep {
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    margin: 5px auto;
    /* Flecha hacia abajo en móvil */
    position: relative;
    border: none;
  }
  
  .trust-banner-section .trust-sep::after {
    content: "↓";
    position: static;
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    transform: none;
  }
}

/* End of file cleanup */