/* Estilizando o fundo escuro do menu */
#menu-father {
    z-index: 998;
    position: fixed;
    top: 0;
    left: 100vw; /* Menu inicialmente escondido */
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: left 0.5s ease-in-out;
}

/* Caixa do menu */
#menu-box {
    height: 100vh;
    width: 25vw;
    background-color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding-top: 20px;
}

/* Botão de /FEchar */
#menu-close {
    width: 100%;
    height: 10vh;
    display: flex;
    overflow-y: hidden;
    align-items: center;
    justify-content: flex-end;
    padding-right: 3.5vw;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
}

#menu-close:hover {
    color: red;
}

/* Linhas do menu */
.menu-line {
    height: 10vh;
    width: 100%;
    display: flex;
    overflow-y: hidden;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

/* E/FEito hover nos itens do menu */
.menu-line:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

/* Tornando o menu responsivo */
@media (max-width: 1150px) {
    #menu-box {
        width: 70vw;
    }
}

/* Classe para abrir o menu */
.menu-open {
    left: 0 !important;
}
