/* ==========================================================================
   ======================= PANTALLA DE CARGA (PRELOADER) ====================
   ========================================================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Si tu logo tiene fondo transparente, se verá sobre este blanco */
    z-index: 99999; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Controla el tamaño de tu logo animado WebP */
.custom-logo-loader {
    width: 300px; /* Sube o baja este número para cambiar el tamaño */
    height: auto;
}

/* Clase para ocultarlo */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}