/*-----header-----*/

#menu {
    top: 0;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80px;
    padding: 0;
    background-color: #fff;
}

#menu .row {
    height: 90px;
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
}

#menu i:hover,
#menu a:hover {
    color: var(--AzulClaro);
}



/*LOGO PRINIPAL MAIOR*/

.img-logo-normal {
    padding: 12px;
    height: 80px;
    transition: 0.5s;
}

/*LOGO PRINIPAL MENOR*/
.img-logo-mini {
    height: 80px;
    display: none;
    transition: 0.5s;
}


/*CONFIGURAÇÕES DA NAVBAR---------------------------------*/
#navbar ul {

    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 32px;
}

#navbar ul li {
    display: inline-block;
}

#navbar li a {
    padding-bottom: 6px;
    font-family: "Titulos" ;
}



#navbar ul li a {
    color: var(--PretoEscuro);
    text-decoration: none;
    font-size: 1.2em;
    position: relative;
    text-transform: uppercase;
    position: relative;
}

#navbar ul li a::after {
    content: " ";
    width: 0%;
    height: 4px;
    background-color: var(--AzulEscuro);
    position: absolute;
    bottom: 0;
    left: 0;
    bottom: 0;
    transition: 0.3s ease-in-out;
}

#navbar a:hover::after {
    width: 100%;
}

/* "x" fechar menu mobile*/
#icone2 {
    color: var(--AzulClaro);
    font-size: 30px;
    font-weight: 400;
    text-align: end;
    display: flex;
    justify-content: end;
    padding: 12px;
}


#social {
    display: flex;
    justify-content: end;
    gap: 18px;
}

#social i {
    color: var(--marking3);
    font-size: 18px;
    font-weight: 400;
}

/*MENU MOBILE*/
#menu-mobile {
    background-color: rgb(24, 24, 28);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    visibility: hidden;
    transition: 0.5s;
    overflow: hidden;
    z-index: 100;
}

#menu-mobile nav a {
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
    display: block;
    padding: 20px 30px;
    text-transform: uppercase;
}

#menu-mobile nav a:hover {
    color: var(--AzulClaro);
}

#menu-mobile ul {
    padding: 0;
    list-style-type: none;
}

.hamburguer {
    display: flex;
    justify-content: end;
    display: none;
    color: white;
    font-size: 26px;
}

.abrir {
    display: block;
    width: 100%;
}

#menu .row.black {
    background-color: rgb(24, 24, 28);
}

@media (max-width: 992px) {


    .hamburguer {
        display: flex;
        text-align: end;
        color: var(--AzulClaro);
    }

    .img-logo-normal {
        padding: 0 ;
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .img-logo-mini {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
    }

    .headiline {
        width: 80%;
        height: 60vh;
    }

    .titulo {
        font-size: 35px;
        width: 100%;
    }

    #navbar {
        display: none;
    }

    #social {
        display: none;
    }

    #menu-mobile.abrir {
        visibility: visible;
        height: 100vh;
    }

    .sec-banner {
        justify-content: end;
    }

}