header{
    background-color: var(--cor-preto-padrao);
    display: grid;
}
.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--cor-preto-padrao);
    height: 10vh;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 91%;
    justify-self: center;
}
.container-nav{
    display: flex;
    gap: 30px;
    list-style: none;
    font-size: 20px;
    color: var(--cor-cinza-claro);
    align-items: center;
}
.container-nav a:hover {
    font-weight: 700;
}
.container-login{
    display: flex;
    gap: 20px;
    align-items: center;
}
.logo-nav{
    color: white;
    font-size: 30px;
    text-decoration: none;
}
.bold{
    font-weight: 800;
}
.li-entrar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.linha {
    background-color: #fff;
    height: 30px;
    width: 0.5px;
    margin-right: 0.5rem;
    border: none;
}
.icone-user {
    height: 22px;
    width: auto;
}