
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-display: swap;
}

body{
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.bg_fundo {
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

/*CSS Barra de rolagem*/
::-webkit-scrollbar {
  width: 14px;
  height: 12px;
}


/* Polegar da barra de rolagem (a parte que se move) */
::-webkit-scrollbar-thumb {
  background: var(--color_principal);
  border-radius: 3px;
}

/* Polegar da barra de rolagem ao passar o mouse */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--hover);
}


.lb-dataContainer{
  width: 95% !important;
  /* border: 1px solid rgb(255, 0, 106); */
  font-family: var(--titulo);
  position: absolute;
  top: -45px;
  padding-top: 10px;
}

.lb-caption{
  display: none !important;
}

.lb-next,
.lb-prev{
  width: 20% !important;
  opacity: 1 !important;
}


.lb-number{
  width: 30%;
  margin: 0 auto;
  text-align: end;
  /* border: 1px solid red; */
  color: white !important;
}

.lb-outerContainer{
  width: 75% !important;
  height: 55% !important;
  /* border: 2px solid red; */
}

.lb-outerContainer img{
  width: 100% !important;
  height: 100% !important;
}



#lightboxOverlay{
  background-color: #000000;
  opacity: 0.9;
}


.remover{
  /* opacity: 0 !important; */
  display: none !important;
}

.exibir{
  /* opacity: 1 !important; */
  display: block !important;
}


.lista-img-container {
  background-color: rgb(0, 0, 0);
  width: 100vw;
  position: fixed;
  top: 0px;
  overflow-y: scroll;
  /* opacity: 0; */
  display: none;
  z-index: 999999;
  height: 100%;
  padding: 20px;
}

.lista-img-container h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin: 20px;
  font-weight: 400;
  font-family: var(--titulo);
}


.close-lista-imagens {
  width: 35px;
  height: 35px;
  margin: 0px 19px 0px auto;
  display: block;
  border: none;
  position: fixed;
  right: 0px;
  top: 20px;
  background: #212528c9;
  cursor: pointer;
}


.lista-img {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lista-img img {
  max-width: 340px;
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  cursor: pointer;
}

.lb-image{
  max-height: 800px !important;
  border: none !important;
}



.lightbox .lb-image{
  border: none;
}

#lightbox > div.lb-outerContainer > div > div.lb-loader{
  display: none !important;
}

.lb-outerContainer{
  background-color: #15151586;
}



.lightboxOverlay{
  display: none;
}





.sessao_inicial{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.opcoes{
  width: 0%;
  height: 100vh;
  position: fixed;
  right: -200px;
  z-index: 5;
  transition: .5s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  background-color: #151515;
}

.opcoes ul{
  width: 100%;
  height: 40%;
  position: relative;
  top: 150px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.opcoes ul li{
  width: 80%;
}

.opcoes ul a{
  font-size: 20px;
  text-decoration: none;
  color: #EAEAEA;
  font-family: var(--titulo);
  position: relative;
  right: -150%;
  transition: .5s ease;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.opcoes i{
  height: 50px;
  width: 95%;
  font-size: 30px;
  position: relative;
  right: 0;
  color: #EAEAEA;
  text-align: end;
  margin-top: 8px;
}


.btn_fale i{
  color: var(--fundo);
  font-size: 26px;
  display: none;
}


header {
  height: auto;
  width: 100%;
  border-bottom: 1px solid var(--color_principal);
  padding: 20px 0px;
}

.container {
  height: 100%;
  width: 90%;
  margin: 0 auto;
  max-width: 1260px;
  display: flex;

}

.logo {
  display: flex;
  align-items: center;
  justify-content: start;
}

.logo img{
  max-width: 100%;
  max-height: 150px;
}
/* 
nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav ul {
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  height: 50px;
} */

nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    display: flex;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
    gap: 15px;
}

.btn_fale {
    margin-left: auto;
}

nav ul a {
  text-decoration: none;
  color: #EAEAEA;
  position: relative;
  top: -80px;
  transition: .5s ease-in-out;
  font-family:var(--titulo)

}

nav ul a::after{
  content: '';
  width: 0%;
  height: 1px;
  display: block;
  background-color: var(--color_principal);
  transition: .5s;
}


nav ul a:hover::after{
  width: 100%;
}

nav ul a:hover{
  color: white;
}


.btn_fale {
  width: 40%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
}

.btn_fale a{
  width: 50%;
  height: 100%;
}

.btn_fale button {
  width: 100%;
  height: 100%;
  background-color: var(--color_principal);
  color: white;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  cursor: pointer;
  transition: .5s;
  text-shadow: 0px 1px 2px #151515c9;
  font-family:var(--titulo)
}

.container_inicial{
    width: 90%;
    height: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    /* border: 1px solid green; */
}

.pai_texto_inicial{
    width: 70%;
    /* border: 2px solid rgb(254, 0, 0); */
    display: flex;
    align-items: center;
    justify-content: end;
}

.pai_texto_inicial div{
    width: 60%;
    height: auto;
    color: white;
}

.pai_texto_inicial div h1{
    font-size: 48px;
    line-height: 56px;
    overflow: hidden;
    font-weight: 500;
    font-family:var(--titulo);
    overflow-wrap: anywhere;
}

.form_inicial{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.pai_form_inicial {
    width: 90%;
    height: auto;
    border: 1px solid transparent;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    padding: 15px;
    border-radius: 2px;
}

.detalhe_form{
    width: 200px;
    height: 25px;
    position: absolute;
    right: -70px;
    background-color: var(--color_principal);
    transform: rotate(45deg);
}

.pai_form_inicial form{
    width: 100%;
    height: 100%;
    padding-bottom: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.input_form,
.titulo_form,
.input_valida{
    width: 80%;
    margin: 0 auto;
    margin-top: 10px;
}

.input_valida p{
  font-family: var(--textos_gerais);
}

.titulo_form{
    width: 80%;
    margin: 0 auto;
    text-align: center;
    color: #7A7A7A;
    padding: 0px;
  
  
}

.titulo_form p:nth-child(1){
    font-size: 20px;
    font-weight: 400;
    font-family:var(--titulo)
}

.titulo_form p:nth-child(2){
  font-family:var(--textos_gerais)
}

.input_valida{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input_valida p{
    color: #7A7A7A;
}



.input_form input,
.input_form textarea,
.input_form button{
    width: 100%;
    padding: 10px;
    border: 1px solid #CFCFCF;
    outline-color: var(--color_principal);
    border-radius: 3px;
    font-family: var(--textos_gerais);
}

.input_valida input{
  width: 50%;
  padding: 10px;
  border: 1px solid #CFCFCF;
  font-size: 16px;
  outline-color: var(--color_principal);
  border-radius: 3px;
  font-family: var(--textos_gerais);
}

.input_form button{
    background-color: var(--color_principal);
    color:white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
    text-shadow: 0px 1px 2px #151515c9;
    font-family:var(--titulo);
}

.input_form button:hover,
.btn_fale button:hover,
.btn_info button:hover {
background-color: var(--hover);
}

.informacoes{
    width: 100%;
    height: auto;
    background-color: var(--fundo);
    padding:10px;
    /* margin-top: 5px; */
    /* border: 1px solid red; */
}

.container_info {
    height: 100%;
    width: 90%;
    margin: 0 auto;
    max-width: 1260px;
    /* border: 1px solid rgb(255, 0, 0); */
    padding:10px;
    padding-bottom: 30px;
    position: relative;
    
  }

  .detalhe_imovel_svg{
    position: absolute;
    left: 0px;
  }

  .detalhe_imovel_svg2{
    position: absolute;
    right: 0px;
    bottom: 20px;
  }

  .container_info h2{
    width: 80%;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    color: var(--color_principal);
    margin-bottom: 4px;
    text-shadow: 0px 1px 1px #15151560;
    font-family: var(--destaque);
    margin-top: 15px;
    overflow-wrap: anywhere;
  }

  .container_info p{
    color: var(--texto);
    width: 80%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 2px;
    font-size: 16px;
    font-family: var(--textos_gerais);
    margin-bottom: 15px;
  }

  .detalhe_svg{
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 20px;
  }

  .video_ht{
    width: 55%;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
    /* border: 1px solid red; */
    text-align: center;
  }

  .video_ht iframe{
    width: 100%;
    height: 380px;
    border-radius: 2px;
    /* display: none; */
  }

  .btn_info{
    width: 250px;
    height: 60px;
    margin: 0 auto;
    margin-top: 24px;
    /* border: 1px solid red; */
    text-align: center;
  }

  .btn_info button{
    background-color: var(--color_principal);
    border: none;
    padding: 10px;
    color:  white;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    font-family:var(--titulo)
  }

  .imagens{
    width: 100%;
    height: auto;
    padding: 0px;
    margin: 0px;
    position: relative;
    background-color: var(--fundo-secundario);
  }

  .container_imagens{
    width: 100%;
    height: auto;
   
  }

  .titulo_imagens{
    width: 90%;
    max-width: 1260px;
    height: 100px;
    margin: 0 auto;
    /* background-color: rgb(223, 10, 10); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .titulo_imagens h3{
    font-size: 28px;
    font-weight: 300;
    color: var(--texto);
    position: relative;
    font-family: var(--titulo);

  }




.imagens_principal {
  width: 90%;
  max-width: 1260px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: var(--fundo-secundario);
}

.imagens_principal::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #151515;
  opacity: 0.0; 
  transition: opacity .5s;
  pointer-events: none;
  z-index: 2;
}

.imagens_principal:hover::after{
  opacity: 0.1;
}

.imagens_principal:hover .seta_carrossel svg {
  opacity: 1;
}


/* paulo */
.seta_carrossel{
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
 pointer-events: none;

}

.seta_carrossel div {
  pointer-events: auto;
}

.seta_carrossel div{
  width: 60px;
  height: 100%;
  /* border: 1px solid black; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.seta_carrossel svg{
  opacity: 0;
  transition: .5s;
}


.seta_carrossel div i{
  color: #FFFFFF;
  font-size: 48px;
  transition: .5s ease;
}

.seta_carrossel div:hover i{
  scale: 1.1;
  color: var(--color_principal);
}

.pai_imagens_carrossel{
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  transition: .7s ease;
}


.pai_imagens_carrossel a {
  width: 100%;
  height: 100%;
  max-height: 600px;
  flex: 0 0 100%;
  z-index: 1;
  pointer-events: auto; 
  overflow: hidden;
}


/* height: auto */
.pai_imagens_carrossel img{
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  
}


/* Auto */
.conteudo_imagens{
  width: 100%;
  min-height: 600px;
  height: auto;
  padding-bottom: 25px;
  /* border: 1px solid red; */
  background-color: var(--fundo);
  /* background-color: red; */
}


.container_radios{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: end; 
}


.pai_radios{
  width: 90%;
  max-width: 1260px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.radio_carrossel {
  appearance: none; 
  -webkit-appearance: none;
  width: 13px; 
  height: 13px;
  border-radius: 50%; 
  background-color: #E2E2E2;
  cursor: pointer; 
  margin-right: 10px;
  position: relative;
}

.radio_carrossel::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #525252;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; 
  transition: opacity 0.3s ease; 
}

.radio_carrossel:checked::after {
  opacity: 1;
}


.texto_imagens{
  width: 90%;
  height: auto;
  margin: 0 auto;
  max-width: 1260px;
  display: flex;
  justify-content: end;
  position: relative;
  padding: 20px 5px;
}

.texto_imagens div:nth-child(2){
  width: 60%;
  height: auto;
  padding: 25px 10px;
  
}

.texto_imagens div h3{
  font-size: 54px;
  line-height: 56px;
  font-weight: 400;
  overflow: hidden;
  color: var(--texto);
  margin-bottom: 25px;
  font-family: var(--titulo);
}

.texto_imagens div p{
  color: var(--texto);
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: var(--textos_gerais);
}

.carrossel_secundario{
  position: absolute;
  left: 0px;
  width: 35%;
  max-height: 550px;
  background-color: var(--fundo);
  z-index: 6;
  padding-top: 5px;
  border-radius:  3px;
  overflow: hidden;
}

.pai_imagens_secunda {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: baseline;
}

#descricao > div > div.carrossel_secundario.aos-init.aos-animate > div > a:nth-child(1),
#descricao > div > div.carrossel_secundario.aos-init.aos-animate > div > a:nth-child(4){
  width: 100%;
}


#descricao > div > div.carrossel_secundario.aos-init.aos-animate > div > a:nth-child(2),
#descricao > div > div.carrossel_secundario.aos-init.aos-animate > div > a:nth-child(3){
  width: 49%;
}

.pai_imagens_secunda img {
  width: 100%;
  height: 170px;
  margin-top: 6px;
  object-fit: cover;
  transition: .5s;
}

.pai_imagens_secunda img:hover{
  scale: 1.02;
}

.form_localizacao{
  height: 600px;
  width: 100%;
  display: flex;
  justify-content: end;
  position: relative;
  background-color: var(--fundo-secundario);
}


.container_form_loca{
  width: 90%;
  height: auto;
  margin: 0 auto;
  max-width: 1260px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
}


.form{
  width: 50%;
  background-color: var(--color_principal);
}




.pai_form{
  width: 25%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pai_form h3{
  width: 40%;
  font-size: 32px;
  line-height: 34px;
  font-weight: 300;
  margin-bottom: 10px;
  font-family: var(--titulo);
}

.pai_form form{
  width: 100%;
  height: auto !important;
 
}

.pai_input{
  width: 100%;
  height: 45px;
  margin: 0 auto;
  margin-bottom: 5px;
}

.pai_text_area{
  width: 100%;
}



.pai_valida{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  
}

.pai_valida span{
  font-size: 16px;
  font-family: var(--textos_gerais);
}

.pai_valida input{
  width: 40%;
  padding: 8px;
  border: none;
  border-radius: 2px;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--textos_gerais);
}



.pai_text_area textarea{
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 2px;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--textos_gerais);
}


.pai_input input{
  font-weight: 300;
  font-family: var(--textos_gerais);
}

.pai_input input,
.pai_input button{
  width: 100%;
  height: 100%;
  padding: 8px;
  border: none;
  border-radius: 2px;
  outline: none;
  font-size: 16px;
}


.pai_input button{

  background-color: var(--hover);
  color: var(--color_principal);

  cursor: pointer;
  transition: .5s;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--titulo);
}

.pai_input button:hover{
  background-color: var(--fundo);
  color: var(--texto);
}



.mapa{
  width: 65%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mapa .pai_iframe{
  width: 60%;
  height: 100%;

}

.pai_iframe iframe{
  width: 100%;
  height: 100%;
}

.dados{
  width: 40%;
  height: 100%;
  background-color: rgb(253, 253, 253);
  display: flex;
  flex-direction: column;
}

.info_loca{
  width: 85%;
  height: auto;
  margin: 0 auto;
  padding: 15px 5px;
  
}

.info_loca:nth-child(1){
  border-bottom: 1px solid var(--color_principal);
  margin-top: 24px;
}

.info_loca:nth-child(1) p{
  font-size: 18px;
  color: #8F8F8F;
  padding-top: 10px;
  font-family: var(--textos_gerais);
 
}

.info_loca h4{
  color: #525252;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--titulo);
}

.info_loca a{
  text-decoration: none;
  color: #525252;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-family: var(--textos_gerais);
  
}


.info_loca a i{
  color: var(--color_principal);
}

body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados.aos-init.aos-animate > div:nth-child(2){
  border-bottom: 1px solid var(--color_principal);

}

body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(3) > p{
  font-size: 18px;
  color: #8F8F8F;
  padding-top: 10px;
  font-family: var(--textos_gerais);
}

body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(3) > p > i{
  color: var(--color_principal);
}

footer{
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--fundo);
  padding: 30px 0px;
}

body > footer > a > img{
  max-width: 150px;
}

.texto_rodape{
  width: 90%;
  max-width: 1260px;
  text-align: center;
  color: var(--texto);
  font-family: var(--titulo);
  font-size: 16px;
  font-weight: 400;
}



.pai_tour iframe{
  width: 100%;
  height: 100%;
}



.float-whatsapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 15px;
  left: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 40;
  cursor: pointer;
}

.my-icon-whatsapp {
  margin-top: 15px;
}

.pulse {
  font-family: Arial;
  line-height: 1.5;
  font-size: 12px;
  font-weight: bold;
  float: left;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: red;
  cursor: pointer;
  box-shadow: 0 0 0 #E91E63;
  animation: pulse 2s infinite;
  z-index: 9999;
  position: absolute;
}

@keyframes pulse{
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.6);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.6);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 10px rgba(233, 30, 99, 0);
  }
  100% {
    moz-box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
  }
}




#localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(2) > a:nth-child(2) > p{
  overflow-wrap: anywhere;
  font-size: 15px;
}

#descricao > div > div:nth-child(2) > h3{
  height: auto;
  padding: 5px
}

.carrossel_secundario{
  height: auto !important;
}



.main__form__captcha{
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/* Responsividade */
@media (max-width:1030px) {

  .btn_fale a{
    width: 85%;
  }

  nav ul{
    font-size: 14px;
  }

  /* nav ul a{
    font-size: 15px;
  } */

  .btn_fale{
    width: 25%;
  
  }

  .btn_fale button{
    width: 100%;
  }

  .pai_texto_inicial{
    width: 65%;
  }

  .form_inicial{
    width: 35%;
  }

  .pai_texto_inicial div{
    width: 75%;
  }

  .pai_texto_inicial div h1{
    font-size: 40px;
    line-height: 48px;
  }

  .pai_form_inicial {
    width: 100%;
  }

  .titulo_form {
    width: 90%;
  }

  .detalhe_form{
    right: -95px;
  }

  .titulo_form p:nth-child(1){
    font-size: 18px;
    font-weight: 400;
    font-family:var(--titulo)
}

.input_form,
.input_valida{
  width: 90%;
  margin-top: 6px;
}


.video_ht{
  width: 85%;
  height: auto;
  /* border: 1px solid red; */
}

.carrossel_secundario{
  width: 35%;
}


.texto_imagens div h3{
  font-size: 48px;
  line-height: 48px;
}

.texto_imagens div p{
  font-size: 16px;
}

.mapa{
  width: 70%;
}

.mapa .pai_iframe{
  width: 55%;
  height: 100%;

}

.dados {
  width: 45%;
}

.info_loca p{
  font-size: 14px !important;
}

.info_loca i{
  font-size: 10px;
}

}



@media (max-width:920px) {
  
  .btn_fale a{
    display: none;
  }

  .btn_fale i{
    display: block;
  }

  nav {
    justify-content: end;
  }
  nav ul {
    display: none;
  }


  .opcoes_open{
    width: 50%;
    opacity: 1;
    right: 0px;
  }

  .pai_texto_inicial{
    width: 60%;
    justify-content: center;
    /* border: 1px solid green; */
  }

  .pai_texto_inicial div{
    width: 90%;
    /* border: 1px solid red; */
  }

  .pai_texto_inicial div h1{
    font-size: 36px;
  }

  .form_inicial{
    width: 40%;
  }



  .container_info h2{
    width: 95%;
    font-size: 34px;
    margin-bottom: 10px;
  }

  .container_info p{
    width: 95%;
    font-size: 15px;
  }

  .detalhe_imovel_svg,
  .detalhe_imovel_svg2{
    width: 40px;
  }

.detalhe_svg{
  width: 100%;
}

body > section.informacoes > div > div.detalhe_svg.aos-init.aos-animate > svg:nth-child(1),
body > section.informacoes > div > div.detalhe_svg.aos-init.aos-animate > svg:nth-child(3){
  width: 240px;
}

.video_ht{
  width: 100%;
} 

.carrossel_secundario{
  width: 40%;
}

.texto_imagens div h3{
  font-size: 40px;
  line-height: 40px;
}

.texto_imagens div p{
  font-size: 15px;
}

.pai_form{
  width: 29%;

}

.info_loca p{
  font-size: 13px !important;
}

#lightbox{
  margin-top: 150px;
}



.lb-outerContainer{
  width: 90% !important;
  height: 70% !important;
  /* border: 2px solid red; */
}

.container_radios{
  display: none;
}

.pai_imagens_carrossel{
  transition: .5s ease;
}


}



@media (max-width: 768px){
  .mapa .pai_iframe {
    width: 48%;
  }

  .dados{
    width: 52%;
  }

  .info_loca{
    width: 94%;
  }

}



@media (max-width: 695px) {

  .pai_imagens_carrossel a {
    height: 230px;
  }

  .container_imagens{
    padding-bottom: 70px;
  }

  .opcoes_open{
    width: 100%;
  }

  .container,
  .container_inicial,
  .container_imagens,
  .texto_imagens,
  .container_form_loca{
    width: 96%;
    margin: 0 auto;
  
  }

  .container_info{
    width: 99%;
  
  }
  
  .container_inicial{
    flex-direction: column;
    align-items: center;
  }

  .pai_texto_inicial{
    width: 80%;
    margin-top: 15%;
  }

  .pai_texto_inicial div{
    width: 100%;
    margin-top: 16px;
  }

  .pai_texto_inicial div h1{
    font-size: 28px;
    line-height: 32px;
    text-align: center;
  }

  .form_inicial{
    width: 60%;
    margin-top: 16px;
    /* border: 1px solid rgb(10, 236, 63); */
  }


  .detalhe_imovel_svg,
  .detalhe_imovel_svg2{
    display: none;
  }

  .container_info h2{
    width: 100%;
    font-size: 30px;
    margin-bottom: 10px;
  }

  .container_info p{
    width: 100%;
    font-size: 15px;
  }

  body > section.informacoes > div > div.detalhe_svg.aos-init.aos-animate > svg:nth-child(1),
body > section.informacoes > div > div.detalhe_svg.aos-init.aos-animate > svg:nth-child(3){
  width: 120px;
}

.video_ht {
  height: 250px;
}

.video_ht iframe{
  height: 100%;
  width: 90%;

}

.texto_imagens{

  flex-direction: column-reverse;
  align-items: center;
}

body > section.imagens > div.conteudo_imagens > div > div:nth-child(2){
  width: 95%;
  /* border: 2px solid green; */
}

.carrossel_secundario {
  position: relative;
  width: 65%;
  margin: 0 auto;

}

.pai_imagens_secunda{
  width: 100%;
  text-align: center;
}

.form_localizacao{
  height: 900px;
}

.form {
  width: 100%;
  height: 50%;
}

.pai_form{
  width: 40%;
  height: 40%;
}

.pai_form h3{
  font-size: 24px;
  line-height: 30px;
}

.pai_form form{
  height: 100%;
  /* border: 2px solid rgb(0, 255, 85); */
}



.mapa{
  height: 47%;

}

.container_form_loca{
  height: 85%;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
}

.float-whatsapp{
  width: 45px;
  height: 45px;
  bottom: 7px;
  left: 85%;
}

.my-icon-whatsapp {
  margin-top: 7px;
}

.info_loca {
  width: 90% !important;
}

.mapa {
  width: 80% !important;
}

.pai_iframe{
  margin-top: 10px !important;
}


}





@media (max-width:510px) {

  #localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(2) > a:nth-child(2) > p,
#localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(2) > a:nth-child(3)> p{
  font-size: 15px !important;
}
  
  .video_ht {
    height: 250px;
  }
  
  .video_ht iframe{
    height: 100%;
    width: 100%;
  
  }

  .carrossel_secundario {
    position: relative;
    width: 90%;
    margin: 0 auto;
  
  }

  .dados {
    height: 60% !important;
    width: 100% !important;
  }

  .info_loca{
    width: 100%;
    padding: 5px;
  }

  body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados.aos-init.aos-animate > div:nth-child(1){
    margin-top: 0px;
  }

  .mapa{
    width: 95% !important;
    flex-direction: column-reverse;
  }

  body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(1){
    margin-top: 0px;
    height: auto;
  }
  
  
  .pai_iframe{
    width: 100% !important;
    height: 50% !important;
  }


  .info_loca:nth-child(1) p{
    padding-top: 5px;   
  }


  .info_loca h4{
    font-size: 24px;
  }
  
  body > section.form_localizacao > div.container_form_loca > div.mapa > div.dados.aos-init.aos-animate > div:nth-child(2){

    height: 100px;
  }

  .info_loca a{
    margin-top: 2px;
    padding: 5px;
  }

  .titulo_imagens h3{
    font-size: 25px;
  }

  
  .titulo_imagens,
  .container_radios{
    height: 70px;
  }


}





@media (max-width:472px) {

  .lb-dataContainer{
    width: 100% !important;
   /* border: 2px solid red; */
  }

  .lb-number{
    width: 50% !important;
  }


  .lb-outerContainer{
    width: 85% !important;
    height: 60% !important;
    
    
  }

  .lb-next,
  .lb-prev{
    background-size: 30px !important;
  }

 

  .container_imagens{
    width: 100%;
  
  }

  .imagens_principal{
    width: 96%;
  }

  .seta_carrossel div i{
    font-size: 32px;
  }


  .radio_carrossel {
    width: 12px; 
    height: 12px;
  }
  
  .radio_carrossel::after {
    width: 13px;
    height: 13px;
  }

  .pai_form{
    width: 60%;
    height: auto;
  }


  .container_form_loca {
    height: 95% !important;
  }

  .my-icon-whatsapp{
    width: 22px !important;
    height: 22px !important;
    margin-top: 10px !important;
  }


}


@media (max-width:434px){
  
  .pai_texto_inicial{
    width: 90%;
  }

  .form_inicial{
    width: 72%;
  }

  .container_info p{
    font-size: 14px;
  }

  .video_ht {
    height: 200px;
  }

  .logo a svg{
    max-width: 200px;
    /* border: 2px solid red; */
  }

  .form_inicial{
    width: 80%;
  }

  .pai_texto_inicial div h1{
    font-size: 22px;
    line-height: 26px;
  }

  .titulo_form p{
    font-size: 14px !important;
  }

  body > section.sessao_inicial > div.container_inicial > div.form_inicial > div > form > div:nth-child(7) > button{
    font-size: 15px;
  }

  .container_info p{
    /* border: 1px solid red; */
    font-size: 13px;
  }

  
  .texto_rodape{
    font-size: 14px;
  }
 
  .container_imagens{
    padding-bottom: 40px;
  }

  .texto_rodape{
    width: 80%;
    margin: 0 auto;
    overflow-wrap: anywhere;
  }


  .float-whatsapp{
    width: 43px;
    left: 83%;
  }

  .pai_form{
    width: 70%;
    height: auto;
  }

  .mapa{
    width: 100% !important;
  }


  .info_loca:nth-child(1) p{
    font-size: 12px !important;
  }

  #localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(2) > a:nth-child(2) > p,
  #localizacao > div.container_form_loca > div.mapa > div.dados > div:nth-child(2) > a:nth-child(3) > p{
    font-size: 12px !important;
  }

}