@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@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: "Nunito Sans", sans-serif;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 400;
  color: var(--titulo);
  
}
*::-webkit-scrollbar {
  width: 20px;
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
  background: var(--cor-1);
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--hover-1);
}
h1, h2, h3, h4, h5, h6{
  
}
h2,
h2 span{
	font-size: 56px;
  font-weight: 800;
}
h3,
h3 span{
	font-size: 48px;
  font-weight: 800;
}
h4,
h4 span{
  font-size: 32px;
  font-weight: 700;
}
h5,
h5 span{
  font-size: 24px;
  font-weight: 800;
}
h6,
h6 span{
  font-size: 24px;
  font-weight: 700;
}
a{
    text-decoration: none;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}
p{
  text-align: justify!important;
}
ul{
  list-style: none;
}
button{
    cursor: pointer;
    background-color: transparent;
    border: none;
}
strong{
    font-weight: 700;
}
input, textarea, select {
  outline-style: none;
  border: none;
  resize: none;
}
main{
  background-color: var(--bg1);
}
a.link,
button.link{
    width: fit-content;
    font-size: 24px;
    font-weight: 800; 
    min-height: 66px;
    padding: 5px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
span.destaque{
    padding: 8px 24px;
    text-transform: uppercase;
    background-color: #eeeeee;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    height: fit-content;
    border-radius: 50px;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.column{
    flex-direction: column;
}
.container{
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
}
.scale1{
  transition: ease .3s;
}
.scale1:hover{
  scale: 1.05;
  transition: ease .3s
}
.scale2{
  transition: ease .3s;
}
.scale2:hover{
  scale: 1;
  transition: ease .3s
}
.padding{
    padding: 100px 0;
}

/* BOX CLICAVEL */
.box-link{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
}
:root{
    --cor-1: #FFCC00;
    --hover-1: #FFB800;

    --cor-2: #073A79;
    --hover-2: #062E61;

    --cor-3: #E68A00;
    --cor-4: #3476B9;
    --branco1: #ffffffc2;

    --bg1: #fafafa;
    --bg2: #f9f5ff;

    --titulo: #2C2C2C;
    --sub-t: #54565A;
}
.primaria{
  color: #2C2C2C;
}
.secundaria{
  color: #54565A;
}
.branco{
	color: #fff;
}
.branco1{
  color: #ffffffc2;
}
.preto{
    color: #000;
}
.deg1{
    background-image: linear-gradient(90deg, rgba(255, 184, 0, 1) 10%, rgba(230, 138, 0, 1) 54%);
}
.deg2{
    background-image: linear-gradient(180deg, rgba(52, 118, 185, 1) 57%, rgba(7, 58, 121, 1) 86%);
}

@media screen and (min-width: 2000px){
    .container{
      max-width: 1720px;
    }
}

@media screen and (max-width: 1500px){
    h2,
    h2 span{
      font-size: 52px;
    }
    h3,
    h3 span{
      font-size: 44px;
    }
    h4{
      font-size: 30px;
    }
    h5{
      font-size: 24px;
    }
    h6{
      font-size: 24px;
    }
}

@media screen and (max-width: 1300px){
    h2,
    h2 span{
      font-size: 50px;
    }
    h3,
    h3 span{
      font-size: 42px;
    }
}

@media screen and (max-width: 1100px){
    h2,
    h2 span{
      font-size: 46px;
    }
    h3,
    h3 span{
      font-size: 38px;
    }
}

@media screen and (max-width: 800px){
    h2,
    h2 span{
      font-size: 40px;
    }
    h3,
    h3 span{
      font-size: 35px;
    }
}
