header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.navbar {
    background-color: var(--cor-terciaria);
    padding: 20px;
}

.botao_menu {
    display: none;
}

.nav__itens {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_cabecalho {
    height: 72px;
}

.nav__lista, .nav__lista_footer {
    display: flex;
    gap: 40px;
    list-style: none;
}

a {
    text-decoration: none;
    font-family: var(--fonte-principal);
    font-size: 24px;
    color: var(--cor-principal);
}

/* Versão para Tablet */

@media (max-width: 1200px) and (min-width: 768px) {

    .logo_cabecalho {
        height: 50px;
    }

    .nav__lista {
        display: flex;
        gap: 20px;
        list-style: none;
    }

}

@media (max-width: 768px) {

    .navbar {
        padding: 10px 0;
    }

    .navbar .linha-divisao {
        bottom: -10px;
    }

    .logo_cabecalho {
        height: 60px;
    }

    .nav__lista {
        display: none;

    }

    .nav__itens {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .botao_menu {
        display: flex;
        background-color: transparent;
        border: none;
        align-items: left;
    }

}