/* css/mobile-menu.css */
/* Ocultos totalmente en Desktop por defecto */
#mobileNavBar,
#mobileMenuOverlay {
    display: none !important;
}

/* Sólo se muestra en móviles */
@media (max-width: 768px) {
    #mobileNavBar {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #0a1628;
        z-index: 99999;
        border-bottom: 1px solid #1a3a5c;
        padding: 15px 20px;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-nav-logo {
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-logo i {
        color: #00FF41;
    }

    .mobile-menu-btn {
        background: none;
        border: none;
        color: #00FF41;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
    }

    #mobileMenuOverlay {
        display: block !important;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #0a1628;
        z-index: 99998;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease-in-out;
        border-bottom: 0px solid #00FF41;
    }

    #mobileMenuOverlay.active {
        max-height: 600px;
        border-bottom: 2px solid #00FF41;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .mobile-menu-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu-links li {
        border-bottom: 1px solid #1a3a5c;
    }

    .mobile-menu-links a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a:active {
        color: #00FF41;
        background: rgba(0, 255, 65, 0.05);
    }

    .header {
        display: none !important;
    }

    body {
        padding-top: 60px !important;
    }

    /* Solución Problema 2 - Ocultar los cursores custom en móvil para prevenir cuadrados verdes */
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}
