@charset "UTF-8";
/* CSS Document */

* {
  box-sizing: border-box;
  min-width: 0;
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 13px;
  font-weight: 300;
  /*background-color: #fbfbfb;*/
}

a,
a:link {
  color: #4474bb;
}

a:visited {
  color: #4474bb;
}

a:hover {
  color: #365c96;
}

a:active {
  color: #365c96;
}

strong {
  font-weight: 500;
}

.fa-angle-right {
  background-image: url(../img/angle-right.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-position: center;
}

.fa-angle-left {
  background-image: url(../img/angle-left.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
  background-position: center;
}

.btn-primary {
  color: #fff;
  background-color: #d70074;
  border-color: #b8005b;
}

.btn-primary:active:hover, .btn-primary.active:hover, .open>.dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open>.dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open>.dropdown-toggle.btn-primary.focus,
.btn-primary:focus, .btn-primary:hover, .btn-primary:active, .btn-primary:active:hover {
  color: #fff;
  background-color: #c20067;
  border-color: #a30052;
}

.btn-default:focus {
  outline: none !important;
}

.btn-default.active {
  color: #333;
  background-color: #ebebeb !important;
  border-color: #5f89c7 !important;
  outline: none !important;
  border-bottom: 3px solid #5f89c7;
  box-shadow: none;
}

.contenedor {
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  max-width: 1400px;
  min-width: 310px;
}

.cabezal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  flex-direction: row-reverse;
  margin-bottom: 50px;
}

.boton_login {
}

.logo {
  width: 164px;
  height: 38px;
  background-image: url(../img/logo.svg);
  background-size: 164px 38px;
  display: block;
  margin-right: 20px;
  background-repeat: no-repeat;
}

.logo_texto {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cabezal .redes {
  float: right;
}

.cabezal .botonera {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;  
}

.cabezal .botonera a {
  font-size: 14px;
}

.cabezal .botonera .indicador_numero {
  background-color: #c30064;
  border-radius: 100%;
  color: #fff;
  font-size: 11px;
  margin-left: 4px;
  width: 18px;
  height: 18px;
  display: inline-block;
  line-height: 19px;
  text-align: center;
  position: relative;
  top: -1px;
}

.titulo_seccion {
  margin: 40px 0 10px 0;
  position: relative;
  min-height: 30px;
}

.titulo_seccion .volver {
  float: right;
}

.titulo_seccion h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 18px;
  margin-right: 120px;
  bottom: 0;
  overflow: hidden;
  line-height: 21px;
}

.separador {
  height: 1px;
  margin-bottom: 20px;
  clear: both;
}

.separador_linea {
  border-bottom: 1px solid #ddd;
  height: 1px;
  margin-bottom: 20px;
  clear: both;
}

.contenedor_inmobiliaria_buscador {
  background: rgb(95,137,198);
  background: radial-gradient(circle, #7c9dd0 0%, #a1b9dd 100%);
  padding: 20px 0;
}

.contenedor_inmobiliaria_buscador .contenedor {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.contenedor_inmobiliaria_buscador .contenedor .logo_inmobiliaria {
  display: inline-block;
  background-color: #fff;  
  border: 1px solid #b4c7e4;  
  border-radius: 6px;
}

.contenedor_inmobiliaria_buscador .contenedor .logo_inmobiliaria img {
  height: 150px;
}

.contenedor_inmobiliaria_buscador .nombre_inmobiliaria {
  font-size: 24px;
  color: #fff;
  font-weight: normal;
  text-shadow: 0 0 1px #777;
}

@media (max-width: 600px) {

  .contenedor_inmobiliaria_buscador .contenedor {
    gap: 20px;
  }

  .contenedor_inmobiliaria_buscador .contenedor .logo_inmobiliaria img {
    height: 100px;
  }

  .contenedor_inmobiliaria_buscador .nombre_inmobiliaria {
    font-size: 22px;
  }

}


.contenido {
  min-height: 300px;
}

.contenido_buscador {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.contenido_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 30px;
}

.favorito {
  width: 46px;
  height: 46px;
  background-image: url(../img/corazon-agregar.svg);
  background-size: 22px 22px;
  /*background-color: rgb(0 0 0 / 25%);*/
  border-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
}

.imagen .favorito {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}

.favorito_seleccionado {
    animation: cambiar_favorito 0.3s forwards;
    background-image: url(../img/corazon-quitar.svg);
}

@keyframes cambiar_favorito {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1.0);
        
    }
}

.imagen .info_cantidad {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 5;
  border: 1px solid #ccc;
  background-color: #fffb;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 3;  
}

#mapa_chico {
  height: 280px;
}

#mapa_chico_cont {
  width: 100%;
  height: 280px;
  border: 1px solid #f1f1f1;
  position: relative;
  border-radius: 4px;  
  background-color: #f9f9f9;  
  overflow: hidden;
}

#mapa_chico_cont .info_texto {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 5;
  border: 1px solid #ccc;
  background-color: #fffb;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  z-index: 3;  
}

#mapa_fondo {
  display: none; 
  position:fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 100;
  background: #fffe;
}

#mapa_cerrar_fondo {
  position:absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 101;
}

.mapa_popup {
  width: 100%; 
  height: 100%; 
  max-width: 1000px; 
  max-height: 500px; 
  /*margin: 0 auto;*/ 
  border: 1px solid #ddd;
  border-radius: 6px;  
  overflow: hidden;
  background-color: #f9f9f9;  
  box-shadow: 0px 0px 2px 1px #5f89c7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  z-index: 102;
}

.titulo_largo h1 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 18px;
  max-height: 42px;
  position: absolute;
  bottom: 0;
  overflow: hidden;
  line-height: 21px;
}

.ficha .col_left {
  float: left;
  width: 65%;
  padding-right: 30px;
}

.ficha .col_right {
  float: left;
  width: 35%;
}

.ficha .col_g_2 {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.ficha .col_v {
  float: left;
  width: 60%;
  padding: 0 5px 10px 0;
}

.ficha .col_a {
  float: left;
  width: 40%;
  padding: 0 0 10px 0;
}

.ficha .col_2 {
  float: left;
  width: 50%;
  padding: 0 5px 10px 5px;
}

.ficha .col_3 {
  float: left;
  width: 33%;
  padding: 0 5px 10px 5px;
}

.ficha .imagen {
  width: 100%;
  height: 420px;

  background-size: cover;
  background-position: 50% 50%;

  border: 1px solid #f1f1f1;

  position: relative;

  border-radius: 4px;
}

.ficha .titulo_1 {
  font-size: 25px;
}

.ficha .titulo_1_5 {
  font-size: 18px;
}

.ficha .titulo_2 {
  font-size: 16px;
}

.ficha .titulo_3 {
  font-size: 14px;
}

.ficha .dato {
  width: 33%;
  padding-right: 5px;
  margin-bottom: 20px;
  float: left;
  height: 38px;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

.ficha .dato img {
  width: 18px;
  margin-right: 5px;
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.ficha .dato span {
  display: block;
  margin-bottom: 2px;
  font-weight: normal;
  font-size: 12px;
}

.ficha .f_label {
  margin-bottom: 6px;
}

.ficha .f_control {
  margin-bottom: 15px;
}

.ficha .contenido_descripcion {
  font-size: 14px;
}


.ficha .video {
  aspect-ratio: 16 / 9;
}

.ficha .video {
  float: left;
  width: 50%;
  position: relative;
}

.ficha .video div {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.ficha .video div iframe {
  width: 100%;  
  height: 100%;  
}

.ficha .contenedor_boton {

  text-align: right;

}

.ficha .contenedor_boton button {

  width: 100%;
  max-width: 180px;

}

@supports not (aspect-ratio: 16 / 9) {
  
  .ficha .video::before {
    float: left;
    padding-top: 56.25%;
    content: "";
  }

  .ficha .video::after {
    display: block;
    content: "";
    clear: both;
  }

}

.ficha .foto {
  aspect-ratio: 4 / 3;
}

.ficha .foto {
  float: left;
  width: 50%;
  position: relative;
}

.ficha .foto div {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;  
}


@supports not (aspect-ratio: 4 / 3) {
  
  .ficha .foto::before {
    float: left;
    padding-top: 75%;
    content: "";
  }

  .ficha .foto::after {
    display: block;
    content: "";
    clear: both;
  }

}


.info_full {
  display: block;
}

.info_min {
  display: none;
}

.form-control-min {
  height: 32px;
  padding: 6px 10px;
  font-size: 13px;
}

.texto_centrado {
  text-align: center;
  width: 100%;
}

.mensaje_listado {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

.paginado {
  height: 60px;
  background-color: #f6f6f6;
  border: 1px solid #ebebeb;
  margin: 20px 0;
  border-radius: 8px;
}

.paginado_cont {
  margin: 0 auto;
  width: 280px;
  height: 60px;
}

.paginado_link {
  height: 60px;
  line-height: 60px;
  width: 80px;
  float: left;
}

.paginado_link a {
  color: #2e6da4;
}

.paginado_link a:hover {
  color: #3c87c8;
}

.paginado_sel {
  float: left;
  width: 60px;
  height: 40px;
  margin-top: 13px;
}

.paginado_cant {
  float: left;
  height: 60px;
  line-height: 60px;
  width: 40px;
  margin-left: 5px;
}

.pie {
  width: 100%;
  margin: 120px auto 0 auto;
  /* border-top: 1px solid #eee; */
  height: 80px;
  color: #444;  
}

.pie .datos {
  float: left;
  width: 200px;
}

.pie .idiomas {
  margin-bottom: -20px;
}

@media (max-width: 500px) {

  .pie .idiomas {
    margin-bottom: 10px;
  }

}

.pie a {
}

/*
.pie a,
.pie a:link {
  color: #fff;
}

.pie a:visited {
  color: #fff;
}

.pie a:hover {
  color: #666;
}

.pie a:active {
  color: #666;
}
*/

.pie .idiomas {
  text-align: center;
}

.pie .idiomas a img {
  width: 18px;
  margin-right: 7px;
  vertical-align: sub;
}

.pie .idiomas a:first-child {
  margin-right: 30px;
}

.pie .idiomas a,
.pie .idiomas a:link {
  color: #333;
}

.pie .idiomas a:visited {
  color: #333;
}

.pie .idiomas a:hover {
  color: #666;
}

.pie .idiomas a:active {
  color: #666;
}

.clear {
  clear: both;
  height: 0;
}

.fright {
  float: right;
}

a.sodio {
  width: 25px;
  height: 7px;
  background-image: url("../img/sodio.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 25px 14px;
  display: block;
  float: right;
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 20px;
}

a.sodio:hover,
a.sodio:active {
  background-position: left bottom;
}

a.nai {
  width: 16px;
  height: 10px;
  background-image: url("../img/nai.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 16px 20px;
  display: block;
  float: right;
  margin-top: 4px;
  margin-left: 20px;
  margin-bottom: 20px;
}

a.nai:hover,
a.nai:active {
  background-position: left bottom;
}

.modal-container {
  --modal-transition: all 0.125s ease-in-out;
  display: flex;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  z-index: 100;
}

.modal-container .modal,
.modal-container .cerrar-modal {
  visibility: hidden;
}

.modal-container.active .modal,
.modal-container.active .cerrar-modal {
  visibility: visible;
}

.modal-container.active .cerrar-modal {
  background: #fffc;
}

body:has(.modal-container.active) {
  overflow: hidden;
}

.modal-container .cerrar-modal {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: var(--modal-transition);
}

.modal-container .modal {
  position: relative;
  width: 400px;
  background: #fff;
/*  box-shadow: 0px 32px 64px #1112;*/
  border: 1px solid #F0F0F4;
  border-radius: 6px;
  padding: 40px 20px;
  z-index: 2;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: var(--modal-transition);
  transition: var(--modal-transition);
  margin: 20px;
  box-shadow: 0px 0px 0px 1px #0E3F7E08,
  0px 1px 1px -0.5px #2A334508,
  0px 3px 3px -1.5px #2A334608,
  0px 6px 6px -3px #2A334608,
  0px 12px 12px -6px #0E3F7E08,
  0px 24px 24px -12px #0E3F7E10
}

.modal-container.active .modal {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal-container .modal .titulo {
  font-size: 28px;
  font-weight: 500;
  margin: 10px 0;
}

.modal-container .modal .subtitulo {
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 30px 0;
  line-height: 24px;
}

.modal-container .modal .login-form {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}

.modal-container .modal .boton_cerrar {
    width: 34px;
    height: 34px;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/xmark.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}

.login-form-inputs {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  gap: 10px;
}

.login-form-grupo {
  flex: 0 0 100%;
  width: 100%;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 20px;
}

.login-form-grupo label {
  font-weight: 400;
}

.login-form-inputs.pass .login-form-grupo {
  -webkit-transform: translate(calc(-100% - 10px));
  transform: translate(calc(-100% - 10px));
}

.btn-cerrar-sesion {
  background-color: #eee;
}

.login-form-grupo .error {
  display: none;
  color: #ff4343;
}

.login-form-grupo.con_error .error {
  display: block;
}

.login-form-grupo.con_error .form-control {
  border-color: #ff4343;
}


.datos_contacto_inmobiliaria {
  border: 1px solid #ddd;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  line-height: 24px;
}

.datos_contacto_inmobiliaria .titulo_dato {
  display: inline-block;
  width: 80px;
}

.datos_contacto_inmobiliaria .valor_dato {
  display: inline-block;
  font-size: 14px;
}

.boton_imagen_principal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  cursor: pointer;
}

#modal_fotos_cont {
  display: none; 
  position:fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 11000;
  background: #fffe;
  opacity: 0;
  transition: 0.2s ease all;
}

.modal_fotos_cabezal {
  position: absolute;
  top: 40px;
  left: 20px;
  right: 20px;
  height: 40px;
  text-align: right;
  padding: 0 10px;  
}

.modal_fotos {
  position:absolute; 
  top: 90px; 
  left: 0; 
  right: 0; 
  bottom: 20px; 
  overflow-y: auto;
  overflow-x: hidden;
}

.texto_home {
  margin-top: 60px;
  font-size: 26px;
  line-height: 40px;
  text-align: center;
  font-weight: 200;
  margin-bottom: 10px;

}

.subtexto_home {
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
}

.subsubtexto_home {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 120px;
  text-align: center;
}

.texto_home_inmo {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 80px;
    padding-top: 30px;
    border-top: 2px solid #5f89c6;  
}

.contenedor_aviso_home {
  max-width: 800px;
  text-align: center;
  margin-top: 60px;
}

.contenedor_aviso_home .btn {
  width: 110px;
}

.titulo_aviso_home {
  font-size: 16px;
}

a.link-rojo {
  color: #d9534f;
}

.mt_separador {
  margin-top: 30px;
}

.ocultar {
  display: none;
}

.logos_redes_inmobiliaria {
  margin-top: 14px;
}

.icono_link {
  width: 18px;
  height: 18px;
  background-size: 18px 18px;
  display: inline-block;
  margin-right: 18px;
  text-decoration: none;
}

.link_whatsapp {
  background-image: url(../img/whatsapp.svg);
}

.link_web {
  background-image: url(../img/link.svg);
}

.link_instagram {
  background-image: url(../img/instagram.svg);
}

.link_facebook {
  background-image: url(../img/facebook.svg);
}

.link_linkedin {
  background-image: url(../img/linkedin.svg);
}

.contenedor_buscador_orden {
  margin: 10px auto 20px auto;
  max-width: 1140px;
  text-align: right;
}

.contenedor_buscador_orden button {
  border: none !important;
  font-size: 13px !important;
  width: 190px !important;
}

.contenedor_buscador_orden .bootstrap-select.btn-group .dropdown-toggle .filter-option {
  text-align: right;
}

@media (min-width: 780px) and (max-width: 900px) {
  .ficha .imagen {
    height: 380px;
  }
}

@media (max-width: 780px) {
  .info_full {
    display: none;
  }

  .info_min {
    display: block;
  }

  .ficha .col_left {
    float: none;
    width: 100%;
    padding: 0;
  }

  .ficha .col_right {
    float: none;
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 780px) {

  .titulo_seccion {
    margin-top: 40px;    
  }

  .titulo_seccion h1 {
    clear: both;
    margin-right: 0;
    padding-top: 20px;
  }

}

@media (max-width: 660px) {
  .contenedor {
    padding: 0px 30px;
  }

  .pie {
    padding: 0 30px;
  }

  .logo_texto {
    margin-top: 10px;
    margin-bottom: 30px;
  }

  .ficha .col_g_2 {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 0 20px 0;
  }

  .ficha .foto {
    width: 100%;
    margin-bottom: 10px;
  }

  .ficha .video {
    width: 100%;
    margin-bottom: 10px;
  }

  .ficha .dato {
    width: 50%;
  }
}

@media (max-width: 500px) {

  .texto_home {

    font-size: 21px;
    margin-bottom: 6px;

  }

  .subsubtexto_home {
    font-size: 13px;
    margin-bottom: 100px;
  }

  .subtexto_home {
    font-size: 17px;
  }

}

@media (max-width: 460px) {
  .ficha .imagen {
    height: 240px;
  }

  .cabezal .botonera {
    margin-bottom: 10px;
  }

  .cabezal {
    display: block;
    padding-top: 10px;    
  }

  .ficha .col_v {
    float: none;
    width: 100%;
  }
  .ficha .col_a {
    float: none;
    width: 100%;
  }

  .contenedor {
    padding: 0px 20px;
  }

  .pie {
    padding: 0 20px;
  }

}
