
/* implementar el nav móvi estructura básica del menú deslizable */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px; /* Cambia a left para que el menú se muestre desde la izquierda */
    width: 300px;
    height: 100%;
    /* background: #1a1f2c; */
    background-image: linear-gradient(326deg, rgb(29 34 46 / 0%) -12.39%, rgb(51 57 69 / 30%) 40.31%, rgba(18, 102, 241, 0.4) 86.44%, rgba(44, 187, 255, 0.5) 134.26%);
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 50px 20px 20px 20px;
}

.mobile-nav.active {
    left: 0; /* Cambia a left: 0 para que el menú se muestre */
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* agregar los estilos adicionales para el menú móvil */

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    height: 40px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin: 15px 0;
}

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
}

.mobile-nav-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav-btn {
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.mobile-nav-btn:first-child {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.mobile-nav-btn:last-child {
    background: #3B81F6;
    color: white;
}

@media (max-width: 767px) {
    .navbar-brand img {
        max-width: 100px;
        /* padding: 0 0 0 10px; */
        margin: 0 0 0 ;
    }
}