#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000; /* elegante */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}


.loader-logo {
    width: 140px;
    animation: revealLogo 1.5s ease forwards;
}

@keyframes revealLogo {
    0% {
        clip-path: inset(0 100% 0 0);
    }
    100% {
        clip-path: inset(0 0 0 0);
    }
}






/* .navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
} 

.navbar-nav {
    margin: 0 auto; 
}

.logo-right img {
    height: 70px;
    width: auto;
}*/


#header {
    position: relative;
}

/* Logo derecho */
.logo-right {
    position: absolute;
    right: 15px;
    top: 45%;
    transform: translateY(-50%);
}

.logo-right img {
    height: 65px;
    width: auto;
}

/* Ajuste para que el menú no choque con el logo derecho */
.navbar-nav {
    margin-right: 150px;
}
