/* Offcanvas menú móvil minimalista */
.mobile-menu-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(.77, 0, .18, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.mobile-menu-offcanvas.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.mobile-menu-nav {
    flex: 1;
    padding: 2rem 1rem;
}

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

.mobile-menu-list li {
    margin-bottom: 1.2rem;
}

.mobile-menu-list a {
    font-size: 1.2rem;
    color: #165185;
    font-weight: 700;
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.mobile-menu-list a:hover {
    background: #e8fbff;
    color: #00d3ff;
}

@media (min-width: 992px) {
    .mobile-menu-offcanvas {
        display: none !important;
    }

    #openMobileMenu {
        display: none !important;
    }
}