/* Estilo del preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

/* Animación del spinner con colores rotativos */
.spinner {
    width: 100px;
    height: 100px;
    border: 10px solid #cccccc; /* Color del borde de fondo */
    border-top-color: #0094b2; /* Color inicial del borde superior */
    border-radius: 50%;
    animation: spin 0.8s linear infinite, colorChange 2.4s ease-in-out infinite;
}

/* Animación de rotación */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animación de cambio de color en el orden previsto */
@keyframes colorChange {
    0% { border-top-color: #0094b2; }
    33% { border-top-color: #29c3ec; }
    66% { border-top-color: #49c0b6; }
    100% { border-top-color: #0094b2; }
}