.navbar-mobile {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: none !important;
    background-color: transparent;
    z-index: 19;
}

.navbar-mobile > .nav-container {
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 19;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 90px;
    transition: right 0.3s ease-in-out;
    background: var(--primary);
    /* Importante: desactivar blur en el menú lateral */
    backdrop-filter: none; 
    -webkit-backdrop-filter: none;
}

.navbar-mobile .nav-container .nav{
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.navbar-mobile .nav-container .nav a{
    color: var(--white);
    font-size: 20px
}

.navbar-mobile .nav-container .logo-cliente{
    gap: 70px;
}

.navbar-mobile .nav-container .btn-logout > img{
    width: 35px;
    height: auto;
}

.navbar-mobile .nav-container .logo-cliente > img{
    width: 100px;
    height: auto;
}

/** Estilos del botón hamburguesa **/
.menu-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease-in-out;
    z-index: 1000;
}

.menu-toggle.active{
    background-color: transparent;
}

.bar {
    display: block;
    width: 35px;
    height: 4px;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    background-color: var(--dark);
    position: absolute;
    left: 13px;
    border-radius: 19px;
}

.bar:nth-child(1) {
    top: 13px;
}

.bar:nth-child(2) {
    top: 20px;
}

.bar:nth-child(3) {
    top: 27px;
}

.menu-toggle {
    display: flex;
    z-index: 20;
}

.navbar-mobile > .nav-container.active {
    right: 0;
    z-index: 19;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


@media (min-width: 1240px) {

    .navbar-mobile{
        display: none;
    }
   
}