header{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: transparent;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
}

header > nav{
    width: 40%;
}

.header-list-icons{
    display: none;
}

.header-list{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    
}

.header-list li:hover{
    border-bottom: 1px solid var(--color--vermelho--rosa);
    padding: 8px 10px;
}

.header-item a{
    text-decoration: none;
    color: var(--color--branco);
}

.header-item a:hover{
    color: var(--color--vermelho--rosa);
}



@media(max-width: 600px){
    header{
        height: 3%;
        width: 100vw;
        padding: 2px;
        justify-content: center;
        align-items: center;
    } 

    header > nav{
        width: 100%;
    }
    
    .header-list-icons{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        list-style: none;
        width: 100%;
    }

    .header-list-icons > li > a > i{
        color: white;
    }

    .header-list{
        display: none;
    }

}