header{
    padding: 60px 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-bottom: 2px solid white; 
    width: 100%;
    background-color: rgb(0, 0, 0);
}
#titleHeader{
    background-color: none;
    font-size: 1.3rem;
    text-decoration: none;
    color: white;
}
#btnHamb{
    height: 23px;
    width: 33px;
    background: none;
    border: none;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}
.lineHamb{
    height: 18%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border: 1.5px solid rgb(0, 255, 0);
    display: block;
    border-radius: 3px;
}
#navHeader{
    display: flex;
}
#navUlHeader{
    display: flex;
    align-items: center;
    list-style-type: none;
    width: 100%;
    font-size: 1.3rem;
}
.login a, .deslogar a{
    background-color: white;
    color: black;
    padding: 3.2px 25px;
    border-radius: 4px;
    transition: background-color 0.9s ease;
}
.login a:hover{
    background-color: rgb(0, 255, 17);
    color: black
}
.navLiHeader{
    border-right: 1px solid white;
    padding: 0 20px;
    text-align: center;
}
.navLiHeader:first-child{
    border-left: 1px solid white;
    padding: 0 20px;
}
.navLi_AHeader{
    text-decoration: none;
    color: white;
    transition: color 0.5s ease;
}
.navLi_AHeader:hover{
    color: rgb(0, 255, 4);
}
.navResponsiva{
    display: none;
}

@media(max-width: 1230px){
    header{
        padding: 0 50px;
        position: fixed;
        z-index: 1000;
    }
    #titleHeader{
        background-color: none;
        font-size: 1.2rem;
    }
    #btnHamb{
        display: flex;
    }   
    #navHeader{
        display: none;
    }
    #navUlHeaderResponsive{
        display: flex;
        align-items: center;
        list-style-type: none;
        width: 100%;
        font-size: 1.4rem;
        flex-direction: column;
        background-color: rgb(0, 0, 0);
        padding: 13px 0;
    }
    .navLiHeaderResponsive{
        border-right: 1px solid rgb(0, 255, 4);
        border-left: 1px solid rgb(0, 255, 4);
        width: 200px;
        padding: 0 30px;
        text-align: center;
        margin: 10px 0;
    }
    .navResponsiva{
        display: flex;
        position: fixed;
        top: 100px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 1s ease, opacity 0.9s ease; 
        border-bottom: 3px solid white;
        z-index: 1000;
    }
    .navResponsivaActive{
        max-height: 500px;
        opacity: 1;
    }
    #paddingHeader{
        padding-top: 100px;
    }
}



@media(max-width: 400px){
    #titleHeader{
        background-color: none;
        font-size: 0.9rem;
    }
    #btnHamb{
        height: 20px;
        width: 30px;
    }
}




