/* Fondo vino oscuro */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(31, 1, 1); /* vino oscuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

/* Logo respirando */
#preloader .logo {
    width: 150px;
    animation: pulse 1s ease-in-out infinite; /* respiraciones más rápidas */
}

/* Animación "respirar" */
@keyframes pulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.85); opacity: 0.7; }
}
