

/* BARRA DO MENU */

.barra.menu {
    position: fixed;
    z-index: 10;
    width: 100%;
    transition: all 0.3s;
    background-color: transparent;
}

.barra.menu.pre-sticky {
}

.barra.menu.pre-sticky.sticky {
    top: 0;
}

.barra.menu .container {
    align-items: center;
    height: 100%;
}


/* BOTÃO NAVEGAÇÃO (CASO HAJA) */

.abre-menu {
    padding: 1.25rem 1.25rem;
    width: 8rem;
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: flex-end;
    cursor: pointer;
    opacity: 1;
    transition: all 0.5s;
    margin: auto 0;
    z-index: 70;
    position: absolute;
    left: 2.5%;
    top: 22.5%;
}

.nav-menu:focus {

}

.abre-menu.desativa {
    opacity: 0;
    pointer-events: none;
}

.abre-menu span {
    display: block;
    height: 3px;
    background-color: var(--corSec);
    width: 100%;
    border-radius:0.5rem;
    transition: all 0.5s;
}

.abre-menu:hover span {
    background-color: var(--corSec);
    box-shadow: 0px 2px 0px #ffffff;
}


/* MENU PRINCIPAL */

.menu-principal, .menu-principal ul {
    display: flex;
    margin: auto;
    width: fit-content;
    height: auto;
    align-items: center;
    justify-content: center;
    background-color: var(--fundoMenu);
    transition: 0.4s;
    z-index: 100;
}

.menu-principal ul {
    background-color: transparent;
}

.menu-principal.aberto {

}

.menu.pre-sticky.sticky .menu-principal {

}

.menu-principal>li, .menu-principal ul>li  {
    height: 100%;
}


.menu-principal a {
    color: var(--linksMenu);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.menu-principal a:hover,
.menu-principal a.ativo,
.menu-principal a.current_menu_item {
    color: var(--linksHoverMenu);
}

.menu-principal li.ativo a,
.menu-principal .sub-menu li.ativo a {
    color: var(--linksHoverMenu);
}

.menu-principal .submenu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    overflow: hidden;
    z-index: 8;
    transition: 0.3s;
}

/* BOTÕES DO MENU */

.menu .botoes-menu {
    display: flex;
    justify-content: space-between;
    height: 5rem;
    padding: 0;
}

.menu .botoes-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu .botoes-menu .botao img {
    border-radius: 100%;
    transition: all 0.1s;
    cursor: pointer;
}

.menu .botoes-menu .botao:hover img {
    filter: sepia(31%) saturate(488%) hue-rotate(67deg) brightness(103%) contrast(104%);
    transform: scale(1.05);
    background-color: #00000033;
}

/* BARRA DE BUSCA */

#busca {
    display: none;
    position: absolute;
    top: 100%;
    z-index: 10;
    width: calc(1255px - 16rem);
}

.menu .busca {
    width: 100%;
    border-radius: 0 0 5px 5px;
    background-color: var(--fundoBusca);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    box-shadow: 5px 5px 10px #00102066;
}

.busca input {
    border-radius: 30px  0 0 30px;
    padding: 2rem;
    font-size: 1.8rem;
    color: #6a7b8d;
    border:solid 1px #a1a5a6;
    border-right: none;
    width: 65%;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.busca input::placeholder {
    color: #6a7b8d;
    text-align: left;
}

.busca input[type='submit'] {
    border-radius: 0 30px 30px 0;
    padding: 2rem;
    font-size: 1.8rem;
    color: var(--txtClaro);
    border:solid 1px #a1a5a6;
    border-left: none;
    width: 10%;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--btBusca);
    cursor: pointer;
    transition: all 0.3s;
}

.busca input[type='submit']:hover {
    opacity: 0.85;
}




/*/////////////////////////////////////////////////////////////////////////////////////////////* --MOBILE ---*/

@media screen and (max-width: 750px) {

    /* BOTÃO MENU MOBILE */

    /*.nav-menu {
        border-radius: 0%;
        padding: 1rem 1rem;
        border: solid 1px #fff;
        width: 100%;
        height: 100%;
        padding: 1.3rem calc(50% - 2.5rem);
        display: flex;
        flex-direction: column;
        justify-content: space-around !important;
        align-items: center;
        cursor: pointer;
        opacity: 1;
        transition: all 0.5s;
        margin: 0 auto;
        background-color: var(--fundoGeral);
        z-index: 70;
        box-shadow: 0px 2px 8px #aaaaaaaa;
    }
    
    .nav-menu.desativa {
    }

    .nav-menu span {
        display: block;
        height: 3px;
        background-color: var(--txtTitulo);
        width: 100%;
        border-radius:0.2rem;
    }*/
    
    /* MENU PRINCIPAL MOBILE */

    .menu .menu-principal {
        /*position: fixed;
        left: 0;
        top: -50rem;
        width: 100vw;
        height: auto;
        z-index: 60;
        flex-direction: column;
        padding: 0rem;
        margin: 0;
        transition: all 0.5s;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: scroll;
        padding-bottom: 5rem;
        background-color: #fffffff7;
        box-shadow: 0px 2px 8px #666666aa;*/
    }

    .menu .menu-principal.aberto {

    }
    
    .menu.pre-sticky.sticky .menu-principal {
        height: auto;
    }

    .menu-principal .bt-fechar-menu {

    }
    
    .menu-principal.aberto .bt-fechar-menu {
  
    }
    
    .menu-principal>li {
/*        width: 100%;
        padding: 0 0rem;
        transition: all 0.3s;
        height: auto;
        z-index: 90;*/
    }

    .menu-principal a {
/*        font-size: 3.1rem;
        border-bottom: solid 2px #f5c74c;
        justify-content: center;
        height: 63px;
        width: 80%;
        margin: auto;*/
    }

    .menu-principal li:last-of-type a {
        border-bottom: none;
    }
    
    .menu-principal li.ativo:after {
/*        content:'';
        position: absolute;
        width: 20px;
        height: 20px;
        left: 80%;
        top: 22px;
        border-radius: 100%;
        background-color: var(--fundoCor100);
        background-image: url(imgs/icon-seta-submenu.png);
        background-size: 12px 8px;
        background-position: center;
        background-repeat: no-repeat;*/
    }

    .menu-principal .sub-menu {
        background-color: var(--fundoSubmenu);    
        position: relative;
        top: 0;
        width: 100%;
        left: 0;
        padding: 0 0.5rem;
        border-bottom: solid 2px var(--linksHoverMenu);
        border-radius: 0;
    }
    
    .menu-principal .sub-menu li a {
        display: flex;
        align-items: center;
    }
    
    /* BARRA DO MENU */
    
    .barra.menu {
        padding: 0rem;
        z-index: 9999999;
        height: 7rem;
        background-color: transparent;
        box-shadow: none;
    }

    .barra.menu .logo-mobile {
        content: "";
        position: absolute;
        top: 7px;
        left: 1rem;
        width: 120px;
        height: 42px;
        z-index: 13;
    }

    .barra.menu.sticky {
        z-index: 9999999;
    }
    
    /* BOTÕES DO MENU */

    .menu .botoes-menu {
        width: 40%;
        height: auto;
        padding: 0;
    }

    .menu .botoes-menu li:nth-of-type(2) {
        border-right: none;
    }

    .menu .botoes-menu li {
        width: 5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* BARRA DE BUSCA */
    
    #busca {
        width: 90vw;
    }
    
    .menu .busca {
        padding: 1.5rem;
        left: 0vw;
    }
    
    .busca input {
        width: 75%;
    }
    
    .busca input[type='submit'] {
        width: 20%;
    }
    
}

/*////////////////////////////////////////////////////////////* TABLETS */

@media screen and (min-width: 751px) and (max-width: 1250px) {

    
    /* MENU PRINCIPAL TABLET */
    
    .menu .menu-principal {
 
    }
    
    .abre-menu span {
        height: 5px;
    }
    
    /* BOTÕES DO MENU */
    
    .menu .botoes-menu {
        width: 25%;
    }

    .menu .botoes-menu li {
        width: 35px;
        height: 35px;
    }

    .menu .botoes-menu li img {
        width: 35px;
        height: 35px;
    }
    
    
    /* BARRA DE BUSCA */
    
    #busca {
        width: 94vw;
    }
    
    .busca input {
        font-size: 2.5rem;
    }
    
    .busca input[type='submit'] {
        font-size: 2.5rem;
    }
    
}

/*/////////////////////////////////////////////////////////////* TELEFONES ANTIGOS */

@media screen and (max-width: 330px) {


}

/*/////////////////////////////////////////////////////////////* FULL HD+ */

@media screen and (min-width: 1600px) {

}
