.header{
    display: flex;
    justify-content: center;
    background-color: black;
    padding: .5rem;
    width: 100%;
    height: 10vh;
}
.header_img{
    width: 70px;
    height: 70px;
    
}
.header_nav{
    display: none;
}
@media screen and ( min-width:1024px) { 
    .header{
     display: flex;
     justify-content: space-between;
    }
    .header_nav{
        display: flex;
    }
    .header_list{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    .header_list-item{
        color: var(--cor-primaria);
        font-size: 1rem;
    }
}
