
@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;
    text-decoration: underline;
  }
  
  .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;
    cursor: pointer;
}
ul{
    list-style: none;
}
button{
    cursor: pointer;
}
input, select, button, textarea{
    outline-style: none;
}
textarea{
    resize: none;
}
strong{
    font-weight: 700;
}

.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.menu-hamburguer{
    display: none;
}
.close-mobile{
    display: none;
}


/* BOX CLICAVEL */
.box-link{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
}

/* CORES */
/*:root{
    --color1: #A7A7A7;
    --color2: #E13512;
}*/

/* 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;
}*/

/* ----- MENU ----- */
.fixed-menu{
    position: fixed;
    top: 0;
    z-index: 50;
}
.topo-menu{
    width: 100%;
    height: 110px;
    background-color: var(--color-neutral-900);
}
.menu-content{
    width: 85%;
    height: 100%;
    margin: 0 auto;
    align-items: center;
    align-content: center;
}
.menu-img{
    width: 10%;
}
.menu-img img{
    width: 100%;
}
.menu{
    width: 90%;
    justify-content: flex-end;
}
.menu-list {
    width: 76%;
    justify-content: flex-end;
    gap: 30px;
}
.menu-list li a{
    font-size: 18px;
    color: var(--color-red-500);
}
.menu-list li a:hover{
    color: #fff;
}



/* PAGINAÇÃO */

.paginacao{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.paginacao .lista-paginacao{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.paginacao .lista-paginacao span, 
.paginacao .lista-paginacao li a{
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    padding: 10px 15px;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.paginacao .lista-paginacao span:hover, 
.paginacao .lista-paginacao li a:hover,
.paginacao .lista-paginacao li a.ativo{
    background-color: var(--color-primary);
    color: #ffffff;
}




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

}

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

}

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

}

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

}

@media screen and (max-width: 1100px){
    /* MENU MOBILE */
    .menu-list{
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 100vh;
        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);
        }
    } 

}

/* MOBILE */
@media screen and (max-width: 1000px){
    
}

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

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

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

}

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

}
