/* MENU MOBILE SIMPLES */

/* Desktop - menu normal */
@media (min-width: 769px) {
    #menuBtn {
        display: none !important;
    }
    
    #menuMobile {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

/* Mobile - botão e menu overlay */
@media (max-width: 768px) {
    /* Esconder menu desktop */
    .nav-menu {
        display: none !important;
    }
    
    .nav-contact-link {
        display: none !important;
    }
    
    /* Botão MENU */
    #menuBtn {
        display: block !important;
        background: #FF9500;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 700;
        font-size: 14px;
        cursor: pointer;
        z-index: 10001;
    }
    
    /* Menu Mobile Overlay */
    #menuMobile {
        display: none; /* Inicia fechado */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        z-index: 10000;
        padding: 100px 30px;
        overflow-y: auto;
    }
    
    #menuMobile a {
        display: block;
        color: white;
        font-size: 1.8rem;
        padding: 15px 0;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    #menuMobile a:hover {
        color: #FF9500;
    }
}
