/* ==========================================================================
  LANDING V2: "THE LEGENDS CLUB" EDITION (CON LOGOS DINÁMICOS)
  ========================================================================== */

html {
  scroll-behavior: smooth;
}

/* ==========================================================================
  RESET GLOBAL (ELIMINA DESBORDAMIENTOS Y DESCUDRES)
  ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box; 
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Esto prohíbe terminantemente el scroll horizontal en iPhone */
  position: relative;
  background-color: #0a0505; 
}

/* ==========================================================================
  MEJORAS DE INTERACCIÓN (ANTI-SELECCIÓN EN MÓVILES)
  ========================================================================== */
.badges-confianza span, 
.vibe-tag, 
.badge-gold, 
.btn-gamificado,
.story-bridge,
.club-sign,
.target-pill span,
.lang-card span,
.gender-pill span,
.vibe-card span,
.privacidad-check label,
.faq-pregunta {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;  /* Firefox */
  -ms-user-select: none;   /* IE 10+ */
  user-select: none;     /* Estándar */
}

/* ==========================================================================
  EL TRUCO DE HOLLYWOOD (ENTRADA SUAVE DE LA WEB)
  ========================================================================== */
main {
  opacity: 0;
  /* Le damos 0.2s de retraso para que Cookiebot cargue primero */
  animation: fadeInPage 0.8s ease-in-out 0.2s forwards; 
}

@keyframes fadeInPage {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ==========================================================================
  FONDOS Y AMBIENTACIÓN GLOBALES (AHORA CON FLOW DE CLUB)
  ========================================================================== */
.premium-bg-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  /* Añadimos sutiles focos cyan y magenta (de tu logo) mezclados con el dorado */
  background: radial-gradient(circle at 15% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(255, 0, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 5, 5, 0.95) 0%, rgba(20, 10, 10, 1) 100%);
  background-size: 200% 200%;
  animation: clubLights 15s ease infinite; /* Movimiento de luces de sala */
  z-index: -2;
}

@keyframes clubLights {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 130vh;
  background-image: url('../media/images/hero-bg.webp');
  background-size: cover; background-position: center;
  opacity: 0.35; /* Un poco más visible para dar ambiente de fiesta */
  mix-blend-mode: overlay;
  filter: sepia(30%) contrast(1.2) brightness(0.8);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  z-index: -1;
  animation: ambientZoom 20s infinite alternate ease-in-out; /* Zoom inmersivo */
}

@keyframes ambientZoom {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(-2%); }
}

/* ==========================================================================
  ESTRUCTURA HERO Y TITULARES VIVOS
  ========================================================================== */
.landing-main-container {
  max-width: 1480px; /* AMPLIADO: Le damos más espacio total a la pantalla para que respiren ambas columnas */
  margin: 0 auto;
  padding: 160px 20px 100px;
  display: grid; 
  grid-template-columns: 1fr 1.4fr;
  gap: 50px; /* REDUCIDO: Quitamos espacio vacío en medio para dárselo al formulario */
  align-items: start; 

 /* NUEVAS ANCLAS DE SEGURIDAD ANTI-SALTOS */
  width: 100%;
  overflow: visible;
}

/* Y añade esto justo debajo para blindar las columnas */
.landing-main-container > div {
  min-width: 0; /* Evita que el contenido expanda la cuadrícula antes de cargar el CSS */
}

/* --- NUEVO: LOGO MÓVIL OCULTO EN PC --- */
.logo-hero-movil {
  display: none;
}

.badge-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 4px;
  background: rgba(255, 215, 0, 0.05); border-left: 3px solid #FFD700;
  color: #FFD700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 900; margin-bottom: 30px;
  animation: floatBadge 3s ease-in-out infinite; 
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 15px rgba(255, 215, 0, 0.0); }
  50% { transform: translateY(-6px); box-shadow: 0 15px 25px rgba(255, 215, 0, 0.2); }
}

.titulo-espectaculo {
  font-size: 3.8rem; 
  font-weight: 900; 
  line-height: 1.1; 
  margin-bottom: 30px;
  color: #fff; text-transform: uppercase;
  animation: neonPulseTitle 3s infinite alternate ease-in-out;
  min-height: 150px; 
}

@keyframes neonPulseTitle {
  0% { text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.1), 0 0 20px rgba(255, 215, 0, 0.1); }
  100% { text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.1), 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 215, 0, 0.2); }
}

.texto-dorado-italic {
  font-family: 'Playfair Display', serif; 
  font-style: italic; 
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
  white-space: normal; 
  text-decoration: none !important;
}

/* --- NUEVO: Texto dorado con la tipografía principal (Sin cursiva) --- */
.texto-dorado-solido {
  color: #FFD700 !important; 
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 50%, #FFD700 100%);
  -webkit-background-clip: text !important; 
  -webkit-text-fill-color: transparent !important; 
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
  font-style: normal !important; 
}

/* --- CLASES PARA EL CONTROL DE LÍNEAS DEL H1 --- */
.kicker-elegante {
  display: block;
  font-size: 0.35em;
  font-family: 'Montserrat', 'Inter', sans-serif; 
  letter-spacing: 2px; 
  text-transform: uppercase;
  color: #ffffff; 
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9); 
  opacity: 0.95;
}

.linea-fija {
  display: inline-block;
  white-space: nowrap !important; 
  font-size: 0.92em; 
}

/* ==========================================================================
  REDISEÑO: SUBTÍTULO FILOSOFÍA (ESTILO TICKET / CLUB)
  ========================================================================== */
.subtitulo-espectaculo {
  font-size: 1.25rem; 
  color: #d1d5db; 
  line-height: 1.8; 
  margin-bottom: 40px; 
  padding: 25px 30px;
  background: rgba(255, 215, 0, 0.02);
  border: 1px dashed rgba(255, 215, 0, 0.2);
  border-left: 4px solid #FFD700;
  border-radius: 4px 20px 20px 4px;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.subtitulo-espectaculo strong {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ==========================================================================
  REDISEÑO: CAJA DE PRECIO (MÁXIMA CONVERSIÓN)
  ========================================================================== */
.caja-precio { 
  background: linear-gradient(145deg, rgba(30, 20, 20, 0.9), rgba(10, 0, 0, 1));
  padding: 35px; 
  border-radius: 24px; 
  border: 1px solid rgba(255, 8, 68, 0.2); 
  display: flex; 
  align-items: center; 
  gap: 30px; 
  margin-bottom: 45px; 
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255, 8, 68, 0.05);
  transition: 0.4s ease;
  min-height: 145px; /* NUEVO: Evita el salto (CLS) al cargar la fuente */
}

.caja-precio:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 8, 68, 0.4);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 20px rgba(255, 8, 68, 0.1);
}

/* Precio Tachado (Antiguo) */
.precio-antiguo p { 
  font-size: 0.7rem; 
  text-transform: uppercase; 
  color: #9ca3af; 
  letter-spacing: 2px; 
  margin: 0 0 8px 0; 
  font-weight: 700;
}
.precio-antiguo span { 
  font-size: 1.6rem; 
  color: #4b5563; 
  position: relative;
  display: inline-block;
  text-decoration: none; 
}
.precio-antiguo span::after {
  content: '';
  position: absolute;
  width: 110%;
  height: 2px;
  background: #ff0844;
  top: 50%;
  left: -5%;
  transform: rotate(-15deg);
  opacity: 0.7;
}

.precio-divisor { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* Precio Destacado (Actual) */
.precio-actual {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.precio-destacado { 
  display: flex; 
  flex-direction: column; /* Apila el texto encima del precio */
  align-items: center; /* Los centra perfectamente entre sí */
  gap: 2px; /* Espacio muy sutil entre el texto y el precio */
}

.precio-destacado .cifra { 
  font-size: 3.5rem; 
  font-weight: 900; 
  color: #fff; 
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 8, 68, 0.3); 
}

/* Nuevo texto VIP sin caja roja */
.texto-pioneros { 
  color: #FFD700; /* Lo ponemos en dorado para que mantenga el toque premium */
  font-size: 0.85rem; 
  font-weight: 900; 
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); /* Un levísimo brillo elegante */
}

.precio-actual p { 
  font-size: 0.8rem; 
  color: #9ca3af; 
  margin: 8px 0 0 0; 
  font-style: italic;
  max-width: 300px;
  line-height: 1.4;
  text-align: left;
}


/* MEMBERSHIP TOKENS (Fichas de Casino) */
.badges-confianza { display: flex; gap: 15px; flex-wrap: wrap; }
.badges-confianza span { 
  display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 50px; background: #000; border: 2px dashed rgba(255, 215, 0, 0.3); color: #fff; font-size: 0.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 10px rgba(255, 215, 0, 0.1); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: default;
}
.badges-confianza span:hover { transform: scale(1.1) rotate(2deg); border-color: #FFD700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }

/* ==========================================================================
  FORMULARIO "THE LEGENDS CLUB"
  ========================================================================== */

.landing-form-container {
  /* Dimensiones y estructura base */
  background: linear-gradient(145deg, rgba(26, 20, 20, 0.95) 0%, rgba(10, 5, 5, 1) 100%);
  /* --- MODIFICADO: Padding superior amplio para el logo --- */
  padding: 160px 60px 60px 60px; 
  max-width: 850px; 
  border-radius: 40px; 
  border: 1px solid rgba(255, 215, 0, 0.15); 
  box-shadow: 0 40px 80px rgba(0,0,0,0.8); 
  position: relative; 
  /* --- MODIFICADO: Visible para que el logo pueda salir --- */
  overflow: visible;
  min-height: 980px; 
  align-self: start; 
   
  /* Animación de entrada en cascada */
  opacity: 0;
  animation: fadeSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s forwards;
   
  /* Transición suave para cuando el usuario pase el ratón */
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- NUEVO: EFECTO "SHOW" AL HACER HOVER --- */
.landing-form-container:hover {
  border-color: #FFD700; /* El borde se enciende en dorado puro */
  transform: translateY(-5px); /* La caja "flota" un poquito hacia el usuario */
  box-shadow: 
    0 50px 100px rgba(0,0,0,0.9), /* Sombra negra más profunda para dar 3D */
    0 0 40px rgba(255, 215, 0, 0.25), /* Resplandor dorado exterior (Glow) */
    inset 0 0 30px rgba(255, 215, 0, 0.05); /* Resplandor dorado interior muy sutil */
}

/* --- NUEVO: LOGO FLOTANTE FORMULARIO --- */
.logo-flotante-form {
  position: absolute;
  width: 320px; /* Tamaño ideal para PC */
  top: -130px; /* Mitad fuera, mitad dentro */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.landing-form-container::before { content: '👑'; position: absolute; bottom: 20px; right: 20px; font-size: 5rem; opacity: 0.03; transform: rotate(-15deg); pointer-events: none; }
.glow-decorativo { position: absolute; top: -50px; right: -50px; width: 250px; height: 250px; background: rgba(255, 165, 0, 0.1); filter: blur(70px); border-radius: 50%; pointer-events: none; }
.form-header h2, .form-header h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 10px; text-align: center; }
.form-header p { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #9ca3af; text-align: center; margin-bottom: 30px; }

/* Inputs Base */
.form-gamificado .input-dark { width: 100%; margin-bottom: 20px; padding: 20px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); color: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.form-gamificado .input-dark:focus { outline: none; border-color: #FFD700; background: rgba(255,215,0,0.02); box-shadow: 0 0 20px rgba(255,215,0,0.05); }
.form-spacing { margin-bottom: 25px; }
.mt-0 { margin-top: 0 !important; margin-bottom: 0 !important; height: 100%; }
.form-row-superior { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; align-items: stretch; }

/* ==========================================================================
  CORRECCIÓN DEFINITIVA: CAMPO DE FECHA EN MÓVILES Y PC
  ========================================================================== */

.input-date-wrapper {
  position: relative;
  width: 100%;
  height: 100%; 
}

/* El input real está por encima, pero su fondo es transparente */
.date-real {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  background: transparent !important; 
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}

/* 1. Ocultamos la máscara fea (dd/mm/aaaa) por defecto */
.date-real:invalid:not(:focus) { 
  color: transparent; 
}
.date-real:invalid:not(:focus)::-webkit-datetime-edit { 
  color: transparent; 
}

/* 2. Mostrar la fecha en blanco SIEMPRE que sea válida */
.date-real:valid {
  color: #fff;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* El cartel falso que ve el usuario por defecto */
.date-fake-placeholder {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; 
  color: #9ca3af;
  font-size: 1rem;
  z-index: 1; /* Por debajo del input real */
  pointer-events: none; /* Los clics lo atraviesan */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fake-icon { margin-right: 10px; font-size: 1.2rem; }

/* Brillo dorado al tocar el campo (funciona en móvil y PC) */
.date-real:focus ~ .date-fake-placeholder {
  border-color: #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

/* 3. ¡LA MAGIA SEPARADA PARA PC Y MÓVIL! */

/* En todos los dispositivos: el cartel desaparece cuando hay fecha */
.date-real:valid ~ .date-fake-placeholder {
  opacity: 0;
  visibility: hidden;
}

/* SOLO EN PC (pantallas con ratón): mostramos la máscara al hacer clic y ocultamos el cartel */
@media (pointer: fine) {
  .date-real:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.05) !important;
  }
  .date-real:focus ~ .date-fake-placeholder {
    opacity: 0;
    visibility: hidden;
  }
}

/* Mantiene visible y clickeable el icono del calendario del sistema */
.date-real::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s;
}
.date-real::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Titulares de campo */
.grupo-tags { display: flex; flex-direction: column; height: 100%; }
.tag-title { display: flex; align-items: flex-end; min-height: 40px; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-style: italic; color: #FFD700; border-bottom: 1px solid rgba(255,215,0,0.1); padding-bottom: 10px; margin-bottom: 20px; width: 100%; }

/* PILAS Y TARJETAS GAMIFICADAS */
.radios-pills { display: flex; gap: 10px; height: 100%; }
.radios-pills label { flex: 1; position: relative; cursor: pointer; height: 100%; }
.radios-pills input { position: absolute; opacity: 0; cursor: pointer; }

.gender-pill span, .target-pill span, .lang-card span { 
  height: 100%; width: 100%; display: flex !important; flex-direction: column; align-items: center; justify-content: center; 
  gap: 8px; padding: 15px !important; border-radius: 12px !important; background: rgba(0,0,0,0.5) !important; 
  font-size: 1.05rem !important; border: 1px solid rgba(255,255,255,0.05); color: #9ca3af; 
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-sizing: border-box;
}

.gender-icon, .target-icon, .lang-icon { font-size: 2rem; font-style: normal; transition: all 0.3s ease; filter: grayscale(50%); line-height: 1; }

.tags-container { display: flex; flex-wrap: wrap; gap: 10px; flex-grow: 1; }
.target-pill, .lang-card { flex: 1; position: relative; cursor: pointer; }
.target-pill input, .lang-card input { position: absolute; opacity: 0; }

.dynamics-stack { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.vibe-card { height: 100%; display: flex; position: relative; cursor: pointer; }
.vibe-card input { position: absolute; opacity: 0; }
.vibe-card span { width: 100%; height: 100%; box-sizing: border-box; display: flex !important; align-items: center; gap: 15px; padding: 12px 20px !important; border-radius: 12px !important; background: rgba(0,0,0,0.5) !important; font-size: 1.05rem !important; text-align: left; border: 1px solid rgba(255,255,255,0.05); color: #ccc; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.vibe-icon { font-size: 1.5rem; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 12px; transition: all 0.4s ease; }

/* HOVERS FORMULARIO */
.gender-pill span:hover, .target-pill span:hover, .lang-card span:hover, .vibe-card span:hover { border-color: #FFD700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); transform: translateY(-4px) scale(1.02); z-index: 10; }
.gender-pill span:hover .gender-icon, .target-pill span:hover .target-icon, .lang-card span:hover .lang-icon { filter: grayscale(0%); transform: scale(1.1); opacity: 1; }
.vibe-card span:hover .vibe-icon { transform: rotate(-10deg) scale(1.1); background: rgba(255,215,0,0.1); }

/* SELECCIONADOS */
.gender-pill input:checked ~ span, .target-pill input:checked ~ span, .lang-card input:checked ~ span { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15); background: rgba(255, 215, 0, 0.08) !important; border-color: #FFD700; color: #fff; }
.gender-pill input:checked ~ span .gender-icon, .target-pill input:checked ~ span .target-icon, .lang-card input:checked ~ span .lang-icon { transform: scale(1.2); filter: grayscale(0%); opacity: 1; }
.vibe-card input:checked ~ span { transform: translateX(8px); background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(0,0,0,0.6) 100%) !important; border-left: 2px solid #FFD700; color:#fff;}
.vibe-card input:checked ~ span .vibe-icon { background: rgba(255, 215, 0, 0.2); transform: rotate(-10deg) scale(1.15); }
.surprise-card input:checked ~ span { background: linear-gradient(90deg, rgba(255, 8, 68, 0.15) 0%, rgba(0,0,0,0.6) 100%) !important; border-left: 2px solid #ff0844; color: #ff9a9e; box-shadow: 0 0 20px rgba(255, 8, 68, 0.2);}
.surprise-card input:checked ~ span .vibe-icon { background: rgba(255, 8, 68, 0.2); }

/* Botón y Privacidad */
.privacidad-check { background: rgba(0, 0, 0, 0.3); padding: 15px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); }
.privacidad-check label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.privacidad-check input { margin-top: 4px; accent-color: #FFD700; width: 20px; height: 20px; flex-shrink: 0; cursor: pointer; }
.privacidad-check span { font-size: 0.95rem; color: #e5e7eb; line-height: 1.6; }
.privacidad-check a { color: #FFD700; text-decoration: none; font-weight: bold; }

.btn-gamificado { width: 100%; padding: 25px !important; border-radius: 12px !important; font-size: 1.2rem !important; border: none; background: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%); background-size: 200% auto; color: #000; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; transition: 0.3s; box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4); white-space: nowrap; }
.btn-gamificado:hover { background-position: right center; transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); }



/* ==========================================================================
  BARRA DE ESTADO GLOBAL (FOMO Y PRUEBA SOCIAL)
  ========================================================================== */
.seccion-progreso-global {
  width: 100%;
  background: linear-gradient(90deg, #0a0505 0%, #1a0a0a 50%, #0a0505 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  padding: 50px 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 30px rgba(255, 215, 0, 0.02);
}

.progreso-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center; /* Centra la cápsula del hito */
}

.progreso-info-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 25px;
  text-align: left; /* Mantiene los textos superiores alineados a la izquierda */
}

.progreso-textos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.progreso-label-nuevo {
  color: #FFD700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}

.progreso-cifra-destacada {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin: 0;
  line-height: 1;
}

.progreso-porcentaje-nuevo {
  font-size: 3rem;
  font-family: monospace;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  line-height: 0.8;
}

.bar-bg-global {
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
  margin-bottom: 20px;
}

.bar-fill-global {
  height: 100%;
  background: linear-gradient(90deg, #FFD700 0%, #ff0844 100%);
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(255, 8, 68, 0.5);
  transition: width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progreso-footer-global {
  color: #9ca3af;
  font-size: 1.05rem;
  margin: 0 0 20px 0; /* Margen inferior para separarlo de la cápsula */
  line-height: 1.6;
}

.progreso-footer-global strong {
  color: #FFD700;
}

/* --- NUEVO DISEÑO ESPECTACULAR PARA EL HITO --- */
.caja-hito-destacado {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 25px;
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(0, 0, 0, 0.8));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 15px rgba(255, 215, 0, 0.05);
  animation: pulseHito 2s infinite alternate;
}

@keyframes pulseHito {
  0% { box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 15px rgba(255, 215, 0, 0.05); border-color: rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.1); border-color: rgba(255, 215, 0, 0.6); }
}

.hito-texto {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d1d5db;
  font-weight: 700;
}

.hito-numero {
  font-size: 1.4rem;
  font-weight: 900;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
}


/* ==========================================================================
  SEPARADOR DE LUZ (EFECTO FLOW ENTRE SECCIONES)
  ========================================================================== */
.separador-luz {
  width: 100%;
  height: 1px; /* Grosor de la línea */
  background: rgba(255, 215, 0, 0.05); /* La línea base estática y sutil */
  position: relative;
  overflow: hidden; /* Evita que la luz se salga de la pantalla y cree scroll */
}

.separador-luz::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%; /* Longitud del rayo de luz */
  height: 100%;
  /* Degradado con tus colores corporativos: transparente -> rojo neón -> dorado -> transparente */
  background: linear-gradient(90deg, transparent, rgba(255, 8, 68, 0.8), #FFD700, transparent);
  animation: luzFlowLanding 4s infinite linear;
}

@keyframes luzFlowLanding {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* --- MODIFICADOR: LUZ DE DERECHA A IZQUIERDA --- */
.separador-luz.inverso::before {
  left: auto; /* Anulamos la posición izquierda original */
  right: -100%; /* Empezamos fuera de la pantalla por la derecha */
  /* Invertimos el ángulo del degradado (-90deg) para que la luz se vea natural al revés */
  background: linear-gradient(-90deg, transparent, rgba(255, 8, 68, 0.8), #FFD700, transparent);
  animation: luzFlowLandingInverso 4s infinite linear;
}

@keyframes luzFlowLandingInverso {
  0% { right: -100%; }
  100% { right: 200%; }
}

/* ==========================================================================
  SECCIONES Y MÓDULOS DE LA LANDING
  ========================================================================== */
.cabecera-seccion { margin-bottom: 60px; text-align: center; }
.titulo-seccion-italic { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-style: italic; color: #fff; margin-bottom: 15px; }
.subtitulo-seccion-caps { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; color: #9ca3af; font-weight: bold; }

/* SECCION 2500 */
.seccion-2500 { padding: 80px 20px; background: #0a0505; }
.desc-2500 { color: #9ca3af; font-size: 1.1rem; line-height: 1.6; max-width: 700px; margin: 0 auto 50px auto; }
.grid-2500 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1100px; margin: 0 auto; text-align: center; }
.card-2500 { padding: 40px; border-radius: 20px; background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 215, 0, 0.1); transition: 0.3s; }
.card-2500:hover { border-color: #FFD700; background: rgba(255, 215, 0, 0.05); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1); }
.icono-2500 { font-size: 3rem; margin-bottom: 20px; transition: 0.3s; }
.card-2500:hover .icono-2500 { transform: scale(1.1); filter: drop-shadow(0 0 10px #FFD700); }
.titulo-2500-gold { color: #FFD700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; margin-bottom: 15px; }

/* Recuadro de Aviso (Barra de progreso VIP) */
.nota-2500 { 
  margin-top: 60px; 
  background: rgba(0, 0, 0, 0.8); 
  padding: 20px 30px; border-radius: 16px; 
  display: inline-block; 
  border: 2px dashed rgba(255, 215, 0, 0.3); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255, 215, 0, 0.05);
}
.nota-2500 p { color: #FFD700; font-size: 0.95rem; font-weight: 700; margin: 0; letter-spacing: 0.5px; }

/* AMBIENTE */
.seccion-ambiente { padding: 100px 20px; background: #080404; }
.mb-ambiente { margin-bottom: 60px; position: relative; z-index: 10; }
.subtitulo-gradient-gold { display: inline-block; font-size: 0.85rem; font-weight: bold; text-transform: uppercase; letter-spacing: 0.3em; background: linear-gradient(to right, #FFD700, #FF8C00); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; }
.titulo-gigante { font-size: 3.8rem; line-height: 1.1; margin-top: 10px; color: #fff; font-family: 'Playfair Display', serif; }
.grid-vibe { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.vibe-box { position: relative; height: 450px; border-radius: 1.5rem; overflow: hidden; background: #1a1a1a; border: none; box-shadow: 0 15px 40px rgba(0,0,0,0.6); transition: all 0.5s ease; transform: perspective(1000px); }
.vibe-box::after { content: ''; position: absolute; inset: 0; border-radius: 1.5rem; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.4s ease; pointer-events: none; z-index: 20; }
.vibe-box img { width: 100%; height: 100%; object-fit: cover; filter: sepia(40%) contrast(1.2) brightness(0.6); transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease; }
.vibe-box:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 30px rgba(255, 215, 0, 0.1); }
.vibe-box:hover::after { border-color: #FFD700; box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2); }
.vibe-box:hover img { transform: scale(1.15); filter: sepia(0%) contrast(1.2) brightness(1.1); }
.vibe-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; background: linear-gradient(to top, #000 0%, rgba(0,0,0,0.8) 60%, transparent 100%); z-index: 2; transform: translateY(5px); transition: transform 0.5s ease; }
.vibe-box:hover .vibe-content { transform: translateY(0); }
.seccion-ambiente .vibe-icon { font-size: 2.5rem; margin-bottom: 15px; display: inline-block; transition: transform 0.5s ease; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); }
.seccion-ambiente .vibe-box:hover .vibe-icon { transform: scale(1.2) translateY(-5px) rotate(-10deg); filter: drop-shadow(0 0 15px #FFD700); }
.vibe-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; background: linear-gradient(to right, #fff, #FFD700); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 5px; }

/* FORMATOS Y MEDIDA */
.seccion-formatos-clon, .seccion-medida { padding: 60px 20px; background: #080404; }
.grid-experience { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1100px; margin: 0 auto; }
.experience-card { background: linear-gradient(180deg, rgba(35, 30, 30, 0.7) 0%, rgba(15, 10, 10, 0.9) 100%); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; padding: 40px; display: flex; flex-direction: column; transition: all 0.5s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.experience-card:hover { transform: translateY(-8px); border-color: #FFD700; box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,215,0,0.05); }
.experience-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.experience-icon { font-size: 3rem; }
.target-badge { padding: 8px 18px; border-radius: 50px; font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; color: #FFD700; background: rgba(0, 0, 0, 0.8); border: 2px dashed rgba(255, 215, 0, 0.3); box-shadow: 0 5px 15px rgba(0,0,0,0.5), inset 0 0 10px rgba(255, 215, 0, 0.1); }
.experience-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-style: italic; color: #fff; margin-bottom: 10px; }
.experience-tagline { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: bold; margin-bottom: 25px; color: #FFD700; }
.experience-desc { color: #d1d5db; font-size: 1.05rem; line-height: 1.6; margin-bottom: 30px; }

/* Recuadros de Efecto Colateral */
.bonus-badge { 
  background: linear-gradient(145deg, rgba(20, 15, 10, 0.9), rgba(0, 0, 0, 1));
  padding: 20px 25px; border-radius: 16px; border: 1px solid rgba(255, 215, 0, 0.1); 
  border-left: 4px solid #FFD700; margin-top: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.bonus-title { display: block; font-size: 0.9rem; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: #FFD700; }
.bonus-text { color: #d1d5db; font-size: 0.95rem; line-height: 1.6; }

.detail-list { list-style: none; padding: 0; margin: 0 0 30px 0; }
.detail-list li { position: relative; padding-left: 20px; margin-bottom: 15px; color: #d1d1d1; border-left: 2px solid rgba(255,215,0,0.3); transition: 0.3s; }
.experience-card:hover .detail-list li { border-left-color: #FFD700; }

/* TIMELINE */
.seccion-experiencia { padding: 120px 20px; background-color: #080404; }
.timeline-container { max-width: 800px; margin: 0 auto; position: relative; }
.timeline-container::before { content: ''; position: absolute; left: 10px; top: 10px; bottom: 0; width: 2px; background: linear-gradient(to bottom, #FFD700, #8B5C18, transparent); }
.timeline-item { position: relative; padding-left: 50px; margin-bottom: 60px; cursor: default; }
.timeline-dot { position: absolute; left: 5px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: #000; border: 2px solid #FFD700; transition: all 0.4s ease; box-shadow: 0 0 10px #FFD700; }
.timeline-item:hover .timeline-dot { background: #FFD700; transform: scale(1.3); box-shadow: 0 0 20px #FFD700; }
.acto-label { display: inline-block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #000; background: #FFD700; font-weight: 900; margin-bottom: 15px; padding: 6px 14px; border-radius: 4px; }
.acto-cita { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-style: italic; color: #fff; margin-bottom: 15px; transition: 0.4s ease; }
.timeline-item:hover .acto-cita { transform: translateX(10px); color: #FFD700; }
.acto-desc { font-size: 1.05rem; line-height: 1.7; color: #9ca3af; }

/* UNIVERSOS */
.seccion-universos { padding: 100px 20px; background: #080404; text-align: center; }
.desc-universos { color: #9ca3af; font-size: 1.1rem; margin-bottom: 50px; line-height: 1.6; max-width: 700px; margin-left: auto; margin-right: auto;}
.resaltado-dorado { color: #FFD700; font-weight: bold; }
.cloud-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; }
.vibe-tag { 
  padding: 15px 30px; border-radius: 50px; border: 1px solid rgba(255, 215, 0, 0.2); 
  background: rgba(0, 0, 0, 0.6); color: #d1d5db; font-size: 1rem; font-weight: 700; 
  text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  box-shadow: 0 5px 15px rgba(0,0,0,0.5); cursor: default;
}
.vibe-tag:hover { transform: translateY(-5px) scale(1.05); border-color: #FFD700; color: #fff; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3), inset 0 0 10px rgba(255,215,0,0.1); }

/* PARTNERS CON ALMA */
.seccion-partners { padding: 120px 20px; background: #0a0505; text-align: center; }
.desc-partners { color: #9ca3af; font-size: 1.1rem; line-height: 1.7; max-width: 700px; margin: 0 auto 40px auto; }
.btn-hollow-gold { 
  display: inline-block; padding: 18px 40px; margin-top: 15px;
  border: 2px solid #FFD700; border-radius: 50px; color: #FFD700; 
  text-transform: uppercase; letter-spacing: 2px; font-weight: 900; font-size: 0.9rem; 
  text-decoration: none; transition: 0.3s; box-shadow: 0 0 15px rgba(255,215,0,0.1); 
}
.btn-hollow-gold:hover { background: rgba(255, 215, 0, 0.1); box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); transform: translateY(-3px) scale(1.02); }

/* FAQ Y CONTACTO PREMIUM */
.seccion-faq { padding: 120px 20px; background-color: #080404; }
.faq-container { max-width: 800px; margin: 0 auto 60px auto; }
.faq-item { background: rgba(0, 0, 0, 0.5); border: 1px solid rgba(255, 215, 0, 0.1); border-radius: 12px; margin-bottom: 15px; transition: 0.3s; overflow: hidden; }
.faq-item:hover { border-color: #FFD700; background: rgba(255, 215, 0, 0.05); box-shadow: 0 5px 15px rgba(255,215,0,0.05); }
.faq-pregunta { padding: 20px; font-size: 1.1rem; font-weight: bold; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-pregunta::-webkit-details-marker { display: none; }
.faq-pregunta::after { content: '+'; font-size: 1.5rem; color: #FFD700; }
.faq-item[open] .faq-pregunta::after { content: '−'; }
.faq-respuesta { padding: 0 20px 20px 20px; color: #9ca3af; line-height: 1.7; margin-top: 10px; padding-top: 20px; }

/* Contacto VIP */
.contacto-dudas { 
  max-width: 700px; margin: 0 auto; padding: 50px; text-align: center;
  background: linear-gradient(145deg, rgba(20,15,10,0.8) 0%, rgba(10,5,5,1) 100%);
  border: 1px solid rgba(255, 215, 0, 0.15); border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.titulo-contacto { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: #fff; margin-bottom: 15px; }
.contacto-dudas p { color: #9ca3af; line-height: 1.6; margin-bottom: 30px; font-size: 1.05rem; }
.btn-contacto { 
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; 
  padding: 15px 35px; margin: 0 auto; border-radius: 50px; 
  background: #FFD700; color: #000 !important; text-transform: uppercase; 
  letter-spacing: 1.5px; font-size: 0.9rem; font-weight: 900; text-decoration: none; 
  transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(255,215,0,0.2); 
}
.btn-contacto:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 30px rgba(255,215,0,0.4); color: #000 !important; }
.nota-contacto { margin-top: 20px !important; font-size: 0.8rem !important; font-style: italic; color: #6b7280 !important; }


/* ==========================================================================
  NUEVA SECCIÓN: MANIFIESTO (BLOQUE LIMPIO)
  ========================================================================== */
.seccion-manifiesto {
  padding: 100px 20px;
  background: #0a0505;
  text-align: center;
}

.manifiesto-contenedor {
  max-width: 1200px; /* AMPLIADO: Ahora el título tiene espacio de sobra para quedarse en 1 sola línea en PC */
  margin: 0 auto;
}

.titulo-manifiesto {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
}

.manifiesto-l1 {
  display: block;
  margin-bottom: 20px; /* AQUÍ ESTÁ EL ESPACIO EXTRA ENTRE LAS DOS FRASES */
}

.manifiesto-l2 {
  display: block;
  line-height: 1.2;
}

.br-movil {
  display: none; /* En PC este salto de línea no existe, así se queda en 1 línea */
}

.juntos-pc {
  white-space: nowrap; /* Esto prohíbe que estas 3 palabras se separen en PC */
}

.texto-manifiesto {
  font-size: 1.4rem;
  color: #d1d5db;
  line-height: 1.8;
  max-width: 850px; /* Mantenemos el párrafo estrecho para que sea fácil y elegante de leer */
  margin: 0 auto;
}

.texto-manifiesto strong {
  color: #FFD700;
  font-weight: 700;
}


/* ==========================================================================
  SECCIÓN: LA MAQUINARIA (DINÁMICAS SECRETAS)
  ========================================================================== */
.seccion-maquinaria {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0505 0%, #080404 100%);
}

.grid-maquinaria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-maquinaria {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.1);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-maquinaria::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
  opacity: 0; transition: 0.6s;
}

.card-maquinaria:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #FFD700;
  background: rgba(255, 215, 0, 0.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 215, 0, 0.1);
}

.card-maquinaria:hover::before { opacity: 1; }

.maq-icon { font-size: 2.5rem; filter: grayscale(1); transition: 0.4s; }
.card-maquinaria:hover .maq-icon { filter: grayscale(0) drop-shadow(0 0 10px #FFD700); transform: scale(1.2) rotate(-5deg); }

.maq-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  font-style: italic;
  margin: 0;
}

.maq-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.maq-desc strong { color: #FFD700; }

/* ==========================================================================
  SECCIÓN: EL PRIVILEGIO PIONERO (EXPLICACIÓN DEL DESCUENTO)
  ========================================================================== */
.seccion-privilegio {
  padding: 80px 20px;
  background: #080404;
}

.caja-privilegio {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(30, 20, 20, 0.8), rgba(10, 0, 0, 1));
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), inset 0 0 30px rgba(255, 215, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Brillo de fondo */
.caja-privilegio::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, #FFD700, #ff0844);
}

.privilegio-header {
  text-align: center;
  margin-bottom: 40px;
}

.privilegio-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-style: italic;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.1;
}

.privilegio-intro {
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.privilegio-intro strong {
  color: #FFD700;
}

.grid-ejemplos-descuento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ejemplo-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(255, 215, 0, 0.2);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
}

.ejemplo-item:hover {
  border-color: #FFD700;
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.03);
}

.ejemplo-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: inline-block;
}

.ejemplo-titulo {
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ejemplo-desc {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.5;
}


/* ==========================================================================
  BOTÓN SUBIR ARRIBA (SCROLL TOP AL FINAL DE FAQS)
  ========================================================================== */
.scroll-top-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.scroll-top-container .btn-gamificado {
  margin: 0 auto !important;
  width: auto !important;
  min-width: 300px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}


/* ==========================================================================
  ANIMACIONES DE ENTRADA EN CASCADA (HERO)
  ========================================================================== */
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 1. El Título (Mantenemos tu pulso de luz intacto) */
.titulo-espectaculo {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards, 
        neonPulseTitle 3s infinite alternate ease-in-out 1s;
}

/* 2. El Subtítulo */
.subtitulo-espectaculo {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

/* 3. La Caja de Precio */
.caja-precio {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s forwards;
}

/* 4. Los Badges de Confianza */
.badges-confianza {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s forwards;
}


/* ==========================================================================
   EFECTO PREMIUM: IMÁGENES DE FONDO EN BOTONES DE GÉNERO
   ========================================================================== */

/* 1. Hacemos el fondo transparente SOLO para los botones de género (sobrescribe el original) */
.gender-pill span,
.gender-pill input:checked ~ span {
    background: transparent !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* 2. CAPA INFERIOR (La Imagen) */
.gender-pill span::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0; /* Oculta por defecto */
    z-index: -2;
    transform: scale(1.15); /* Empieza un poco ampliada */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(100%); /* En blanco y negro por defecto */
}

/* 3. CAPA INTERMEDIA (El filtro oscuro para que se lea el texto) */
.gender-pill span::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); /* Fondo oscuro base */
    z-index: -1;
    transition: all 0.4s ease;
}

/* 4. ASIGNAMOS LAS IMÁGENES SEGÚN EL VALOR DEL INPUT */
.gender-pill input[value="Hombre"] ~ span::before {
    background-image: url('../media/images/bg-hombre.webp');
}
.gender-pill input[value="Mujer"] ~ span::before {
    background-image: url('../media/images/bg-mujer.webp');
}

/* 5. EFECTO HOVER (Pasar el ratón) */
.gender-pill:hover span::before {
    opacity: 1; /* Aparece la imagen */
    transform: scale(1); /* Efecto de alejamiento suave */
}
.gender-pill:hover span::after {
    background: rgba(0,0,0,0.7); /* Oscurecemos un pelín más el filtro para proteger el texto */
}

/* 6. EFECTO CHECKED (Al hacer clic) */
.gender-pill input:checked ~ span::before {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%); /* ¡Recobra todo el color! */
}
.gender-pill input:checked ~ span::after {
    /* Le damos un baño de luz dorada y negra muy elegante */
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(255, 215, 0, 0.25));
}

/* ==========================================================================
   🔥 LA MAGIA: IMÁGENES DE FONDO Y NEÓN EN "ERES..." 🔥
   ========================================================================== */
/* 1. Hacemos el icono mucho más grande para que el botón quede cuadrado */
.gender-icon { font-size: 3rem; transition: all 0.4s ease; }

/* 2. Colores Neón Base */
.icon-mars { color: #00d2ff !important; filter: none !important; }
.icon-venus { color: #ff0844 !important; filter: none !important; }

/* 3. Efecto Glow al pasar ratón o seleccionar */
.gender-pill span:hover .icon-mars, .gender-pill input:checked ~ span .icon-mars { 
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.8)) !important; 
    transform: scale(1.2); 
}
.gender-pill span:hover .icon-venus, .gender-pill input:checked ~ span .icon-venus { 
    filter: drop-shadow(0 0 15px rgba(255, 8, 68, 0.8)) !important; 
    transform: scale(1.2); 
}

/* 4. Fondos Transparentes para ver la imagen */
.gender-pill span, .gender-pill input:checked ~ span { 
    background: transparent !important; 
    overflow: hidden; 
    z-index: 1; 
}

/* 5. Capa de Imagen */
.gender-pill span::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0; z-index: -2;
    transform: scale(1.15); transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); filter: grayscale(100%);
}

/* 6. Capa Oscura (Filtro) */
.gender-pill span::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); z-index: -1; transition: all 0.4s ease;
}

/* 7. Asignar imágenes (Asegúrate de subir bg-hombre.webp y bg-mujer.webp a media/images/) */
.gender-pill input[value="Hombre"] ~ span::before { background-image: url('../media/images/bg-hombre.webp'); }
.gender-pill input[value="Mujer"] ~ span::before { background-image: url('../media/images/bg-mujer.webp'); }

/* 8. Hover y Checked de las imágenes */
.gender-pill:hover span::before { opacity: 1; transform: scale(1); }
.gender-pill:hover span::after { background: rgba(0,0,0,0.7); }

.gender-pill input:checked ~ span::before { opacity: 1; transform: scale(1); filter: grayscale(0%); }
.gender-pill input:checked ~ span::after { background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(255, 215, 0, 0.25)); border: 1px solid #FFD700; }

/* ==========================================================================
  RESPONSIVE DEFINITIVO
  ========================================================================== */
@media (max-width: 1450px) { /* AUMENTADO A 1450px: Rompe mucho antes para proteger el diseño */
  .landing-main-container { grid-template-columns: 1fr; padding-top: 130px; text-align: center; }
  .landing-hero-text { max-width: 800px; margin: 0 auto; padding-right: 0; } 
  .caja-precio, .badges-confianza { justify-content: center; }
   /* Magia de los logos: Centrado perfecto */
  .logo-flotante-form { display: none; }
  
  .logo-hero-movil { 
    display: block; 
    margin: 0 auto 30px auto !important; /* Centrado absoluto */
    width: 320px; 
    max-width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
    /* Le damos su propia animación sin el empuje a la izquierda */
    animation: floatLogoMovil 4s ease-in-out infinite;
  }
  
  /* NUEVA ANIMACIÓN SOLO PARA EL MÓVIL (Añádela justo aquí debajo) */
  @keyframes floatLogoMovil {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .landing-form-container { 
    max-width: 850px; 
    margin: 0 auto; 
    width: 100%; 
    padding: 60px; /* Restauramos el padding original porque ya no hay logo pisando */
  }
   
  /* Adaptación del nuevo subtítulo VIP para pantallas estrechas */
  .subtitulo-espectaculo { 
    border-left: none; 
    border-top: 4px solid #FFD700; 
    border-radius: 20px; 
    padding: 25px; 
  }
}

@media (max-width: 768px) {
  /* SEGURIDAD ANTIDESBORDAMIENTOS MÓVIL (Márgenes y bloqueo de fuga) */
  .landing-main-container { 
    padding-left: 15px; 
    padding-right: 15px; 
    overflow-x: hidden; 
  }

  .form-row-superior, .form-grid-2 { display: flex; flex-direction: column; gap: 15px; }
  .dynamics-stack { display: flex !important; flex-direction: column; }
  .landing-form-container { padding: 30px 20px; border-radius: 20px; }
  
   .logo-hero-movil {
    width: 260px; 
    margin: 0 auto 20px auto !important;
  }
   
  /* Prevención de corte de palabras largas en el Hero */
  .titulo-espectaculo, .titulo-gigante { 
    font-size: 2.5rem; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    hyphens: auto; 
    min-height: 90px; /* NUEVO: Evita el salto (CLS) en móviles */
  }
   
  /* Ajuste de aire en el subtítulo */
  .subtitulo-espectaculo { 
    padding: 20px 15px; 
  }

  .tag-title { font-size: 1.3rem; min-height: auto; }

  /* REDUCCIÓN DE TAMAÑOS DE TITULARES EN MÓVIL */
  .titulo-seccion-italic { font-size: 2rem; } /* Un pelín más pequeño para que respire */
  .experience-title { font-size: 1.8rem; line-height: 1.2; } /* Evita que SecretMatch se vea enorme */
  .experience-title.small-title { font-size: 1.5rem; } /* Para Team Building y Fiestas */

  /* ARREGLO DEL BOTÓN DE CONTACTO EN MÓVIL (1 sola línea) */
  .btn-contacto {
    white-space: nowrap; /* Prohíbe que el texto salte a dos líneas */
    padding: 12px 20px; /* Reducimos un poco el relleno para que quepa bien */
    font-size: 0.85rem; /* Letra un pelín más pequeña */
    width: 100%; /* Que ocupe el ancho disponible de forma elegante */
    max-width: 300px; /* Pero sin pasarse de largo */
  }
   
  /* AÑADIDAS LAS NUEVAS SECCIONES A LA REGLA DE PADDING MÓVIL */
  .seccion-2500, .seccion-formatos-clon, .seccion-medida, .seccion-experiencia, .seccion-faq, .seccion-ambiente, .seccion-universos, .seccion-partners, .seccion-manifiesto, .seccion-maquinaria { padding: 60px 20px; }
   
  /* AÑADIDA LA CUADRÍCULA DE MAQUINARIA PARA QUE SEA 1 COLUMNA */
  .grid-experience, .grid-vibe, .grid-2500, .grid-maquinaria { grid-template-columns: 1fr; }
   
  .vibe-box { height: 350px; }
  .contacto-dudas { padding: 30px 20px; }
   
  /* ESCALADO DEL TEXTO DEL MANIFIESTO EN MÓVIL */
  .titulo-manifiesto { margin-bottom: 20px; }
  .texto-manifiesto { font-size: 1.1rem; }
   
  .br-movil { 
    display: block; /* En móvil activamos el salto para que corte por "para" */
  }
   
  .manifiesto-l1 {
    font-size: 2.2rem; /* Mantenemos el tamaño grande para la primera frase */
  }

  .juntos-pc {
    white-space: normal; /* En móvil le quitamos la rigidez porque el <br> ya hace el corte perfecto */
  }
   
  .manifiesto-l2 {
    font-size: 1.8rem; /* Reducimos un poco la frase dorada para que "El fin de las citas rápidas" quepa en 1 sola línea sin chocar con los bordes */
  }

  /* AJUSTES DEL PRIVILEGIO PIONERO (Movido aquí para limpieza) */
  .caja-privilegio { padding: 30px 20px; }
  .privilegio-titulo { font-size: 2.2rem; }
  .privilegio-intro { font-size: 1rem; }

  /* Ajuste extra de seguridad para la barra de progreso */
  .progreso-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .progreso-info-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .progreso-cifra-destacada { font-size: 1.6rem; }
  .progreso-porcentaje-nuevo { font-size: 2.2rem; align-self: flex-end; margin-top: -45px; }
  .progreso-footer-global { font-size: 0.95rem; text-align: left; }

/* Optimización de imagen Hero para móviles (Carga la versión de 800px en vez de 2000px) */
  .hero-bg-image {
    background-image: url('../media/images/hero-bg.webp');
  }
} /* <--- ESTA LLAVE CIERRA EL BLOQUE DE 768px */

@media (max-width: 480px) {
  .tags-container, .radios-pills { display: flex; flex-direction: column; }
  .target-pill span, .lang-card span, .gender-pill span { width: 100%; padding: 15px !important; }
   
  /* Ajuste de caja de precio para no ahogar en laterales en móviles enanos */
  .caja-precio { 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    text-align: center; 
    padding: 25px 15px;
    min-height: 220px; 
  }
   
  .precio-actual { align-items: center; }
  .precio-actual p { text-align: center; }
  .precio-divisor { display: none; }
  .vibe-tag { width: 100%; text-align: center; }
  .btn-gamificado { font-size: 1rem !important; padding: 20px 10px !important; }

  /* ==========================================================================
    TIPOGRAFÍA FLUIDA (MAGIA PARA CUALQUIER TAMAÑO DE MÓVIL)
    ========================================================================== */
  .titulo-espectaculo { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .titulo-gigante { font-size: clamp(2rem, 9vw, 2.5rem); }
  .titulo-seccion-italic { font-size: clamp(1.5rem, 7vw, 2rem); }
  .experience-title { font-size: clamp(1.4rem, 6.5vw, 1.8rem); line-height: 1.2; }
  .experience-title.small-title { font-size: clamp(1.2rem, 5.5vw, 1.5rem); }
  .privilegio-titulo { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .titulo-contacto { font-size: clamp(1.6rem, 7vw, 2rem); }
  .manifiesto-l1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .manifiesto-l2 { font-size: clamp(1.2rem, 6.5vw, 1.7rem); }

  /* Ajuste de padding interior para dar más espacio a las letras en móviles estrechos */
  .experience-card, .card-maquinaria, .caja-privilegio, .contacto-dudas {
    padding: 30px 20px;
  }
}

/* ==========================================================================
  PROTECCIÓN Y VISIBILIDAD DEL FOOTER EN LA LANDING OSCURA
  ========================================================================== */
footer, .footer, #footer, footer p, footer span, footer div {
  position: relative;
  z-index: 50; /* Nos aseguramos de que esté por encima de cualquier fondo o brillo */
  color: #ffffff !important; /* Forzamos el texto a blanco */
}

footer a, .footer a, #footer a {
  color: #FFD700 !important; /* Forzamos los enlaces a dorado para que se lean bien */
  text-decoration: none;
}

footer a:hover, .footer a:hover, #footer a:hover {
  color: #fff !important;
}