/*
Componentes e configuracoes globais
----------------------------*/
@import url(./base.css);

/*----------------------------
Css para os campos required
----------------------------*/
.border-complete{
    border: 1px solid #ccc !important;
}
.border-error{
    border: 1px solid red !important;
}

/*----------------------------
Css setas fontawesome
----------------------------*/
.setas-fa{
    color: var(--cinza-paragrafo);
}

.produtos-hidden{
    display: none;
}

.ico-white{
    color: white;
}

.ico-3em{
    font-size: 3em;
}

/*----------------------------
Header Topo
----------------------------*/
.flutuantes {
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 4%;
    top: 30%;
    z-index: 10;
}

.flutuante {
    margin-top: 2rem;
    transition: 0.4s;
}

.flutuante.whats:hover,
.flutuante.email:hover,
.flutuante.telefone:hover {
    transform: scale(1.1);
}

.topo-menu {
    background: #485d88;
    color: #fff;
    font-size: 1.8rem;
    line-height: 6rem;
}

.topo-menu a {
    color: #fff;
}

.topo-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.atendimento-links {
    display: flex;
    align-items: center;
}

.icone-topo {
    margin-right: 2rem;
    /* max-width: 100%; */
}

.topo-menu .atendimento {
    border-right: 0.1rem solid #384e78;
    max-width: 38%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.topo-menu .atendimento .atendimento-separador {
    font-size: 1rem;
    margin: 0 1rem;
}

.topo-menu .atendimento-whatsapp {
    border-right: 0.1rem solid #384e78;
    max-width: 37%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.topo-menu .sociais-topo {
    border-right: 0.1rem solid #384e78;
    max-width: 8%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.sociais-topo a:last-child {
    margin-right: 0;
}

.login-topo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 15px;
    width: 50%;
}

.login-topo .botao {
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 13px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-topo .login-dropdown {
    display: none;
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 0;
    right: 0;
}

.login-dropdown--wrapper {
    display: flex;
    flex-direction: column;
}

.login-topo--botao {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.login-dropdown-seta,
.login-dropdown-menu {
    margin-left: 10px;
    transition: .3s;
}

.login-dropdown-seta.ativa {
    transform: rotate(180deg);
}

/*----------------------------
Header Menu Principal
----------------------------*/
.menu-principal {
    height: 13rem;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
}

.menu-logo {
    margin-right: 2rem;
    max-width: 100%;
}

.menu-logo-img {
    width: 100%;
    min-width: 15rem;
}

.menu-home {
    border-left: 1px solid #384e78;
    border-right: 1px solid #384e78;
    padding: 4.9rem 3rem;
}

.menu-principal ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.menu-principal ul li {
    margin: 0 3rem;
    font-size: 2rem;
}

.menu-principal ul li:first-child {
    margin: 0;
}

.menu-principal ul li:last-child {
    border-right: 1px solid #384e78;
    padding: 4.9rem 3rem 4.9rem 0;
}

.menu-principal ul li a {
    color: #4c6092;
}

.menu-principal ul li a:hover,
.menu-principal ul li a.ativo {
    border-bottom: 5px solid #25385b;
    padding-bottom: 5px;
}

.menu-busca {
    height: 4.6rem;
    width: 30rem;
    display: flex;
    position: relative;
}

.menu-busca > input {
    width: 93%;
    height: 100%;
    padding: 0 2.5rem;
    border: none;
    border-top-left-radius: 2.5rem;
    border-bottom-left-radius: 2.5rem;
    outline: none;
    color: #485d88;
    font-size: 2rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.menu-busca > input::placeholder {
    color: var(--azul-menu);
    font-size: 1.9rem;
    font-weight: 300;
}

.menu-busca > button {
    height: 100%;
    width: 50px;
    border-radius: 50%;
    position: absolute;
    right: 0;
    border: none;
    background-color: #485d88;
    cursor: pointer;
    outline: none;
    padding: 16px
}

#menu-mobile.ativo {
    left: 0!important;
}

#checkbox-menu{
    position: absolute;
    display: none;
}

.mobile-barras {
    cursor: pointer;
    position: relative;
    height: 22px;
    width: 30px;
    display: none;
}

.mobile-barras span {
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    border-radius: 30px;
    background: #485d88;
    transition: 0.25s ease-in-out;
}
  
.mobile-barras span:nth-child(1){
    top: 0;
}
  
.mobile-barras span:nth-child(2){
    top: 8px;
}
  
.mobile-barras span:nth-child(3){
    top: 16px;
}
  
#checkbox-menu:checked + .mobile-barras span:nth-child(1){
    transform: rotate(-45deg);
    top: 8px;
}
  
#checkbox-menu:checked + .mobile-barras span:nth-child(2){
    opacity: 0;
}
  
#checkbox-menu:checked + .mobile-barras span:nth-child(3){
    transform: rotate(45deg);
    top:8px;
}

/*----------------------------
Footer
----------------------------*/
footer {
    height: 29rem;
    background-color: #f6f6f6;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-caixas {
    display: flex;
    justify-content: space-between;
}

.footer-titulo {
    color: #485d88;
    font-size: 1.7rem;
    font-weight: 300;
    padding-bottom: 2rem;
}

.footer-titulo:nth-child(3) {
    margin-top: 2rem;
    padding-bottom: 0;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    font-size: 1.3rem;
    color: #616884;
}

.footer-logo {
    max-width: 25%;
}

.footer-logo-img {
    margin-bottom: 2rem;
}

.footer-logo-descricao {
    color: #4f568a;
    font-size: 1.5rem;
}

.footer-sociais {
    display: flex;
    margin-top: 5rem;
}

.footer-sociais li {
    margin-right: 2rem;
}

.footer-sociais li a {
    font-size: 1.6rem;
}
/*----------------------------
modal
----------------------------*/
.modal{
    display: none;
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    top: 50%;
    transform: translateY(-50%);
    position: relative;
    width: 700px;
  }

.modal.active{
    display: block;
}
.modal .fale-conosco-form{
    width: 100%!important;
}
.modal__close{
    color: #485D88;
    border: none;
    font-size: 20px;
    padding: 10px 14px;
    border-radius: 30px;
    float: right;
    cursor: pointer;
}

/*----------------------------
pesquisa_mod
----------------------------*/
.form-pesquisa{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-pesquisa{
    width: 60%;
    height: 50px;
    margin: 20px;
}
.button-pesquisa{
    width: 150px !important;
    height: 50px;
}

/*----------------------------
Responsivo
----------------------------*/
@media screen and (min-width: 1024px) {
    .login-topo--botao {
        display: none;
    }

    .login-topo .login-dropdown {
        display: block;
        position: static;
    }
    
    .login-dropdown--wrapper {
        display: flex;
        flex-direction: row;
    }

    .login-topo {
        display: block;
        margin-left: 15px;
    }

    .login-topo .botao {
        margin-bottom: 0;
        margin-left: 10px;
        width: 100%;
        height: 35px;
    }
}

@media screen and (max-width: 1248px) {
    html {
        font-size: 60%;
    }

    .menu-principal ul li {
        font-size: 1.7rem;
    }
}

@media screen and (max-width: 1110px) {
    .topo-menu span {
        font-size: 1.3rem;
    }

    .topo-menu .atendimento {
        max-width: 33%;
    }

    .topo-menu .atendimento-whatsapp {
        max-width: 36%;
    }

    .topo-menu .sociais-topo {
        max-width: 9%;
        padding-left: 15px;
    }

    .menu-busca > button {
        width: 35px;
    }
}

@media screen and (max-width: 922px) {
    .topo-menu .atendimento {
        max-width: 36%;
    }

    .topo-menu .sociais-topo {
        max-width: 11%;
        padding-left: 15px;
    }
}

@media screen and (max-width: 877px) {
    .topo-flex {
        justify-content: space-around;
    }

    .topo-menu span {
        display: none;
    }

    .topo-menu .atendimento,
    .topo-menu .atendimento-whatsapp,
    .topo-menu .sociais-topo,
    .topo-menu .login-topo {
        max-width: 25%;
    }

    .menu-principal ul {
        position: fixed;
        left: -200%;
    }

    #menu-mobile.ativo {
        left: 0!important;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--azul);
        z-index: 10;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-out;
    }

    .menu-principal ul li {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .menu-principal ul li a {
        color: var(--branco);
    }

    .menu-home {
        all: unset;
        filter: brightness(100);
    }

    .menu-principal ul li:last-child {
        border-right: unset;
        padding: 0;
    }

    .mobile-barras {
        display: block;
    }

    .mobile-barras.ativo {
        position: fixed;
        right: 15%;
        z-index: 10;
    }

    .menu-principal ul li a:hover,
    .menu-principal ul li a.ativo {
        padding-bottom: 1rem;
    }
 
    .mobile-barras.ativo span{
        background: var(--branco);
        z-index: 10;
    }
 
}

@media screen and (max-width: 700px) {
    .flutuantes {
        top: 53%;
    }

    .flutuante img {
        height: 40px;
        width: auto;
        margin-top: -1.5rem;
    }

    .sociais-topo {
        display: flex;
        justify-content: space-evenly!important;
    }

    .icone-topo {
        margin-right: unset;
        height: 2rem;
    }

    .topo-menu {
        height: 4rem;
        background: var(--azul);
        line-height: unset;
        display: flex;
        align-items: center;
    }

    .topo-flex.baixo {
        flex-wrap: wrap;
    }

    footer {
        height: 100%;
        padding: 3rem 0;
    }

    .footer-caixas {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .footer-logo {
        max-width: 100%;
        padding-bottom: 2rem;
    }
    
    /* .footer-atendimento, */
    .footer-endereco {
        margin-top: 3rem;
        width: 100%;
    }
}

@media screen and (max-width: 615px) {
    .flutuantes {
        top: 74%;
    }

    .flutuante img {
        height: 40px;
        width: auto;
        margin-top: -1.5rem;
    }

    .topo-menu {
        height: 4rem;
        background: var(--azul);
        line-height: unset;
        display: flex;
        align-items: center;
    }

    .topo-flex.baixo {
        flex-wrap: wrap;
    }

    .topo-menu .login-topo {
        width: 100%;
    }

    .login-topo .botao {
        padding: unset;
        margin-bottom: 10px;
        font-size: 13px;
        height: 50px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-principal {
        height: auto;
        align-items: center;
        padding: 1.5rem 0;
    }

    .menu-logo {
        margin-right: unset;
        margin-bottom: 1.5rem;
    }

    .menu-busca {
        height: 3.6rem;
        max-width: 24rem;
    }

    footer {
        height: 100%;
        padding: 3rem 0;
    }

    .footer-caixas {
        /* flex-direction: column; */
        flex-wrap: wrap;
    }

    .footer-logo {
        max-width: 100%;
        padding-bottom: 2rem;
    }
    
    /* .footer-atendimento, */
    .footer-endereco {
        margin-top: 3rem;
    }
}