/* =========================================
   ESTDENT: VIBE BLUE UI (MINIMALIST TECH)
   Estilo: Clean UI, Monocromático Azul, Sombras Profundas
   Versión: 5.0 (Estilo Corporate Apple/Google)
   ========================================= */

/* -----------------------------------------
   1. SCROLLBAR ESTILO APP CORPORATIVA
   ----------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    /* Elimina el recuadro gris o azul por defecto al tocar botones en móviles */
    -webkit-tap-highlight-color: transparent;
}

/* Scrollbar minimalista e integrada al diseño */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8fafc; /* Gris ultra claro del fondo */
}
::-webkit-scrollbar-thumb {
    background: #bfdbfe; /* Azul claro sutil */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; /* Azul brillante al pasar el mouse */
}

/* -----------------------------------------
   2. SELECCIÓN DE TEXTO (Premium Blue)
   ----------------------------------------- */
/* Cambia el color cuando el usuario sombrea/selecciona texto */
::selection {
    background: #bfdbfe; /* Fondo azul claro */
    color: #1e3a8a;      /* Texto azul muy oscuro */
}

/* -----------------------------------------
   3. RESET DE PREGUNTAS FRECUENTES (ACCORDION)
   ----------------------------------------- */
/* Oculta la flecha negra por defecto que traen los navegadores */
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* -----------------------------------------
   4. ANIMACIÓN BOTÓN FLOTANTE (PULSO AZUL)
   ----------------------------------------- */
/* Efecto de latido continuo pero en azul para no romper la estética */
@keyframes pulse-btn-blue {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.whatsapp-float {
    animation: pulse-btn-blue 2.5s infinite;
}

/* -----------------------------------------
   5. AJUSTE DE VIDEO DE FONDO
   ----------------------------------------- */
/* Asegura que el video cinematográfico nunca se deforme */
video {
    object-fit: cover;
}