body{
    margin: 0rem;
    padding: 0rem;
}
@import "../glide/src/assets/sass/glide.core.html";
@import "../glide/src/assets/sass/glide.theme.html";

@font-face {
    font-family: "univia";
    src: url(../fonts/UniviaPro-Black.otf);
}
@font-face {
    font-family: "bignoodletitling";
    src: url(../fonts/bignoodletitling/big_noodle_titling.ttf);
  }
/* LOADING BODY */
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(
        255,
        255,
        255
    ); /* cor do background que vai ocupar o body */
    z-index: 999; /* z-index para jogar para frente e sobrepor tudo */
}
.bolas > div {
    display: inline-block;
    background-color: #006eb9;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.bolas > div:nth-child(1) {
    animation-duration: 0.75s;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 0.75s;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 0.75s;
    animation-delay: 0.24s;
}
@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/* BANNER */
.banner{
    background-position: center center;
    background-repeat: no-repeat;
    height: 57rem;
    background-size: cover;
}
.conteudo-banner{
    padding-top: 8rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.descricao-banner{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 1rem;
}
.descricao-banner span{
    color: white;
    font-family: 'montserrat';
    font-size: 1.5rem;
}

/* INFORMAÇÃO */
.informacao{
    width: 100%;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.titulo-informacao{
    font-size: 2rem;
    font-family: 'univia';
    color: rgb(50, 137, 196);
}
.descricao-informacao{
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'montserrat';
    padding-top: 1rem;
}

/* CARROSEL */
.carrosel{
    background-image: url('../img/layout_03.png');
    background-position: center center;
    background-repeat: no-repeat;
    height: 41rem;
    background-size: cover;
    margin-bottom: 4rem;
}
.conteudo-carrosel{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.title-carrosel{
    width: 100%;
    text-align: center;
    font-family: 'univia';
    font-size: 2rem;
    color: white;
    padding-bottom: 4rem;
}
.slider {
    width: 50%;
    margin: 100px auto;
}
.slick-slide {
  margin: 0px 20px;
}
.slick-slide img {
  width: 100%;
}
.slick-prev:before,
.slick-next:before {
  color: black;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: .5;
}
.slick-current {
  opacity: 1;
}
.bloco-cards{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title-cards{
    font-size: 2rem;
    font-family: 'univia';
    color: rgb(50, 137, 196);
}
.bloco-cards-interno{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
    padding: 6rem 0 4rem 0;
}
.item-card{
    width: 20rem;
    min-height: 20rem;
    font-family: 'montserrat';
    box-shadow: 0 0 25px #00000014;
    border-radius: 0.5rem;
    margin: 1rem;
    transition: 0.2s ease-out;
}
.item-card:hover{
    transform: translateY(-5px);
    transition: 0.2s ease-out;
}
.item-card span{
    height: 6rem;
    width: 6rem;
    position: absolute;
    background: white;
    margin-left: 1rem;
    margin-top: -3.5rem;
    border-radius: 100%;
    box-shadow: 0 0 25px #00000017;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-card span i{
    font-size: 2.5rem;
    color: rgb(38 117 171);
}
.conteudo-cards {
    padding: 3.5rem 0rem 0rem 0rem;
}
.title-card{
    padding: 0rem 1rem 0.5rem 1rem;
    color: rgb(24 79 117);
    font-weight: 600;
    font-size: 1.1rem;
}
.desc-card{
    color: #6b6b6b;
    padding: 0 1rem;
    max-height: 13rem;
}
.solicitar{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5rem;
}
.solicitar a{
    background: rgb(50, 137, 196);
    border: none;
    color: white;
    font-family: 'montserrat';
    font-weight: 600;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    line-height: 1rem;
    transition: 0.1s ease-out;
    text-decoration: none;
}
.solicitar a:hover{
    background: rgb(38, 120, 175);
    transition: 0.1s ease-out;
    text-decoration: none;
    color: white;
}

/* FOOTER */
.bordas-div {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: -2.5rem;
    position: relative;
    z-index: 1;
}
.final {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: rgba(0, 156, 215, 1);
}
.bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    height: 4rem;
    color: #fff;
    font-size: 1.2rem;
    font-family: "bignoodletitling";
    background: rgb(0 142 195);
}
.borda-esquerda {
    width: 100%;
    height: 0;
    bottom: 4px;
    border-right: 20rem solid transparent;
    border-bottom: 3rem solid rgba(0, 156, 215, 1);
}
.borda-direita {
    bottom: 4px;
    width: 100%;
    height: 0;
    border-left: 20rem solid transparent;
    border-bottom: 3rem solid rgba(0, 156, 215, 1);
}
.final > p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    font-family: "univia";
    color: #fff;
    margin-bottom: 0;
    font-size: 2rem;
    padding-top: 3rem;
}
.contatos {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 0 4rem 0;
}
.contatos a {
    text-decoration: none;
    padding: 0rem;
}
.contatos div {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
}
.contatos span {
    font-family: "bignoodletitling";
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
}
.back2{
    display: none!important;
}
.next2{
    display: none!important;
}
@media (max-width: 1440px) {
    .banner{
        height: 50rem;
    }
    .item-card {
        width: 18rem;
    }
    .descricao-banner {
        width: 60%;
    }
    .contato img{
        height: 3rem;
    }
    .contatos span {
        font-size: 1.2rem;
    }
    .final > p {
        font-size: 2rem;
        padding-top: 2rem;
    }
}
@media (max-width: 1280px) {
    .item-card {
        margin: 3rem 0rem;
    }
    .bloco-cards-interno {
        padding: 3rem 0;
    }
}
@media (max-width: 1024px) {
    .descricao-informacao {
        width: 80%;
    }
}
@media (max-width: 800px) {
    .borda-esquerda {
        border-right: 15rem solid transparent;
    }
    .borda-direita {
        border-left: 15rem solid transparent;
    }
    .bloco-cards-interno {
        padding: 2rem 0;
    }
}
@media (max-width: 600px) {
    .back{
        display: none!important;
    }
    .next2{
        display: block!important;
    }
    .next{
        display: none!important;
    }
    .back2{
        display: block!important;
    }
    .banner {
        height: 40rem;
    }
    .conteudo-banner {
        padding-top: 4rem;
    }
    .descricao-banner {
        padding-top: 0.5rem;
    }
    .descricao-banner span {
        font-size: 1.1rem;
    }
    .descricao-banner {
        width: 80%;
    }
    .descricao-informacao {
        width: 90%;
    }
    .title-carrosel {
        font-size: 1.8rem;
    }
    .title-carrosel {
        padding-bottom: 2rem;
    }
    .carrosel {
        height: 38rem;
    }
    .item-card span {
        height: 5rem;
        width: 100%;
        position: relative;
        background: transparent;
        margin-left: 0rem;
        margin-top: 0rem;
        border-radius: none;
        border: none;
        box-shadow: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .item-card span i {
        font-size: 2.5rem;
    }
    .conteudo-cards {
        padding: 0rem;
    }
    .item-card {
        margin: 0.6rem 0rem;
        width: 15rem;
        box-shadow: 0px 0px 10px #00000024;
    }
    .desc-card {
        max-height: 12rem;
        text-align: justify;
        font-size: 0.9rem;
    }
    .title-card {
        text-align: center;
    }
    .contatos span {
        display: none;
    }
    .contatos {
        justify-content: space-around;
        padding: 2rem 0 3rem 0;
    }
    .contato img {
        height: 2.5rem;
    }
    .final > p {
        font-size: 1.8rem;
    }
    .bloco-cards-interno {
        padding: 1rem 0 3rem 0;
    }
    .borda-direita {
        border-left: 13rem solid transparent;
    }
    .borda-esquerda {
        border-right: 13rem solid transparent;
    }
}
@media (max-width: 500px) {
    .desc-card {
        font-size: 0.9rem;
        max-height: 10rem;
        padding: 0 0.5rem;
    }
    .bloco-cards-interno {
        padding: 1rem 0 2rem 0;
    }
    .descricao-informacao {
        width: 95%;
        padding-top: 0rem;
        font-size: 0.9rem;
    }
    .titulo-informacao {
        font-size: 1.5rem;
    }
    .informacao {
        padding: 2rem 0;
    }
    .carrosel {
        height: 28rem;
    }
    .logo-banner img{
        height: 2.5rem;
    }
    .descricao-banner span {
        font-size: 1rem;
    }
    .title-carrosel {
        font-size: 1.5rem;
        padding-bottom: 1rem;
    }
    .bolas img{
        height: 8rem;
    }
    .glide__arrow img {
        height: 4rem;
    }
    .item-card {
        min-height: 17.5rem;
        width: 90%;
    }
    .title-card {
        font-size: 1.2rem;
    }
    .borda-direita {
        border-left: 10rem solid transparent;
        border-bottom: 2.5rem solid rgba(0, 156, 215, 1);
    }
    .borda-esquerda {
        border-right: 10rem solid transparent;
        border-bottom: 2.5rem solid rgba(0, 156, 215, 1);
    }
    .final > p {
        font-size: 1.5rem;
    }
    .contato img {
        height: 2rem;
    }
    .item-card span {
        padding-top: 0.5rem;
        height: 4rem;
    }
    .title-cards {
        font-size: 1.5rem;
    }
}
@media (max-width: 420px) {
    .banner {
        height: 26rem;
    }
    .contatos {
        padding: 2rem 0 2rem 0;
    }
    .logo-banner img {
        height: 1.5rem;
    }
    .conteudo-banner {
        padding-top: 2rem;
    }
    .descricao-banner span {
        font-size: 0.9rem;
    }
    .descricao-banner {
        width: 95%;
    }
    .borda-direita {
        border-left: 8rem solid transparent;
        border-bottom: 2rem solid rgba(0, 156, 215, 1);
    }
    .borda-esquerda {
        border-right: 8rem solid transparent;
        border-bottom: 2rem solid rgba(0, 156, 215, 1);
    }
    .solicitar a {
        font-size: 1rem;
    }
    .title-carrosel {
        font-size: 1.3rem;
    }
    .carrosel {
        margin-bottom: 3rem;
    }
    .bloco-cards-interno {
        padding: 1rem 0 2rem 0;
    }
}
@media (max-width: 375px) {
    .descricao-informacao {
        width: 100%;
    }
    .informacao {
        padding: 2rem 0.5rem;
    }
    .carrosel {
        height: 24rem;
    }
    .item-card {
        min-height: 16rem;
        width: 95%;
        height: auto;
    }
    .bloco-cards-interno {
        padding: 0rem 0 2rem 0;
    }
    .bloco-cards{
        padding: 0 0.5rem;
    }
    .contatos {
        padding: 2rem 0 2.5rem 0;
    }
    .solicitar a {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .titulo-informacao {
        font-size: 1.3rem;
    }
    .title-cards {
        font-size: 1.3rem;
    }
    .title-card {
        font-size: 1.1rem;
    }
}
@media (max-width: 350px) {
    .descricao-informacao {
        font-size: 0.8rem;
        text-align: justify;
    }
}