@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* ----- RESET BÁSICO Y ESTILOS GLOBALES ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #EAEAEA;
    line-height: 1.6;
    min-height: 100vh;
    position: relative; /* Mantener para el contexto de z-index */
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 700;
    color: #FFFFFF;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.8rem; }
a { text-decoration: none; color: #C7007D; }
p { margin-bottom: 20px; }

/* ----- ELEMENTOS ESPECIALES ----- */

/* Estilo para el Fondo Animado */
#animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

/* Estilos del Modal de Edad */
body.modal-open { overflow: hidden; }
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); display: none; justify-content: center; align-items: center; z-index: 1000; }
.modal-content { background-color: white; padding: 40px; border-radius: 8px; text-align: center; width: 90%; max-width: 500px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); color: #333; }
.modal-content h2 { font-family: 'Georgia', 'Times New Roman', serif; font-size: 2.5rem; margin-top: 0; margin-bottom: 15px; color: #333; }
.modal-content p { font-family: 'Arial', sans-serif; font-size: 1rem; color: #666; line-height: 1.5; margin-bottom: 30px; }
.modal-buttons { display: flex; flex-direction: column; gap: 15px; }
.modal-buttons button { padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 0.9rem; font-weight: bold; cursor: pointer; transition: transform 0.2s ease; }
.modal-buttons button:hover { transform: scale(1.03); }
#confirm-age-btn { background-color: #C7007D; color: white; border: none; }
#deny-age-btn { background-color: #f0f0f0; color: #333; }

/* ----- EFECTO DE HALO DE LUZ INTERACTIVO ----- */
body::before {
    content: '';
    position: fixed;
    left: var(--mouse-x);
    top: var(--mouse-y);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: none;
    z-index: -1;
    pointer-events: none;
    isolation: isolate;
    
    background: radial-gradient(circle, rgba(255, 50, 150, 0.3) 0%, rgba(255, 50, 150, 0) 60%);
}

/* NUEVO: Estilos para la Barra de Progreso de Scroll */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background-color: #C7007D;
    z-index: 999;
    transition: width 0.1s ease-out;
}

/* --- Estilos para Métodos de Pago (BORDES NEÓN) --- */

/* Animación para el borde neón blanco (para la mayoría de logos) */
@keyframes neonBorderPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

/* Animación para el borde neón magenta (especial para Nequi) */
@keyframes nequiNeonBorderPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  }
}

.payment-methods {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.payment-methods h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #EAEAEA;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Estilo general para todos los logos */
.payment-icons img {
    height: 80px;
    filter: grayscale(40%);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px; /* Pequeño espacio para que el borde no se pegue al logo */
    /* El filtro drop-shadow crea el borde blanco que se adapta a la forma */
    filter: drop-shadow(0 0 1px white);
    animation: neonBorderPulse 2.5s infinite ease-in-out;
}

.payment-icons img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    /* Al pasar el mouse, el borde se vuelve más nítido */
    filter: drop-shadow(0 0 3px white);
    animation-play-state: paused; /* Pausamos la animación para dar control al usuario */
}

/* Estilo especial para el logo de Nequi (que es blanco) */
.payment-icons .nequi-logo {
    /* Borde magenta para que resalte sobre el fondo blanco del logo */
    filter: drop-shadow(0 0 3px white);
    animation: nequiNeonBorderPulse 2.5s infinite ease-in-out;
}

.payment-icons .nequi-logo:hover {
    filter: drop-shadow(0 0 3px white);
}

/* Estilo especial para el borde y tamaño del logo de Bancolombia */
.bancolombia-logo {
    height: 80px !important; /* Forzamos la altura */
    width: auto; /* Hacemos que el ancho se ajuste a la nueva altura */
}

/* --- Estilos para Nota de Verificación (MEJORADO) --- */
.verification-notice {
    background-color: rgba(255, 223, 186, 0.1);
    border-left: 5px solid #FFD700;
    padding: 20px 25px; /* Más espacio interior */
    margin: 40px 0; /* Aumentamos un poco el margen exterior */
    border-radius: 8px;
}

.verification-notice p {
    margin: 0;
    font-size: 1.05rem; /* Texto ligeramente más grande */
    line-height: 1.7;   /* Más espacio entre líneas si el texto ocupa varias */
    color: #EAEAEA;
}

.verification-notice strong {
    color: #FFD700;
}

/* --- Estilos para Preguntas Frecuentes (FAQ) --- */
#faq-section {
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-size: 1.2rem;
    color: #EAEAEA;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #C7007D;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #b0b0b0;
    padding: 0 15px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: #C7007D;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/*
============================================================
ESTILOS PARA BOTÓN FLOTANTE (VERSIÓN FINAL CORREGIDA)
============================================================
*/

/* --- CONTROL DEL CUADRO AMARILLO --- */
.floating-chat-button {
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 1000;

    /* Ajusta el tamaño del CUADRO aquí */
    width: 90px;
    height: 80px;

    background-color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    
    /* No tocar (esto centra la imagen) */
    display: flex;
    justify-content: center;
    align-items: center;
    
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* --- CONTROL DE LA IMAGEN --- */
.floating-chat-button img {
    /* --- TAMAÑO DE LA IMAGEN (INDEPENDIENTE) --- */
    /* Usamos píxeles (px) en lugar de % para que no dependa del cuadro */
    width: 150px; /* <-- CAMBIA ESTE NÚMERO PARA EL TAMAÑO DE LA IMAGEN */
    height: 150px;

    /* Para que el flexbox no la encoja (¡muy importante!) */
    flex-shrink: 0; 
    
    /* --- POSICIÓN VERTICAL DE LA IMAGEN --- */
    transform: translateY(-35px); /* <-- NÚMERO NEGATIVO para SUBIR, POSITIVO para BAJAR */
    
    object-fit: contain;
    transition: transform 0.3s ease;
}


/* --- CONTROL DEL ZOOM --- */
.floating-chat-button:hover img {
    /* ESTA LÍNEA HACE QUE EL ZOOM CREZCA HACIA ARRIBA */
    transform-origin: bottom center ;
    /* La clave: repetimos el 'translateY' para que no salte y añadimos el 'scale' */
    transform: translateY(-33px) scale(1.6); /* <-- AJUSTA EL 'scale()' PARA MÁS O MENOS ZOOM */
}

/* --- EFECTO EN EL CUADRO AMARILLO AL PASAR EL MOUSE --- */
.floating-chat-button:hover {
    /* Esto sube el CUADRO AMARILLO para acompañar el zoom */
    transform: translateY(-34px); /* <-- AJUSTA ESTE NÚMERO PARA SUBIR MÁS O MENOS */
    
}

/*
============================================================
ESTILOS PARA CELULAR Y TABLET (VERSIÓN CORREGIDA)
============================================================
*/

@media (max-width: 768px) {
  /* Todo lo que pongas aquí adentro SOLO se aplicará en pantallas pequeñas */
  
  .floating-chat-button {
    /* Movemos el botón más a la derecha en celulares */
    right: 20px;
    bottom: 20px;
    
    /* Lo hacemos un poco más pequeño en celular */
    width: 75px;
    height: 75px;

    transition: transform 0.3s ease-out;
  }

  .floating-chat-button img {
    /* Hacemos la imagen un poco más pequeña también */
    width: 110px;

    /* --- ¡AQUÍ ESTÁ LA CORRECCIÓN! --- */
    /* Le damos una nueva posición vertical para el tamaño de celular */
    transform: translateY(-17px); /* <-- AJUSTA ESTE NÚMERO PARA SUBIR O BAJAR LA IMAGEN */
  }

 .floating-chat-button:hover {
        transform: translateY(-17px); /* <-- AJUSTA ESTE VALOR PARA SUBIR EL CUADRO */
        box-shadow: 0 6px 12px rgba(0,0,0,0.2); /* Un box-shadow más sutil para móvil */
 }

  /* También es importante ajustar el hover para que no 'salte' */
  .floating-chat-button:hover img {
      /* Mantenemos la nueva posición y aplicamos el zoom */
      transform: translateY(-6px) scale(1.6); /* <-- USA EL MISMO NÚMERO DE ARRIBA */
  }
}

