

button{
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    transition: all 300ms ease-in-out; }

.nav-brand{
    color: var(--white-color);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    z-index: 1; }

.nav-menu{
    background-color: #4F7FF2;
    z-index: 1; }

.nav-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: left; }

.nav-overlay{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 100%; */
    background-color: #4F7FF2;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out; }

#menu-show-btn {
    padding-top: 13px;
    padding-right: 0; }

/* show overlay js */
.show-overlay{
    opacity: 1;
    visibility: visible; }

.nav-overlay-container{
    background-color: #4F7FF2;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative; }

#menu-hide-btn{
    position: absolute;
    right: -20px;
    top: -1px;
    width: 40px;
    height: 40px;
    line-height: 40px; }

.nav-links li{
    margin: 16px 0;
    position: relative; }

.nav-links li::before, .nav-links li::after{
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--pink-color);
    opacity: 0;
    transition: all 300ms ease-in-out; }

.nav-links li::before{
    top: 0;
    left: 0;
}
.nav-links li::after{
    bottom: 0;
    right: 0; }

.nav-links li:hover::before, .nav-links li:hover::after{
    width: 75%;
    opacity: 1; }
.nav-links li a{
    text-transform: uppercase;
    font-size: 40px;
    letter-spacing: 6px;
    font-weight: 700;
    transition: all 300ms ease-in-out; }

.nav-links li:hover a{
    color: var(--pink-color); }

.nav-icons{
    display: flex;
    align-items: center;
    margin-top: 20px; }

.nav-icons li{
    border: 1px solid var(--grey-color);
    width: 35px;
    height: 35px;
    margin: 0 5px;
    line-height: 35px;
    border-radius: 50%;
    transition: all 300ms ease-in-out;
}
.listagem-mobile{
    padding: 0;
    font-size: 25px;
    text-align: left;
}
.listagem-mobile a{
    color: #fff;
    text-decoration: none;
}
@media(max-width: 992px){
    .nav-links li a{
        font-size: 22px;
    }
    .nav-overlay{
        padding: 40px 25px;
        /* height: 100%; */
        min-height: 100vh; }

    .nav-brand img {
        max-width: 90%; }

}