/************ CONFIGURAÇÕES FONTS, CORES *********/
:root {
  --light: #fff;
  --dark: #000;
  --cor-primaria: #ffff ;
  --cor-secundaria: #ffd73f;
  --cor-terciaria: #4e35f7;
  --cor-quartenaria: #cce5c8;
  --cor-quinaria: #262d3c;
  --cor-luz: rgba(0, 238, 109, 0.18);
}
[data-animate] {
  opacity: 0;
}
.text-large {
  font-size: 60px!important;
}
.text-medium {
  font-size: 2.5rem!important;
}
.text-large, .text-medium {
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}
.text-small{
  font-size: 1rem;
  line-height: 1.1;
  display: inline-block;
}
.text-small2{
  font-size: .8rem;
  line-height: 1.1;
  display: inline-block;
}
.text-secondary {
  font-size: 25px !important;
  line-height: 1.1;
  color: #858585;
}
.text-light {
  color: var(--light);
}
.color-primary {
  color: var(--color-primary);
}
.text-gray {
  color: #494949;
}
.text-gray-light {
  color: #807f7f;
}
.text-green-light {
  color: rgba(204,229,200,.8);
}
b {
  font-weight: 900;
}
.f-w-300 {
  font-weight: 300 !important;
}
.f-w-400 {
  font-weight: 400 !important;
}
.f-w-500 {
  font-weight: 500 !important;
}
.f-w-600 {
  font-weight: 600 !important;
}
.f-w-700 {
  font-weight: 700 !important;
}
.f-w-800 {
  font-weight: 800 !important;
}
.f-w-900 {
  font-weight: 900 !important;
}
a {
  text-decoration: none !important;
}
/*************** GERAL *********/
body {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.grecaptcha-badge {
  display: none;
}
.img-responsive {
  width: 100%;
  height: auto;
}
.container-fullscreen {
  padding-top: 0;
  height: 100%;
  width: 100%;
  display: table;
  position: relative;
}
.text-middle {
  display: table-cell;
  vertical-align: middle;
  margin: auto;
  z-index: 3;
  position: relative;
}
.fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 100vh;
}
section {
  padding: 80px 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  background-color: var(--light);
}
.p-relative {
  position: relative;
}
.background-dark {
  background-color: var(--dark) !important;
}
.hidden {
  display: none;
}
.button-cta {
  display: inline-flex;
  background-color:var(--cor-terciaria);
  padding: 1.1rem 3rem 1.1rem 3rem;
  border-radius: 0.9rem;
  color: var(--cor-primaria);
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--cor-terciaria);
  font-size: 16px;
  margin: 10px 5px;
  
} 
.button-video{
  display: inline-flex;
  background-color:transparent;
  padding: 1.1rem 3rem 1.1rem 3rem;
  border-radius: 0.9rem;
  color: var(--cor-primaria);
  text-decoration: none;
  font-weight: 600;
  justify-content: center;
  text-align: center;
  border: 2px solid var(--cor-terciaria);
  font-size: 16px;
  margin: 10px 5px;
}
.button-cta:hover{
  color:var(--cor-terciaria);
  border: 2px solid var(--cor-primaria);
  background-color: var(--cor-primaria);
}
.button-video:hover{
  color:var(--cor-primaria);
  border: 2px solid var(--cor-terciaria);
  background-color: var(--cor-terciaria);
}

.button-cta, .button-video {
  transition: background-color 0.6s ease, color 0.6s ease, border 0.6s ease;
} 

.campo-erro {
  border: 2px solid red; /* Borda vermelha para destacar o campo */
}

/* Estilo para a mensagem de erro */
.mensagem-erro {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none; /* Oculto por padrão */
}

@media screen and (max-width: 576px) {
  .button-cta {
    width: 100%;
  }
  .button-video{
    width: 100%;
  }
  .button-cta, .button-video {
    margin-left: 0;
    margin-right: 0;
  }
}

/************** SOBRE *********/

#sobre h3 {
  font-size: 3rem;
}

/************** FORM *********/
.form-control{
  color:#000000;
}
.form-control::placeholder {
  color: #212529;
  opacity: 0.6;
}
.form-control:focus {
  box-shadow: none;
}
input.validation {
  display: none;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-control.error {
  border-color: red !important;
}
.form-control.valid {
  border-color: green !important;
}

div.error {
  color: red;
  font-size: 0.9rem;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  display: inline-block;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--light);
  border: #adb5bd solid 1px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
  color: var(--light);
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-control-input.error ~ .custom-control-label,
.custom-control-input.error ~ .custom-control-label b {
  color: red !important;
}
.custom-control-input.error ~ .custom-control-label::before {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgb(220 53 69 / 25%);
}
/************ PAGE TITLE *********/
#header+#page-title {
  top: -160px;
  margin-bottom: -160px;
  position: relative;
  padding: 240px 0 80px 0;
}
#header+#page-title.fullscreen {
  top: -80px;
  margin-bottom: -80px;
}
#page-title .page-title > h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 1rem;
}
/******************Empreendimentos*****************/
#imoveis {
  background-color: black;
  position: relative;
}
#imoveis h2{
  font-size: 5rem;
}
#imoveis img{
  z-index: ;
}
#imoveis .tag {
  padding: 5px 10px;
  border: 1px solid #61616150;
  border-radius: 5px;
}
#imoveis .tag i{
  color: #fff;
}
.full-width-section {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.coluna-empreendimento {
  position: relative;
  padding: 0;
  width: 20%;
  height: 100vh !important;
  display: inline-block;
  overflow: hidden;
}

.col-md-2.coluna-empreendimento {
  width: 20%;
  height: 100%;
}

.col-md-4.coluna-empreendimento {
  width: 25%;
  height: 100%;
}

.col-md-6.coluna-empreendimento {
  width: 50%;
  height: 100%;
}

.col-md-12.coluna-empreendimento {
  width: 100%;
  height: 100%;
} 

/* Estilos base da imagem */
.coluna-empreendimento img.hover-effect {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Estilos para a sobreposição extra */
.extra-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Estilos para a overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Estilos para o svg logo */
.svg-logo {
  position: absolute;
  z-index: 2;
  max-width: 100px;
  transition: transform 0.3s ease;
  opacity: 1;
}

/* Aplica a transformação simultânea ao passar o mouse sobre a .coluna-empreendimento */
.coluna-empreendimento:hover img.hover-effect,
.coluna-empreendimento:hover .extra-overlay,
.coluna-empreendimento:hover .svg-logo,
.coluna-empreendimento:hover .overlay {
  transform: scale(1.05);
  overflow: hidden;
}

.svg-logo img {
  z-index: 4!important;
}

.svg-logo-details{
  position: relative;
  z-index: 2;
  max-width: 125px;
  opacity: 1;
  margin-bottom: 20px;
}

.coluna-empreendimento:hover .svg-logo {
  transform: scale(1.2);
}
.details-emp{
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0 !important;
}
.item-details-emp {
  position: absolute;
  top: 0;
  right: 0%;
  width: 70%;
  height: 100%;
  background-color: white;
  z-index: 1002; /* Certifique-se de que está acima de outros elementos */
  overflow: auto;
  padding: 20px;
  background-color: rgba(0,0,0,.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 200px;
  transform: translateX(100%); /* Começa fora da tela à direita */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Define a transição suave */
  pointer-events: none;
  box-shadow: -30px 0 45px rgba(0, 0, 0, 0.7);
}
.item-details-emp.show {
  transform: translateX(0); /* Move para a tela */
  opacity: 1;
  pointer-events: auto;
}
.item-details-emp .details-image-emp {
  width: 100%;
  height: auto;
}
.img-details-emp{
  position: absolute;
  width: 30%;
  height: 100%;
  z-index: 1000; /* Certifique-se de que está acima de outros elementos */
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%); /* Começa fora da tela à direita */
  transition: transform 0.5s ease, opacity 0.5s ease; /* Define a transição suave */
  pointer-events: none;
}
.img-details-emp img{
  height: 100%;
}
.img-details-emp.show {
  transform: translateX(0); /* Move para a tela */
  opacity: 1;
  pointer-events: auto;
}
.close-button-emp {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 255, 255, .08);
  border-radius: 7px;
  padding: 0px 8px;
}

.caption-slider-emp {
  width: 100%;
  height: 100%;
  padding-top: 60px;
  display: flex;
  align-items: center;
}
.link-caption-emp {
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  background-color: rgba(255, 255, 255, .08);
}
.link-caption-emp:hover {
  background: var(--color-primary) !important;
  color: var(--light);
  transition: all 0.4s linear 0s;
}
.link-caption-emp-whatsapp {
  border: 1px solid #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  background-color: rgba(2, 204, 63, 0.2);
}
.link-caption-emp-whatsapp:hover {
  background: var(--color-primary) !important;
  color: var(--light);
  transition: all 0.4s linear 0s;
}

@media (max-width: 992px) {
  #imoveis h2{
    font-size: 3rem;
  }
  .coluna-empreendimento {
      width: 50%; 
  }

  .item-details-emp {
    position: absolute;
    top: 0;
    right: 0%;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000; /* Certifique-se de que está acima de outros elementos */
    overflow: auto;
    padding: 20px;
    background-color: rgba(0,0,0,.6);
    -webkit-backdrop-filter: blur(8px);
    transform: translateX(100%); /* Começa fora da tela à direita */
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease; /* Define a transição suave */
    pointer-events: none;
  }

  .svg-logo-details{
    position: relative;
    z-index: 2;
    max-width: 125px;
    opacity: 1;
    margin-bottom: 40px;
    margin-top: 100px;
  }
  
  .link-caption-emp {
    border: 1px solid #fff;
    border-radius: 1rem;
    padding: 1rem 2rem;
    margin-top: 60px;
    font-size: 1.2rem;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255, 255, 255, .08);
    position: absolute;
  }

}

@media (max-width: 576px) {
  .coluna-empreendimento {
      width: 100%; 
  }
}

/****************** DEPOIMENTOS *****************/
#depoimentos {
  background-color: #252525;
  background-size: cover;
  background-position: center center;
}
.depoimentos p {
  display: block;
  margin-top: 40px;
}

.depoimentos span {
  display: block;
  font-size: 20px;
  color: #fff;
}
.custom-text {
  color: #ffffff;
}
.depoimentos h4 {
  margin-bottom: 0;
  font-weight: 800;
  font-size: 30px;
}
.title-primary {
  font-weight: 500;
  color: #ffffff;
}
.title-secundario {
  color: var(--cor-primaria);
  font-weight: 800;
}
.owl-carousel.depoimentos .owl-item span {
  text-align: center;
  color: #a59292;
  display: block;
  margin-top: 10px;
}
#depoimento .item {
    padding: 50px 60px;
}
.carousel.depoimentos {
  display: flex; /* Flexbox para organizar os itens do carrossel */
  overflow: hidden; /* Esconde os itens que excedem a área visível */
  width: 100%; /* Garante que o carrossel ocupe 100% da largura disponível */
}

.carousel.depoimentos .item {
  flex: 0 0 100%; /* Cada item deve ocupar 100% da largura do contêiner */
  max-width: 736px; /* Define uma largura máxima para os itens */
  margin: 0 auto; /* Centraliza cada item */
  display: flex;
  justify-content: center; /* Centraliza o card dentro do item */
}

.card-depoimentos {
  background-color: rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 50px 40px 20px;
  position: relative;
  width: 100%;
  max-width: 736px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}
.depoimentos-image {
    position: absolute;
    top: -35px;
    width: 70px !important;
}
.depoimentos-content h1 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
}
.depoimentos-content p {
  color: #ffffff;
}
.owl-carousel.depoimentos .owl-stage-outer {
    padding-top: 110px;
}
.owl-stage-outer .owl-height {
  height: 420px;
}
.owl-carousel.depoimentos .owl-stage, .owl-carousel.owl-drag.depoimentos .owl-item, .owl-carousel.owl-drag.depoimentos .owl-item .item {
    height: 100%;
}
.owl-carousel.depoimentos .owl-nav {
    -webkit-tap-highlight-color: rgb(255, 255, 255);
    text-align: center;
    position: absolute;
    top: 10px;
    right: 60px;
}
.owl-carousel.depoimentos .owl-nav .owl-prev {
    left: -70px;
}
.owl-carousel.depoimentos .owl-nav .owl-next {
    right: -60px;
}
.owl-carousel.depoimentos .owl-nav button[class*=owl-] { 
    margin: 0 5px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 5px;
}
.owl-carousel.depoimentos .owl-nav button i{
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.owl-carousel.depoimentos .owl-nav button[class*=owl-]:hover { 
    background: #ffffff;
    color: rgb(0, 0, 0);
}
.owl-carousel.depoimentos .owl-dots {
  text-align: center;
    bottom: 0;
    margin-bottom: 0;
    margin-top: 30px;
    position: relative;
}
.depoimentos .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgb(90, 89, 89);
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s;
    border-radius: 30px;
}
.depoimentos .owl-dots .owl-dot.active span {
    background: #ffffff;
}

/************* FORM CONTATO *************/
#contato {
  background: rgb(255, 255, 255);
  background-color: #fff;
  background-position: 20% center;
  background-size: cover;
}
#contato h2 {
  display: flex;
  flex-direction: column;
  color: #000000;
  font-weight: 900;
  line-height: 1.1;
  width: 100%;
  font-size: 2.25rem !important;
  margin-bottom: 1rem;
}

#contato h3 {
  display: flex;
  flex-direction: column;
  color: var(--cor-primaria);
  font-weight: 900;
  line-height: 1.1;
  width: 100%;
  font-size: 2.25rem !important;
}

#contato h2 span {
  text-transform: uppercase;
  margin: 1.5rem 0px;
  color: rgb(0, 0, 0) !important;
  font-size: 1.5rem !important;
  font-weight: 300;
}
#contato p {
  margin-top: 1.5rem;
  font-weight: 400;
  font-size: 1.2rem !important;
}
.form-contato .form-control {
  border: 0;
  border-bottom: 1px solid #747474;
  border-radius: 0;
  background: transparent;
  padding: 0.375rem 0;
}

.form-select{
  border: 0;
  border-radius: 0;
  padding: 0.375rem 0;
  border-bottom: 1px solid #747474;
}
.form-contato .form-floating>label.form-label {
  top: 0;
  left: 0px;
  padding: 0;
  opacity: 1;
  border: 0;
  height: auto;
  transform: none;
}
.form-contato textarea {
  resize: none;
}
.form-control:focus {
  box-shadow: 0 0 0 0;
}
.form-control::placeholder {
  color: transparent;
}
.form-contato label.form-label{
  pointer-events: none;
  position: absolute;
  top: calc(50% - 21px);
  transition: all 0.1s linear 0s;
  color: #000000;
  text-align: left;
  line-height: 1;
  font-size: 1rem;
}
.form-contato textarea + label.form-label{
  pointer-events: none;
  position: absolute;
  top: calc(32% - 45px);
  transition: all 0.1s linear 0s;
  color: #000000;
  text-align: left;
  line-height: 1;
  font-size: 1rem;
}
.form-contato textarea:focus + label.form-label, .form-contato textarea:not(:placeholder-shown) + label.form-label, .form-contato textarea:-webkit-autofill ~ label.form-label {
  font-size: 0.75rem;
  top: -14px;
}
.form-contato input:focus + label.form-label, .form-contato input:not(:placeholder-shown) + label.form-label, .form-contato input:-webkit-autofill ~ label.form-label {
  font-size: 0.75rem;
  top: -14px;
}

#form-background {
  padding: 2rem 4rem 2rem 4rem;
  border-radius: 20px;
}

.float-label {
  padding-bottom: 15px;
  position: relative;
}
.text-footer {
  font-size: 14px;
}
.creditos {
  font-size: 0.8rem;
}
@media (max-width: 992px) {
  .slider-caption .title-slide {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  #main-menu {
    display: none;
  }
  #form-background {
    padding: 1rem 2rem 1rem 2rem;
    border-radius: 20px;
    }
}

/******************* breadcrumb***************/
.breadcrumb {
  background-color: transparent;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 10px;
  display: block;
  text-align: left;
  padding: 0;
}
.breadcrumb ul {
  display: inline;
  margin: 0;
  padding: 0;
}
.breadcrumb ul li {
  display: inline;
  position: relative;
  opacity: 0.8;
}
#page-title .breadcrumb ul li a {
  color: var(--light);
  text-decoration: none;
}
.breadcrumb ul .breadcrumb-item + li:before,
.breadcrumb ul li + li:before,
.breadcrumb ol .breadcrumb-item + li:before,
.breadcrumb ol li + li:before {
  content: "\f054";
  font-family: "FontAwesome";
  margin: 0 5px;
  background-color: transparent;
  color: var(--light);
  font-size: 0.6rem;
  font-weight: 100;
}
/********************** LOADING ******************/
body.no-loading {
  overflow: hidden;
}
body.no-loading .body-inner {
  opacity: 0;
}
.body-inner {
  opacity: 1;
}
.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  border-radius: 0;
  z-index: 1003;
}
.div-center {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e6e6e6;
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite;
}
.loader-animation {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}
/* LOADER 1 */
#loader-1:before, #loader-1:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: var(--cor-terciaria);
}
#loader-1:before {
  z-index: 100;
  animation: spin 1s infinite;
}
#loader-1:after {
  border: 10px solid #ccc;
}
@keyframes spin{
  0%{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100%{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* LOADER 2 */
#loader-2 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--cor-terciaria);
  margin: 35px 5px;
}
#loader-2 span:nth-child(1) {
  animation: bounce 1s ease-in-out infinite;
}
#loader-2 span:nth-child(2) {
  animation: bounce 1s ease-in-out 0.33s infinite;
}
#loader-2 span:nth-child(3) {
  animation: bounce 1s ease-in-out 0.66s infinite;
}
@keyframes bounce{
  0%, 75%, 100%{
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25%{
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
/* LOADER 3 */

#loader-3{
  top: 40px;
  left: -2.5px;
}

#loader-3 span{
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: var(--cor-terciaria);
}

#loader-3 span:nth-child(1){
  animation: grow 1s ease-in-out infinite;
}

#loader-3 span:nth-child(2){
  animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-3 span:nth-child(3){
  animation: grow 1s ease-in-out 0.30s infinite;
}

#loader-3 span:nth-child(4){
  animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow{
  0%, 100%{
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  50%{
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}
/* LOADER 4 */

#loader-4 span{
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
  opacity: 0;
}

#loader-4 span:nth-child(1){
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2){
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3){
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}
/************ modal **************/
.modal-header.background-success {
  background-color: #81c868;
  color: var(--light) !important;
}
.modal-header.background-danger {
  background-color: #c30000;
  color: var(--light) !important;
}
.modal-header.modal-header.background-warning {
  background-color: #ffbd4a;
  color: var(--light) !important;
}
.modal-header.background-success .btn-close,
.modal-header.background-danger .btn-close,
.modal-header.background-warning .btn-close {
  background: transparent
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}
/************** modal strip **************/
.cookie-notice {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1.5rem 0;
  background-color: rgba(0, 0, 0, 1);
  z-index: 1000;
}
.cookie-notice p,
.cookie-notice p b {
  color: white;
}
.cookie-notice p {
  margin: 0;
  font-size: 13px;
}
.cookie-notice .btn-cookie {
  margin: 0 !important;
  border-color: var(--light);
  color: var(--light);
}
.cookie-notice .btn-cookie:hover {
  border-color: var(--green-200);
  color: var(--green-200) !important;
}
div#whatsFloat {
  right: 3% !important;
  bottom: 4% !important;
}
@media (max-width: 991px) {
  .btn.btn-reveal.btn-reveal-left:hover span {
    left: auto;
    right: auto;
  }

  .btn.btn-reveal.btn-reveal-left:hover i {
    display: none;
  }
  #page-title .page-title > h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .text-medium {
    font-size: 2.8rem !important;
  }
  .md-text-center {
    text-align: center;
  }
  .md-order-1 {
    order: 1;
  }
  .md-order-2 {
    order: 2;
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
  div#whatsFloat {
    right: 5% !important;
    bottom: 5% !important;
  }
  .text-large,
  .text-large span,
  .text-large span span {
    font-size: 40px !important;
    line-height: 50px !important;
  }
  .text-medium {
    font-size: 2.2rem !important;
  }
  .sm-text-center {
    text-align: center;
  }
}
.b-r-10 {
  border-radius: 10px;
}
.separator-footer {
  width: 100%;
  margin: 30px auto;
  overflow: hidden;
  text-align: center;
  line-height: 1.2em;
  display: inline-block;
  border-bottom: 1px solid #48b7c8;
}
/*************** HEADER ****************/
header {
  background-color: #000;
  position: relative;
  width: 100%;
  z-index: 1001!important;
  height: 80px;
  line-height: 80px;
  transition: top .8s ease-in-out;
}
.header-content {
  position: fixed;
  height: 80px;
  left: 0;
  right: 0;
  transition: all .4s ease-in-out;
}
header.background-dark.active:not(.menu-active) .header-content, header.active:not(.menu-active) .header-content {
  transition: top .8s ease-in-out;
  background-color: #000;
}
header+#mainMenu+#slider {
  top: -80px;
  margin-bottom: -80px;
}
.logo {
  float: left;
  z-index: 201;
  position: relative;
}
.logo-header {
  height: 80px;
  padding: 15px 0;
  z-index: 201;
  position: relative;
}
.hamburguer {
  float: right;
  height: 80px;
  z-index: 201;
  position: relative;
}
.hamburguer>ul {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 201;
}
.hamburguer #menu-hamburguer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 80px;
  width: 40px;
  line-height: 80px;
  cursor: pointer;
}
.hamburguer .lines {
  background-color: #000;
  display: inline-block;
  height: 4px;
  width: 40px;
  transition: .3s;
  position: relative;
  top: 0;
  z-index: 201;
}
.lines::after, .lines::before {
  display: inline-block;
  height: 4px;
  transition: .3s;
  content: '';
  position: absolute;
  right: 0;
  left: auto;
  -webkit-transform-origin: 2.85714px center;
  transform-origin: 2.85714px center;
  width: 100%;
  background-color: #000;
}
.lines::before {
  top: 10px;
}
.lines::after {
  top: -10px;
}
.x.toggle-active .lines {
  background: 0 0!important;
}
.x.toggle-active .lines::after, .x.toggle-active .lines::before {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 40px;
}
.x.toggle-active .lines::before {
  -webkit-transform: rotate3d(0,0,1,45deg);
  transform: rotate3d(0,0,1,45deg);
}
.x.toggle-active .lines::after {
  -webkit-transform: rotate3d(0,0,1,-45deg);
  transform: rotate3d(0,0,1,-45deg);
}
#menu-hamburguer {
  z-index: 299!important;
}
.menu-overlay {
  position: absolute;
}
.menu-overlay-active #header #mainMenu {
  z-index: 200;
}
#mainMenu.menu-overlay .menu {
  background-color: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .4s;
  pointer-events: none;
  position: fixed;
  left: 0;
  padding-top: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  height: 100%!important;
  padding-bottom: 0;
  pointer-events: none;
  transform: translateY(-110%);
  z-index: 1000;
  top:0;
}
.menu-active + #mainMenu .menu {
  transform: translateY(0);
  pointer-events: auto;
}
#mainMenu.menu-overlay .menu ul{
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 0;
}
#mainMenu.menu-overlay .menu ul.menu-link li a{
  color: var(--cor-terciaria) !important;
  font-size: 1.6rem;
  line-height: 1.6;
}
#mainMenu.menu-overlay .menu ul.menu-link li a:hover{
  transition: all 0.3s ease 0s;
  text-decoration: none;
  opacity: 0.7;
}
#mainMenu.menu-overlay .social-icons a {
  float: left;
  text-align: center;
  background: 0 0;
  color: var(--cor-terciaria) !important;
  overflow: hidden;
  height: 32px;
  width: 32px;
  line-height: 32px;
  font-size: 1.5rem!important;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  border: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}
.lines {
  display: inline-block;
  height: 4px;
  width: 30px;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
  top: -4px;
}
.lines::before,
.lines::after {
  display: inline-block;
  height: 4px;
  border-radius: 4px;
  transition: 0.3s;
  content: "";
  position: absolute;
  left: 0;
  transform-origin: 2.85714px center;
  width: 100%;
}
.lines::before {
  top: 8px;
}
.lines::after {
  top: -8px;
}
.lines,
.lines:before,
.lines:after {
  background-color: #000;
}
.x.toggle-active .lines {
  background: transparent !important;
}
.toggle-active .lines {
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
.x.toggle-active .lines::before,
.x.toggle-active .lines::after {
  transform-origin: 50% 50%;
  top: 0;
  width: 26px;
}
.x.toggle-active .lines::before {
  transform: rotate3d(0, 0, 1, 45deg);
}
.x.toggle-active .lines::after {
  transform: rotate3d(0, 0, 1, -45deg);
}
.menu-active #mainMenu nav {
  opacity: 1;
}
@media (max-width: 1200px) {
  #header .header-content,
  #header #header-wrap {
    height: auto;
  }
  .header-extras {
    float: left;
  }
  #header .header-content #mainMenu .container,
  #header #header-wrap #mainMenu .container {
    max-width: 100%;
  }
  #header #logo {
    margin: 0 !important;
    float: none;
    height: 80px;
    left: 0;
    right: 0;
    padding: 0 !important;
  }
  #header #logo > a {
    display: inline-block;
  }
  #mainMenu-trigger {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }
  #mainMenu {
    max-height: 0;
    clear: both;
    display: block;
    width: 100%;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86),opacity 0.8s cubic-bezier(0.79, 0.14, 0.15, 0.86);
  }
  #mainMenu nav {
    line-height: 40px;
    float: none;
    margin: 0 auto;
    width: 50%;
    text-align: center;
    transition: 0.7s ease;
    opacity: 0;
    transform: translateY(-18px);
  }
  .mainMenu-open #header #mainMenu {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    overflow-y: scroll;
    max-height: 0;
    clear: both;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.2s cubic-bezier(0.79, 0.14, 0.15, 0.86),
      opacity 0.2s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    min-height: 100vh;
    left: 0;
    background-color: rgba(217, 54, 17, 0.8);
  }
  #mainMenu.menu-animate nav {
    opacity: 1;
    transform: translateY(0);
  }
  #mainMenu nav > ul {
    float: none;
    width: 100%;
  }
  #mainMenu:not(.menu-overlay) nav > ul > li {
    padding: 0;
    margin: 0;
    clear: both;
    float: none;
    display: block;
    border: 0;
  }
  #mainMenu nav > ul > li > a {
    font-size: 1.6rem;
  }
  #header #mainMenu {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: scroll;
    background-color: var(--cor-primaria);
  }
}
@media (max-width: 768px) {
  #header #logo {
    text-align: left;
  }
  #header .header-content #logo {
    float: left;
  }
  #header .header-content #logo img {
    padding: 20px;
    padding-left: 0;
  }
  #mainMenu nav {
    line-height: 40px;
    float: none;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    transition: 0.7s ease;
    opacity: 0;
    transform: translateY(-18px);
  }
}
/********** FOOTER *************/
footer {
  background-color: #0d1333;
  width: 100%;
  position: relative;
}
footer .widget.widget-p {
  padding: 0 20px;
}
footer .widget ul.contact {
  margin-top: 5px;
}
footer .widget ul {
  display: block;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  clear: both;
  position: relative;
}
footer .widget ul.contact a,
footer .widget ul.contact li {
  color: var(--light);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  word-break: break-all;
}
footer .widget ul li.separator {
  padding-top: 10px;
}

.social-icons li {
  float: left;
  list-style: none;
}
footer .widget .social-icons li a {
  font-size: 30px!important;
  color: var(--light);
  width: 30px;
  height: 30px;
  line-height: 40px;
  float: left;
  text-align: center;
  border-radius: 4px;
  border: 0;
  background: 0 0;
  overflow: hidden;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  margin: 0 4px 0px 0;
}
footer .widget .social-icons li i  {
  width: 30px;
  display: block;
  height: 30px;
}
footer .widget .social-icons li a:hover {
  opacity: 0.7;
}
footer .list li:first-child {
  margin-top: 0;
}
footer .list li {
  margin-top: 10px;
}
footer .list li a {
  font-size: 1.1rem;
  line-height: 1.3;
  display: block;
  color: var(--light);
  font-weight: 400;
}
footer .separator-h:before {
  height: 40px;
  top: -20px;
}
footer .footer-content {
  padding: 80px 0;
}
footer .copyright-content {
  padding: 20px 0;
  background-color: #1a1e24;
  font-size: 13px;
  color: gray;
}
footer .copyright-content, footer .copyright-content a {
  color: var(--light) !important;
}
footer .widget .widget-title,
footer .widget h4 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  text-transform: capitalize;
  line-height: 24px;
  margin-bottom: 10px;
}
footer .widget .widget-subtitle {
  color: var(--light);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
}
.logo-footer {
  width: 95%;
}
footer .widget.redes .widget-title {
  text-transform: inherit;
}
footer .widget.redes .widget-title span {
  font-weight: 100;
}
.copyright-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
footer .copyright-content a {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sm-text-center {
    text-align: center !important;
  }
  .xs-order-1 {
    order: 1;
  }
  .xs-order-2 {
    order: 2;
  }
  .logo-footer {
    width: 60%;
    margin: 0 auto;
  }
  .copyright-text {
    flex-direction: column;
  }
  footer .widget .social-icons {
    display: flex;
    justify-content: center;
  }
  footer .widget .widget-title {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  .xs-text-center {
    text-align: center !important;
  }
}
.button-transparent {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,2555,255,.4);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.button-transparent img {
  height: 20px;
  margin-right: 5px;
}
.button-blue {
  font-size: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--blue);
  background: var(--blue);
  padding: 0.2rem 1rem;
  color: var(--light);
  font-weight: 400;
  transition: background-color 0.2s;
}
.button-blue:hover {
  color: var(--light);
}
.button-blue.large{
  height: 45px;
  letter-spacing: 1px;
  line-height: 45px;
  font-weight: 600 !important;
}
.button-blue.large i {
  font-size: 20px;
  margin-right: 0;
}
.owl-carousel .owl-dots, .owl-carousel .owl-nav {
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}
.owl-carousel .owl-nav button[class*=owl-] {
  margin: -23px -45px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #000;
  background-color: transparent;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 10px;
  width: 50px;
  height: 50px;
  top: 40%;
  cursor: pointer;
  transition: .2s;
  z-index: 200;
  box-sizing: initial;
  opacity: 1;
  line-height: 50px;
}
.owl-carousel .owl-nav button[class*=owl-].disabled {
  display: none;
}
.owl-carousel .owl-nav [class*=owl-] i {
  line-height: 50px;
  font-size: 20px;
  display: block;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
}

.card-image {
  background-color: #eff2ff;
  padding: 60px 40px;
  border-radius: 20px;
}
.d-i-b {
  display: inline-block;
}

/**************** FOOTER ***************/
footer .footer-content{
  background-color: #000;
  padding: 60px 0;
}
footer .copyright-content {
  padding: 20px 0;
  background-color: #0b0b0b;
  font-size: 13px;
}
footer .copyright-content .copyright-text, footer .copyright-content a{
  color: gray;
}
.logo-footer {
  width: auto;
  height: 14px;
  padding-left: 5px;
}
.list-icon {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  clear: both;
  display: block;
  position: relative;
}
.list-icon a, .list-icon li {
  color: var(--light);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-size: 1rem;
  word-break: break-all;
}
.button.blue {
  background-color: #41a5db;
  border-color: #3ca0d6;
  color: #fff !important;
}
.button.category {
  color: #41a5db;
  border-color: #3ca0d6;
}
.btn-whatsapp {
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translate(-50%, -50%);
  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 58px;
  font-size: 1.8em;
  color: #ffffff;
  font-weight: 100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.btn-whatsapp:before, .btn-whatsapp:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  left: -20px;
  right: -20px;
  bottom: -20px;
  top: -20px;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}
.pulsaDelay:after {
  animation-delay: .5s;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}