/* Oculta o botão hambúrguer em telas grandes */
.hamburger {
    display: none;
    font-size: 30px;
    color: #ffcc00;
    cursor: pointer;
    z-index: 15;
}

/* Menu padrão (desktop) */
#nav-links {
    display: flex;
    gap: 20px;
    z-index: 15;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
    /* Mostra o botão hambúrguer */
    .hamburger {
        display: block;
        z-index: 15;
    }

    /* Esconde o menu inicialmente */
    #nav-links {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 100px;  /* logo abaixo do header */
        right: 0;
        width: 200px;
        padding: 20px;
        z-index: 15;
        border-left: 2px solid #ffcc00;
        border-bottom: 2px solid #ffcc00;
    }

    #nav-links a {
        margin: 10px 0;
        display: block;
        z-index: 15;
    }

    /* Quando ativado */
    #nav-links.show {
        display: flex;
        z-index: 15;
    }
}
