header{
    width: 100%;
}

.header-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0;

    
}

.header-div-titulo-logo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-div-titulo-logo img{
    width: 100px;
    
}

.header-div-titulo-logo img:hover{
    scale: 1.1;
    opacity: 0.6;
}


.header-container h1{
    text-align: center;
    line-height: 2.5rem;
    
    font-size: 1.8rem;
    color: #180270;
    font-weight: 700;
   
}

.header-nav{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.header-ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    display: none;
}




.header-ul-lado{
    display: none;
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: -16px;
    right: 0;
    padding: 0;
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: rgba(253,222,241,0.5);
    backdrop-filter: blur(10px);
    
}

.header-li {
    list-style: none;
    padding: 0;
    text-align: center;
    line-height: 22px;
    text-transform: uppercase;

}

.header-li:hover{
    scale: 1.1;
    opacity: 0.6;
}




.header-li a{
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.header-link-0{
    color: #180270;
}


.header-link-1{
    color: #4ACE0C;
}

.header-link-2{
    color: #E70E5C;
}

.header-link-3{
    color: #68C4F7;
}

.header-link-4{
    color: #FFBD14;
}
.header-link-5{
    color: #780EFF;
}


.fa-solid{
    font-size: 1.8rem;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    
    #abrir{
        text-align: center;
        display: none;
    }

    .header-ul{
        display: flex;
        gap: .6rem
    }
}