/* Loader */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader.active {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    visibility: visible;
    opacity: 1;
}

.loader.active .loader__content {
    display: block;
}

.loader__content {
    border: 7px solid #ffffff; /* Light grey */
    border-top: 7px solid #d35151; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.3s ease-in-out infinite;
    display: none;
}

/*------------------------
LGPD
------------------------*/
/* Deixa desabilitado por padrão */
.js_enabled .lgpd-cookies {
    display: none;
  }
  
  .lgpd-cookies {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: 85vw;
    border: none;
    border-radius: 0;
    padding: 15px;
    position: fixed;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: 2px 1px 20px #00000029;
    border-radius: 10px;
  }
  
  .lgpd-texto {
    width: 72%;
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
    color: #fff;
  }
  
  .lgpd-link {
    color: var(--clr-primary);
  }
  
  .lgpd-link:hover {
    color: var(--clr-primary);
  }
  
  .lgpd-botao {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    color: #ffffff;
  }
  
  .lgpd-botao.continuar {
    border: 1px solid var(--clr-primary);
    border-radius: 8px;
    padding: 10px 15px;
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .lgpd-botao.continuar:hover {
    color: #ffffff;
    background: var(--clr-primary);
  }
  
  .lgpd-botao.sair:hover {
    text-decoration: underline;
  }

  /* FORM FEEDBACK */
.border-complete {
  /*border: 1px solid var(--new-green);*/
}

.border-error {
  border: 1px solid red !important;
}

#jError{
    font-family: 'Montserrat', sans-serif;
}

*{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
}
body{
  
}
html{
    scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6{
    width: 100%;
}
a{
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
}
ul{
    list-style: none;
}
input, select, button, textarea{
    outline-style: none;
}
textarea{
  resize: none;
}
/* CORES */
:root{
    --vermelho: #97151b;
    --cinza: #969797;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.menu-hamburguer{
    display: none;
}
.close-mobile{
    display: none;
}

.text-center{
    text-align: center;
}
.justify-center{
    justify-content: center;
}
/* BOX CLICAVEL */
.box-link{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
}


/* SCROLLBAR STYLE */
/*width 
::-webkit-scrollbar {
  width: 4px;
}
Track 
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
Handle 
::-webkit-scrollbar-thumb {
  background: #888;
}
 Handle on hover 
::-webkit-scrollbar-thumb:hover {
  background: #555;
}*/

.topo{
    width: 100%;
    background-color: #fff;
}
.topo-content{
    width: 85%;
    margin: 0 auto;
    padding: 1% 0;
    align-items: center;
}
.topo-1{
    width: 50%;
}
.topo-1 ul{
    width: 100%;
}
.topo-1 ul li{
    align-items: center;
    margin-right: 4%;
}
.topo-1 ul li img{
    margin-right: 15px;
}
.topo-2{
    width: 50%;
    justify-content: flex-end;
}
.topo-2 ul{
    width: 100%;
    justify-content: flex-end;
}
.topo-2 ul li{
    margin-left: 4%;
}
.topo-2 ul li a{
    width: 100%;
}
.topo-2 ul li a img{
    width: 75%;
}


/* ----- MENU ----- */
.fixed-menu{
    position: fixed;
    top: 0;
    z-index: 999;
}
.topo-menu{
    width: 100%;
    height: 111px;
    background-color: var(--vermelho);
}
.menu-content{
    width: 85%;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    align-content: center;
}
.menu-img{
    width: 10%;
    margin-top: 6%;
}
.menu-img img{
    width: 100%;
}
.menu{
    width: 90%;
    justify-content: flex-end;
}
.menu-list{
    width: 76%;
    justify-content: space-between;
}
.menu-list li a{
    font-size: 18px;
    color: #fff;
}
.menu-list li a:hover{
    color: black;
}

/* ----- FOOTER ----- */
.footer{
    background-color: #f7fafd;
    width: 100%;
}
.footer-content{
    width: 85%;
    padding: 1% 0;
    margin: 0 auto;
    align-items: center;
}
.footer-img{
    width: 10%;
}
.footer-img img{
    width: 100%;
}
.footer-menu{
    width: 90%;
    justify-content: flex-end;
}
.footer-list{
    width: 75%;
    justify-content: space-between;
}
.footer-list li a{
    font-size: 18px;
    color: var(--vermelho);
}
.footer-redes{
    width: 13%;
    margin-left: 4%;
    place-content: flex-end;
    justify-content: space-between;
}
.footer-redes a{
    width: 100%;
}
.footer-redes a img{
    width: 75%;
}

/* ----- DIREITOS ----- */
.direitos{
    width: 85%;
    margin: 0 auto 5%;
    padding: 1% 0;
    align-items: center;
}
.red{
    width: 40%;
    align-items: center;
}
.red span{
    font-size: 18px;
    color: var(--cinza);
}
.red a img{
    margin-left: 15px;
}
.politicas{
    width: 60%;
    justify-content: flex-end;
}
.politicas span{
    margin-left: 1%;
    font-size: 18px;
    color: var(--cinza);
}

.modal-depo{
    position: fixed;
    width: 100%;
    top: 14%;
    z-index: 999;
}
.modal-depo form{
    width: 50%;
    margin: 0 auto;
    border: 1px solid var(--vermelho);
    background-color: #fff;
    border-radius: 20px;
    justify-content: center;
    padding: 2% 8%;
    justify-content: space-between;
    position: relative;
}
.modal-depo form h2{
    text-align: center;
    margin-bottom: 3%;
}
.modal-depo form input{
    width: 48%;
    height: 60px;
    padding-left: 5%;
    margin-bottom: 2%;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    color: #8A8B8B;
    font-size: 18px;
}
.modal-depo form textarea{
    width: 100%;
    margin: 0 auto;
    height: 180px;
    padding: 3% 0 0 5%;
    border-radius: 10px;
    border: 1px solid #d5d5d5;
    color: #8A8B8B;
    font-size: 18px;
    margin-bottom: 3%;
}
.modal-depo form textarea::placeholder, .modal-depo form input::placeholder{
    color: #8A8B8B;
    font-size: 18px;
}
.depo-a{
    width: 100%;
    display: flex;
    justify-content: center;
}
.modal-depo a{
    background-color: var(--vermelho);
    border-radius: 50px;
    border: 1px solid var(--vermelho);
    color: #fff;
    font-size: 18px;
    letter-spacing: 6px;
    padding: 1% 2%;
}
.modal-depo a:hover{
    background-color: #fff;
    color: var(--vermelho);
}
.close-modal-depo{
    position: absolute;
    right: 2%;
    top: 2%;
}

/* --------- FLUTUANTE --------- */
.flutuante{
    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 20;
    width: 6%;
}
.flutuante a{
    width: 100%;
}
.flutuante a img{
    width: 100%;
    object-fit: contain;
}

/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1440px){
    .topo-1 ul li a{
        font-size: 14px;
    }
    .topo-menu{
        height: 90px;
    }
    .menu-list li a, .footer-list li a, .red span, .politicas span{
        font-size: 16px;
    }
    .modal-depo form input, 
    .modal-depo form input::placeholder{
        font-size: 16px;
        height: 50px;
    }
    .modal-depo form textarea, 
    .modal-depo form textarea::placeholder{
        font-size: 16px;
        height: 160px;
    }
    .modal-depo a{
        font-size: 16px;
    }
}

@media screen and (max-width: 1366px){
    .modal-depo form{
        padding: 2% 5%;
    }
}

@media screen and (max-width: 1280px){
    .topo-1 ul li a{
        font-size: 12px;
    }
    .topo-menu{
        height: 80px;
    }
    .menu-list li a, .footer-list li a, .red span, .politicas span{
        font-size: 14px;
    }
    .modal-depo form input, 
    .modal-depo form input::placeholder{
        font-size: 14px;
        height: 45px;
    }
    .modal-depo form textarea, 
    .modal-depo form textarea::placeholder{
        font-size: 14px;
        height: 140px;
    }
    .modal-depo a{
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px){
    .topo-1 ul li a{
        font-size: 10px;
    }
    .topo-menu{
        height: 70px;
    }
    .menu-list li a, .footer-list li a, .red span, .politicas span{
        font-size: 12px;
    }
    .modal-depo form input, 
    .modal-depo form input::placeholder{
        font-size: 12px;
        height: 35px;
    }
    .modal-depo form textarea, 
    .modal-depo form textarea::placeholder{
        font-size: 12px;
        height: 120px;
    }
    .modal-depo a{
        font-size: 12px;
    }
}

/* MOBILE */
@media screen and (max-width: 768px){
	/* MENU MOBILE */
	.menu-list{
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 560px;
        background-color: #fff;
        top: 0;
        left: 0;
        z-index: 50;
        animation-name: slideInDown;
        animation-duration: .8s;
        margin-top: 0;
    }
    .slideInDown {
        -webkit-animation-name: slideInDown;
        animation-name: slideInDown;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
    }
        @-webkit-keyframes slideInDown {
        0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
        }
        100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        }
    }
        @keyframes slideInDown {
        0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
        100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        }
    } 
    .menu-list li{
        padding: 5px 0;
    }
    .menu-list li a{
        font-size: 30px;
        color: var(--vermelho);;
    }
    .menu-hamburguer{
        display: block;
        align-self: center;
    }
    .menu-hamburguer i{
        font-size: 50px;
        color: #fff;
    }
    .close-mobile{
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .close-mobile i{
        font-size: 40px;
        color: var(--vermelho);
    }
    /* MENU MOBILE FIM */

    .menu-img{
        width: 13%;
    }
    .menu{
        width: 87%;
    }
    .footer-list li a{
        font-size: 10px;
    }
}

@media screen and (max-width: 480px){
    .menu-img{
        width: 35%;
        margin-top: 20%;
    }
    .menu{
        width: 65%;
    }
    .topo-1{
        width: 100%;
    }
    .topo-1 ul li{
        margin-bottom: 5%;
    }
    .topo-1 ul li a{
        font-size: 14px;
    }
    .topo-2{
        width: 100%;
    }
    .topo-2 ul li a img {
        width: 100%;
    }
    .footer-img{
        width: 100%;
        justify-content: center;
        margin-bottom: 5%;
    }
    .footer-img a{
        display: flex;
        justify-content: center;
    }
    .footer-img img {
        width: 80%;
    }
    .footer-menu{
        width: 100%;
        justify-content: center;
    }
    .footer-list{
        width: 100%;
        text-align: center;
    }
    .footer-list li{
        width: 100%;
        margin-bottom: 3%;
    }
    .footer-list li a {
        font-size: 18px;
    }
    .footer-redes a img {
        width: 100%;
    }

    .red{
        width: 100%;
        justify-content: center;
        margin-bottom: 3%;
    }
    .politicas{
        width: 100%;
        justify-content: center;
    }

    .modal-depo form{
        width: 95%;
    }
    .modal-depo form {
        padding: 5%;
    }

    .flutuante{
        width: 25%;
    }
}

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

}

@media screen and (max-width: 375px){
    .menu-list li a{
        font-size: 26px;
    }
    .close-mobile i{
        font-size: 35px;
    }
}