@media (max-width:768px) {
    header label {
        display: block;
    }
    /* PARA EFEITO DO MENU DESLOCANDO Á ESQUERDA 
    .menu {
        position: absolute;
        background-color: rgb(86, 134, 191);;
        width: 70%;
        margin-left: -70%;
        transition: all 0.5s;
    } */
    /* PARA EFEITO DO MENU DESLOCANDO DE CIMA */
    .menu {
        position: absolute;
        background-color: rgba(0, 0, 0, 0.856);
        width: 100%;
        margin-top: -100%;
        transition: all 0.5s;
    }
    .menu ul {
        flex-direction: column;
        padding: 0;
    }
    .menu li {
        border-top: 1px solid #ffffff;
    }
    #btn_menu:checked~.menu {
        margin: 0;
    }
}

/* 
##############
CLASSES GERAIS
##############
*/