/* ==========================================================================
   1. IMPORTACIONES Y VARIABLES GLOBALES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Great+Vibes&family=Kotta+Uno&family=Lato:wght@400;700&family=Montserrat:wght@500;700;800&family=Playfair+Display:wght@700&display=swap');

:root {
  --color-acento: #FFD700;      
  --color-titulos: #ffffff;    
  --color-textos: #f0f0f0;   
  --color-textos2: #383737;  

  --fuente-parrafos: 'Lato', sans-serif;
  --fuente-titulos: 'Playfair Display', serif;
  --fuente-cursiva: 'Great Vibes', cursive;
  --fuente-especial: 'Kotta Uno', serif;
  --fuente-moderna: 'Montserrat', sans-serif; 
  --fuente-slogan: 'Playfair Display', serif; 
}

/* ==========================================================================
   2. CONFIGURACIÓN BASE Y CUERPO
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body {
  background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
  background-attachment: fixed;
  background-size: cover;
  font-family: var(--fuente-parrafos); 
  color: var(--color-textos);
  line-height: 1.6; 
  overflow-x: hidden; 
  padding: 0; 
  margin: 0;
}

section {
  background: transparent !important; 
}

/* ==========================================================================
   3. TIPOGRAFÍA GLOBAL
   ========================================================================== */
h1, h2, h3 {
  font-family: var(--fuente-titulos);
  color: var(--color-titulos);
  text-align: center;
}

h2 { font-size: 2.5rem; text-transform: uppercase; margin-bottom: 30px; }
p { color: var(--color-textos); text-align: center; margin-bottom: 20px; }
.texto-pro { color: var(--color-acento); }

/* ==========================================================================
   4. LA REGLA MAESTRA (Secciones a Pantalla Completa sin Bordes)
   ========================================================================== */
.contenedor-centrado, 
.contenedor-faq, 
.grupo-caracteristicas, 
.seccion-cta {
  width: 100%;
  max-width: 100%; 
  margin: 0 0 50px 0; 
  border-radius: 0; 
  padding: 60px 8%; 
  position: relative; 
  
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(15px);          
  -webkit-backdrop-filter: blur(15px);
  border: none; 
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

.tarjeta, .card-caracteristica, .item-faq {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(5px);
}

/* ==========================================================================
   5. SECCIÓN: PORTADA (HERO - PANTALLA DIVIDIDA)
   ========================================================================== */
.logo-svg { /* Cambia ".logo" por la clase exacta que tenga tu imagen */
  width: 100%;       /* Ocupa el espacio disponible... */
  max-width: 250px;  /* ...¡Pero nunca midas más de 250px! (Ajusta este número) */
  height: auto;      /* Mantiene la proporción para no deformarlo */
  display: block; 
}
#inicio {
  width: 100%;
  margin: 0;
  padding: 0;
}

.contenido-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Empuja un grupo arriba y otro abajo */
  
  width: 100vw; 
  min-height: 100vh; 
  margin: 0; 
  padding: 40px 20px 20px 20px; 
  border: none; 
  border-radius: 0; 
  
  /* Tu fondo oscuro con el degradado */
  background-image: url('../img/portada.webp');
 /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%), url('../img/portada.webp');*/
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero-superior, .hero-inferior {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.slogan { 
  font-family: var(--fuente-slogan); 
  font-size: 3rem; 
  font-weight: 700; 
  text-transform: none; 
  margin-top: 0; 
  margin-bottom: 40px; 
  opacity: 0; 
  animation: subirAparecer 1s ease-out 0.4s forwards; 
  
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.8));
}

.textos-bienvenida h3 { 
  font-size: 1.15rem; /* Lo hacemos un pelín más grande */
  font-weight: 600; /* Hace la letra más gruesa (negrita sutil) */
  color: #ffffff; /* Aseguramos que sea blanco puro */
  
  margin-bottom: 10px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  opacity: 0; 
  animation: subirAparecer 1s ease-out 0.6s forwards; 
  color: var(--color-acento); 
}

.descripcion-hero { 
  font-size: 1.1rem; 
  max-width: 600px; 
  margin: 0 auto 10px auto; 
  opacity: 0; 
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.9);
  animation: subirAparecer 1s ease-out 0.8s forwards; 
}

.botones-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row; 
  gap: 10px; 
  width: 100%;
  opacity: 0; 
  animation: subirAparecer 1s ease-out 1s forwards; 
}

.indicador-scroll {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0; 
  animation: subirAparecer 1s ease-out 1.2s forwards, flotar 2s infinite ease-in-out 1.5s; 
}

.texto-scroll {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6); 
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 5px;
}

.flecha-animada {
  width: 30px;
  height: 30px;
  color: var(--color-acento, #FFD700); 
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #050505; /* Fondo súper oscuro */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* Por encima de todo, incluso del menú */
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 215, 0, 0.1); /* Anillo transparente */
  border-top-color: var(--color-acento); /* Anillo dorado que gira */
  border-radius: 50%;
  animation: girarLoader 1s linear infinite;
}

@keyframes girarLoader {
  to { transform: rotate(360deg); }
}

/* Esta clase la agregará el JavaScript cuando la página termine de cargar */
.ocultar-loader {
  opacity: 0;
  visibility: hidden;
}
/* ==========================================================================
   5.5. SECCIÓN: PERSUASIÓN (STORYTELLING)
   ========================================================================== */
#descubre {
  padding-bottom: 80px; 
}

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

/* --- Títulos y Párrafos --- */
.titulo-persuasion {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: none; 
}

.parrafo-persuasion {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #cccccc;
  line-height: 1.8;
}

/* --- Cajas de Comparación (El Problema vs La Solución) --- */
.grid-comparacion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.caja-mala, .caja-buena {
  padding: 35px 30px;
  border-radius: 15px;
  text-align: left;
  transition: transform 0.3s ease;
}

.caja-mala:hover, .caja-buena:hover {
  transform: translateY(-5px);
}

/* Caja de "Lo Antiguo" (Toque rojizo sutil) */
.caja-mala {
  background: rgba(255, 50, 50, 0.03);
  border: 1px solid rgba(255, 50, 50, 0.15);
}

.caja-mala h3 { 
  color: #ff6b6b; 
  font-size: 1.4rem; 
  margin-bottom: 20px; 
  text-align: left; 
}

/* Caja de "Lo Nuevo" (Toque dorado premium) */
.caja-buena {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.05);
}

.caja-buena h3 { 
  color: var(--color-acento); 
  font-size: 1.4rem; 
  margin-bottom: 20px; 
  text-align: left; 
}

/* Listas dentro de las cajas */
.lista-comparacion { 
  list-style: none; 
  padding: 0; 
}

.lista-comparacion li { 
  margin-bottom: 15px; 
  font-size: 1.05rem; 
  color: #e0e0e0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

/* Íconos automáticos para las listas (X para lo malo, Check para lo bueno) */
.caja-mala .lista-comparacion li::before { 
  content: '✖'; 
  color: #ff6b6b; 
  font-weight: bold; 
  font-size: 1.2rem;
}

.caja-buena .lista-comparacion li::before { 
  content: '✔'; 
  color: var(--color-acento); 
  font-weight: bold; 
  font-size: 1.2rem;
}

/* --- Banner Visual en el Centro --- */
.contenedor-banner-persuasion {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px auto; 
  border-radius: 20px;
  overflow: hidden; 
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  background: #000; 
}

.banner-persuasion-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; 
  transition: transform 0.3s ease;
}

.contenedor-banner-persuasion:hover .banner-persuasion-img {
  transform: scale(1.02);
}

/* --- Beneficios (Iconos de la parte inferior) --- */
.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.item-beneficio {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 15px;
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
  
  /* Centramos todo el contenido de la tarjeta */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item-beneficio:hover {
  transform: translateY(-5px);
  border: 1px solid var(--color-acento);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

/* El nuevo círculo perfecto para el ícono */
.icono-beneficio {
  font-size: 2.2rem; /* Tamaño del emoji ajustado para que quepa bien */
  width: 80px;       /* Ancho del círculo */
  height: 80px;      /* Alto del círculo */
  margin-bottom: 20px;
  
  /* Diseño de la medalla dorada */
  background: rgba(255, 215, 0, 0.08); /* Fondo dorado casi transparente */
  border: 2px solid var(--color-acento); /* Borde dorado */
  border-radius: 50%; /* Esto lo hace redondo */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
  
  /* LA MAGIA: Obliga al emoji a estar en el centro exacto */
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: transform 0.3s ease;
}

/* Un pequeño rebote en el ícono cuando pasas el mouse por la tarjeta */
.item-beneficio:hover .icono-beneficio {
  transform: scale(1.1) rotate(5deg);
}

.item-beneficio h3 {
  font-size: 1.3rem;
  color: var(--color-titulos);
  margin-bottom: 15px;
}

.item-beneficio p {
  font-size: 0.95rem;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.6;
}

/* --- Botones --- */
.botones-persuasion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   6. BOTONES (GLOBALES Y DEL HERO)
   ========================================================================== */
.btn-principal {
  background: linear-gradient(145deg, #FCEABB, #F8B500); 
  color: #111111; 
  padding: 12px 30px;
  border-radius: 50px; 
  font-family: var(--fuente-moderna); 
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid #FFD700; 
  box-shadow: 0 4px 20px rgba(248, 181, 0, 0.4);
  
  /* 👇 AGREGA ESTAS DOS LÍNEAS 👇 */
  text-align: center; 
  white-space: nowrap; /* Obliga a que el texto se quede en una sola línea */
}

.btn-principal:hover { 
  transform: scale(1.05); 
  background: linear-gradient(145deg, #fff2cd, #ffc926); 
  box-shadow: 0 6px 25px rgba(248, 181, 0, 0.6);
}

.btn-secundario {
  background-color: rgba(255, 255, 255, 0.05); 
  color: #ffffff; 
  border: 1px solid #ffffff; 
  padding: 15px 40px; 
  border-radius: 50px;
  font-family: var(--fuente-moderna); 
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px); 
}

.btn-secundario:hover { 
  background-color: #ffffff; 
  color: #111111; 
  transform: scale(1.05); 
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.boton-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px; 
  padding: 18px 45px; 
  animation: latido 2s infinite;
}

.boton-whatsapp:hover .icono-wa-principal { transform: scale(1.1) rotate(-5deg); transition: transform 0.3s ease; }
.icono-wa-principal { width: 32px; height: 32px; display: block; }

/* ==========================================================================
   7. SECCIÓN: DEMOS Y PORTAFOLIO
   ========================================================================== */
.grid-tarjetas { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }

.tarjeta { 
  position: relative; 
  border-radius: 15px; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.tarjeta:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); }

/* Fondos Demos */
.bg-boda { background-image: url('../img/boda.webp'); }
.bg-15anos { background-image: url('../img/15anos.webp'); }
.bg-mayores { background-image: url('../img/mayores.webp'); }
.bg-infantil { background-image: url('../img/coorporativo.webp'); }
.bg-espectaculos { background-image: url('../img/espectaculos.webp'); }

.imagen-tarjeta {
  height: 380px; 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  position: relative; 
  overflow: hidden; 
  transition: transform 0.4s ease;
}

.imagen-tarjeta::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
  opacity: 0; transition: opacity 0.4s ease, background-color 0.4s ease; z-index: 1; 
}

.tarjeta:hover .imagen-tarjeta::before { opacity: 1; }
.tarjeta-boda .imagen-tarjeta::before { background-color: rgba(255, 215, 0, 0.25); }
.tarjeta-15anos .imagen-tarjeta::before { background-color: rgba(255, 20, 147, 0.3); }
.tarjeta-mayores .imagen-tarjeta::before { background-color: rgba(0, 0, 0, 0.6); }
.tarjeta-infantil .imagen-tarjeta::before { background-color: rgba(0, 191, 255, 0.3); }

.contenido-tarjeta {
  width: 100%;
  padding: 40px 20px 30px 20px;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  position: relative; z-index: 2; 
}

.contenido-tarjeta h3 { margin-bottom: 10px; font-size: 2rem; color: var(--color-acento); }
.contenido-tarjeta p { font-size: 0.95rem; margin-bottom: 25px; color: #ffffff; }

.cierre-demos { text-align: center; margin-top: 60px; width: 100%; }
.frase-motivadora { font-size: 1.2rem; color: var(--color-acento); } 

/* ==========================================================================
   8. SECCIÓN: CARACTERÍSTICAS
   ========================================================================== */
.titulo-grupo { font-size: 2rem; text-align: center; color: var(--color-titulos); margin-bottom: 30px; }

.icono-svg { width: 64px; height: 64px; display: inline-block; transition: transform 0.3s ease, stroke 0.3s ease; vertical-align: middle; }
.link-red-social:hover .icono-svg { transform: scale(1.2); stroke: var(--color-acento); }

.grid-compacta { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }

.item-compacto {
  display: flex; align-items: center; 
  background: rgba(255, 255, 255, 0.05); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px; padding: 15px 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.item-compacto:hover {
  background: rgba(255, 255, 255, 0.08); transform: translateX(5px); 
  border-left: 3px solid var(--color-acento);
}

.icono-compacto { display: flex; align-items: center; justify-content: center; min-width: 70px; margin-right: 15px; }
.texto-compacto { text-align: left; }
.texto-compacto h4 { font-family: var(--fuente-moderna); font-size: 1.1rem; color: var(--color-acento); margin-bottom: 5px; text-align: left; }
.texto-compacto p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.4; text-align: left; color: #e0e0e0; }

/* ==========================================================================
   9. SECCIÓN: PRECIOS Y BONOS
   ========================================================================== */
.grid-pasos { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }

.tarjeta-paso { background: rgba(255, 255, 255, 0.03); padding: 30px 20px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.05); transition: transform 0.3s ease; }
.tarjeta-paso:hover { transform: translateY(-5px); }

.numero-paso {
  width: 50px; height: 50px; background-color: var(--color-acento); color: #1a1a1a;
  font-size: 1.5rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px auto; font-family: var(--fuente-moderna); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.tarjeta-paso h4 { color: var(--color-titulos); font-size: 1.2rem; margin-bottom: 10px; }
.tarjeta-paso p { font-size: 0.95rem; margin-bottom: 0; color: #d0d0d0; }

.grid-precios { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 800px; margin: 0 auto; }

.tarjeta-precio {
  background: rgba(0, 0, 0, 0.4); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.39);
  text-align: left; position: relative; transition: transform 0.3s ease;
}

.precio-destacado { background: rgba(255, 215, 0, 0.05); border: 2px solid var(--color-acento); transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.etiqueta-recomendado { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: var(--color-acento); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; font-family: var(--fuente-moderna); text-transform: uppercase; }

.tarjeta-precio h3 { text-align: left; font-size: 1.5rem; margin-bottom: 15px; }
.precio-monto { font-size: 3rem; font-weight: 800; font-family: var(--fuente-moderna); color: var(--color-titulos); margin-bottom: 5px; }
.precio-desc { font-size: 0.9rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 20px; margin-bottom: 20px; text-align: left; }

.lista-precio { list-style: none; padding: 0; margin: 0; }
.lista-precio li { font-size: 0.95rem; margin-bottom: 12px; color: #e0e0e0; display: flex; align-items: flex-start; }

/* Bono Pro */
.caja-bono {
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.8));
  border: 2px dashed var(--color-acento); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.badge-regalo { background-color: #ff4d4d; color: white; padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 0.85rem; display: inline-block; margin-bottom: 15px; animation: pulso 2s infinite; }
.titulo-bono { color: var(--color-acento); font-size: 2rem; margin-bottom: 10px; border: none !important; }
.subtitulo-bono { color: #ccc; margin-bottom: 30px; }

.grid-bonos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.item-bono { background: rgba(255, 255, 255, 0.05); padding: 20px; border-radius: 15px; display: flex; align-items: center; gap: 20px; text-align: left; }
.icono-bono { font-size: 2.5rem; }
.item-bono h3 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; }
.item-bono p { font-size: 0.9rem; color: #aaa; margin: 0; }
.pie-bono { margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* ==========================================================================
   10. SECCIÓN: SOCIOS B2B
   ========================================================================== */
.caja-socios { border: 2px solid rgba(255, 215, 0, 0.3); background: rgba(0, 0, 0, 0.4); text-align: center; padding: 60px 20px; }
.contenedor-etiqueta { margin-bottom: 15px; }
.etiqueta-oportunidad { background-color: var(--color-acento); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; font-family: var(--fuente-moderna); }
.titulo-socios { border-bottom: none; margin-bottom: 20px; color: var(--color-titulos); }
.descripcion-socios { font-size: 1.15rem; max-width: 800px; margin: 0 auto 40px auto; color: #e0e0e0; }

.boton-partner { display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 15px 35px; text-decoration: none; transition: all 0.3s ease; }
.icono-wa-btn { width: 32px; height: 32px; display: block; }
.boton-partner:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2); }

/* ==========================================================================
   11. SECCIÓN: PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */
.acordeon-faq { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
.item-faq { border-radius: 10px; overflow: hidden; }
.item-faq summary { padding: 20px; font-family: var(--fuente-parrafos); font-size: 1.1rem; font-weight: 700; color: var(--color-titulos); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.3s ease; }
.item-faq summary:hover { background-color: rgba(255,255,255,0.1); }
.item-faq summary::after { content: '+'; font-size: 1.5rem; color: var(--color-acento); font-weight: normal; transition: transform 0.3s ease; }
.item-faq[open] summary::after { transform: rotate(45deg); }
.respuesta-faq { padding: 0 20px 20px 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.respuesta-faq p { margin-top: 15px; margin-bottom: 0; font-size: 1rem; text-align: left; }

/* ==========================================================================
   12. FOOTER (PIE DE PÁGINA)
   ========================================================================== */
.footer-sitio { background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); color: #a0a0a0; padding: 60px 20px 20px 20px; margin-top: 60px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.contenedor-footer { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }

.info-footer p { text-align: left; margin-bottom: 0; color: #d0d0d0; }
.columna-footer h4 { color: var(--color-titulos); margin-bottom: 20px; font-family: var(--fuente-moderna); text-align: left; }
.lista-footer { list-style: none; padding: 0; margin: 0; }
.lista-footer li { margin-bottom: 12px; text-align: left; }
.lista-footer a { color: #a0a0a0; text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.lista-footer a:hover { color: var(--color-acento); }

.redes-sociales { margin-top: 20px; display: flex; gap: 15px; }
.redes-sociales a { font-size: 1.5rem; text-decoration: none; transition: transform 0.3s ease; filter: grayscale(100%); }
.redes-sociales a:hover { transform: scale(1.2); filter: grayscale(0%); }

.icono-contacto { width: 20px !important; height: 20px !important; margin-right: 8px; vertical-align: middle; display: inline-block; margin-top: -3px; }
.lista-footer a:hover .icono-contacto { transform: scale(1.1); transition: transform 0.2s ease; }

.copyright { text-align: center; padding-top: 20px; }
.copyright p { font-size: 0.9rem; margin-top: 0; margin-bottom: 0; width: 100%; color: #888; }

/* ==========================================================================
   13. COMPONENTES FLOTANTES Y MODALES
   ========================================================================== */
.wa-flotante-pro { 
  position: fixed; 
  bottom: 25px; 
  right: 25px; 
  display: flex; 
  align-items: center; 
  text-decoration: none; 
  z-index: 9999; 
  background: transparent; 
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-flotante-pro.mostrar-wa {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); 
}

.icono-wa-pro { width: 55px; height: 55px; display: block; object-fit: contain; filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3)); position: relative; z-index: 2; animation: wa-atraccion 2.5s infinite ease-in-out; }
.texto-hover-wa { background-color: #25D366; color: white; font-family: var(--fuente-moderna); font-weight: 700; font-size: 0.9rem; padding: 10px 20px; padding-right: 35px; border-radius: 30px; margin-right: -30px; white-space: nowrap; opacity: 0; transform: translateX(20px); visibility: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); }

.wa-flotante-pro:hover .texto-hover-wa { opacity: 1; transform: translateX(0); visibility: visible; }
.wa-flotante-pro:hover .icono-wa-pro { animation: none; transform: scale(1.1) rotate(-5deg); transition: transform 0.3s ease; }

.modal-oculto { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); backdrop-filter: blur(5px); align-items: center; justify-content: center; animation: fadeInModal 0.3s ease; }
.modal-visible { display: flex; }
.modal-contenido { background-color: var(--color-blanco); padding: 40px 30px; border-radius: 20px; text-align: center; max-width: 400px; width: 90%; position: relative; margin-bottom: 100px; box-shadow: 0 15px 40px rgba(0,0,0,0.3); animation: slideUpModal 0.4s ease forwards; }
.cerrar-modal { position: absolute; top: 15px; right: 20px; font-size: 1.8rem; color: #999; cursor: pointer; transition: color 0.3s; line-height: 1; }
.cerrar-modal:hover { color: var(--color-dorado); }
#input-nombre-modal { width: 100%; padding: 15px 20px; border: 1px solid #ddd; border-radius: 30px; font-family: var(--fuente-cuerpo); font-size: 1rem; text-align: center; margin-bottom: 20px; outline: none; transition: all 0.3s ease; }
#input-nombre-modal:focus { border-color: var(--color-dorado); box-shadow: 0 0 10px rgba(196, 166, 122, 0.2); }

/* ==========================================================================
   14. ANIMACIONES GLOBALES
   ========================================================================== */
@keyframes subirAparecer { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes rebotar { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes flotar { 0% { transform: translateY(0); } 50% { transform: translateY(10px); } 100% { transform: translateY(0); } }
@keyframes latido { 0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); } 50% { transform: scale(1.05); box-shadow: 0 4px 25px rgba(255, 215, 0, 0.6); } 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); } }
@keyframes wa-atraccion { 0%, 100% { transform: scale(1) rotate(0deg); } 10%, 20% { transform: scale(1) rotate(-5deg); } 30%, 50%, 70% { transform: scale(1.05) rotate(5deg); } 40%, 60% { transform: scale(1.05) rotate(-5deg); } 80% { transform: scale(1) rotate(5deg); } }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUpModal { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

#confetis rect { opacity: 0; animation-timing-function: linear; animation-iteration-count: infinite; transform-box: fill-box; transform-origin: center; will-change: transform, opacity; }
#confetis rect:nth-child(4n+1) { animation-name: caer-izquierda; animation-duration: 8s; animation-delay: -1s; }
#confetis rect:nth-child(4n+2) { animation-name: caer-derecha; animation-duration: 5s; animation-delay: -3.5s; }
#confetis rect:nth-child(4n+3) { animation-name: caer-izquierda; animation-duration: 6.5s; animation-delay: -2s; }
#confetis rect:nth-child(4n) { animation-name: caer-derecha; animation-duration: 10s; animation-delay: -5s; }
#confetis rect:nth-child(odd) { scale: 0.8; }
@keyframes caer-izquierda { 0% { transform: translate(0, -200px) rotateZ(0deg); opacity: 0; } 15% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translate(-150px, 1200px) rotateZ(-720deg); opacity: 0; } }
@keyframes caer-derecha { 0% { transform: translate(0, -200px) rotateZ(0deg); opacity: 0; } 15% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translate(150px, 1200px) rotateZ(720deg); opacity: 0; } }

/* ==========================================================================
   15. RESPONSIVE (MÓVILES)
   ========================================================================== */
@media (max-width: 768px) {
  /* Contenedores Principales en Celular */
  .contenedor-centrado, 
  .contenedor-faq, 
  .grupo-caracteristicas, 
  .seccion-cta {
    width: 100%; 
    margin: 0 0 30px 0; 
    padding: 40px 5%; 
  }

  /* Textos y Portada */
  h2 { font-size: 2rem; }
  p { font-size: 1rem; }
  .logo-svg { max-width: 120px; margin-bottom:15px; }
  .logo-texto { font-size: 2rem; }
  .slogan { font-size: 1.25rem; margin-bottom: 30px; } 
  .textos-bienvenida h3 { font-size: 1rem; }
  .titulo-grupo { font-size: 1.5rem; display: block; }
  
  .botones-hero .btn-principal, 
  .botones-hero .btn-secundario { 
    width: auto; 
    max-width: none; 
    min-width: 0; 
    padding: 2px 2px !important; 
    font-size: 0.85rem; 
  }

  /* Persuasión en Celular */
  .titulo-persuasion { font-size: 1.8rem; }
  .parrafo-persuasion { font-size: 1rem; padding: 0 10px; }
  .contenedor-banner-persuasion { margin: 0 auto 40px auto; border-radius: 10px; }
  .botones-persuasion { flex-direction: column; gap: 15px; }
  .botones-persuasion .btn-principal, .botones-persuasion .btn-secundario { width: 100%; max-width: 280px; }
  
  /* Footer */
  .contenedor-footer { flex-direction: column; text-align: center; align-items: center; gap: 30px; }
  .info-footer p, .columna-footer h4, .lista-footer li { text-align: center; }
  .redes-sociales { justify-content: center; }
  
  /* Botón WhatsApp Minimalista */
  .icono-wa-pro { width: 50px; height: 50px; }
  .texto-hover-wa { font-size: 0.8rem; padding: 8px 15px; padding-right: 30px; }
  
  /* Bonos y Precios */
  .grid-bonos { grid-template-columns: 1fr; }
  .item-bono { flex-direction: column; text-align: center; }
  .titulo-bono { font-size: 1.5rem; }
  .precio-destacado { transform: scale(1); } 
}
/* ==========================================================================
   ESTILOS PARA LA SECCIÓN EXCLUSIVA DEL ÁLBUM QR
   ========================================================================== */

/* El botoncito pequeño en la tarjeta */
.btn-enlace-pequeno {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-acento);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed var(--color-acento);
  transition: all 0.3s ease;
}
.btn-enlace-pequeno:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* La Sección de Lujo */
.seccion-destacada-qr {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Un resplandor dorado de fondo para darle elegancia */
.seccion-destacada-qr::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.grid-album-qr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.etiqueta-estrella {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-acento);
  padding: 5px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.titulo-qr {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.parrafo-qr {
  text-align: left;
  font-size: 1.15rem;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.7;
}

.lista-ventajas-qr {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.lista-ventajas-qr li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icono-lista-qr {
  font-size: 1.8rem;
  margin-right: 15px;
  margin-top: -5px;
}

.lista-ventajas-qr strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-family: var(--fuente-moderna);
}

.lista-ventajas-qr span {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
}

.img-fluida-qr {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  transition: transform 0.5s ease;
}

.img-fluida-qr:hover {
  transform: translateY(-10px);
}

/* ==========================================================================
   Ajuste en la Sección 15 para MÓVILES
   ========================================================================== */
@media (max-width: 768px) {
  .grid-album-qr {
    grid-template-columns: 1fr; /* Pone el texto arriba y la imagen abajo */
    gap: 40px;
    text-align: center;
  }
  .titulo-qr { font-size: 2.2rem; text-align: center; }
  .parrafo-qr { text-align: center; }
  .lista-ventajas-qr li { flex-direction: column; align-items: center; text-align: center; }
  .icono-lista-qr { margin-right: 0; margin-bottom: 10px; }
}