@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;700&family=Prompt:wght@300;400;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans";
}

:root {
  --color: #1bff73;
}

.page-propiedades {
  background-color: #272829;
}
.page-publicacion {
  background-color: #272829;
}
.page-contacto {
  background-color: #272829;
}
.page-busqueda {
  background-color: #272829;
}

/* H E A D E R */

.contenedor-header {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1000;
}

.contenedor-header header {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  color: #fff;
}

.contenedor-header .logo {
  display: flex;
  align-items: center;
}

.contenedor-header .logo img {
  max-height: 110px;
  width: auto;
}

.contenedor-header nav {
  display: flex;
  justify-content: center;
}

.contenedor-header nav a {
  font-size: 14px;
  padding: 8px 15px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 50px;
}

.contenedor-header nav a:hover {
  background-color: #1e994d;
  color: #fff;
}

.nav-responsive {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.nav-responsive.open .hamburger span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.nav-responsive.open .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.nav-responsive.open .hamburger span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

#page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
}

.contenedor-header .info-contacto { 
  text-align: right; 
}

.contenedor-header .info-contacto a { 
  text-decoration: none; 
  color: #fff; 
  padding: 5px; 
  transition: 0.5s; 
}

.contenedor-header .info-contacto a:hover { 
  color: var(--color); 
}

.contenedor-header .info-contacto span { 
  margin-left: 10px; 
}

/* Estilos para móviles */
@media screen and (max-width: 768px) {
  .contenedor-header nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    text-align: center;
    z-index: 1000;
  }

  .contenedor-header nav.responsive {
    display: block;
  }

  .contenedor-header nav a {
    display: block;
    margin: 10px 0;
  }
  

  .nav-responsive {
    display: block;
  }

  /* Nuevos estilos para ocultar el número de teléfono en móviles */
  .contenedor-header .info-contacto .numero-telefono {
    display: none;
  }

  .contenedor-header .info-contacto {
    display: flex;
    align-items: center;
  }

  .contenedor-header .info-contacto span {
    margin-left: 5px;
  }

  .contenedor-header .info-contacto a {
    padding: 5px;
  }

  /* Ajustar el tamaño de los iconos para móviles */
  .contenedor-header .info-contacto i {
    font-size: 20px;
  }
}

/* H O M E */

.home {
  background: url(img/newFondo.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}

.home h1{
  text-align: center;
  padding-top: 50px;
  color: #ffffff;
  font-size: 35px;
}

.home h2{
  text-align: center;
  padding-top: 50px;
  color: #ffffff;
  font-size: 35px;
}


.home h2.texto-negro {
  color: #000000; /* Color negro */
  font-family: cursive;
}

/* BARRA DE B U S Q U E D A*/

.pos-inferior {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.pos-centrada {
  margin: 30px auto;
}

.box-buscar-propiedades {
  max-width: 900px;
  width: 100%;
  padding: 8px;
  margin-top: 100px;
  bottom: 50px; /* Ajusta este valor según sea necesario */
  position: relative; /* Cambia la posición a relative */
}

.box-buscar-propiedades .box-interior {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}

.box-buscar-propiedades .box-interior p {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.box-buscar-propiedades .box-interior select {
  width: 180px;
  background-color: #eee;
  color: #131313;
  border: 1px solid #424242;
  padding: 7px;
  margin: 0 10px;
  font-size: 12px;
  border-radius: 10px;
}

.btn {
  position: relative;
  padding: 7px 15px;
  /* Ajusta el valor de padding según sea necesario */
  text-decoration: none;
  color: #fff;
  letter-spacing: 5px;
  text-indent: 5px;
  z-index: 2;
}

.btn-2 {
  border: 3px solid;
  padding-top: 10px;
  padding-bottom: 10px;
}

.btn-2:hover {
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px var(--color);
  border-color: var(--color);
}

.btn-2 span:nth-child(n) {
  position: absolute;
  width: 8px;
  /* Ajusta el valor a la mitad del ancho original */
  height: 8px;
  /* Ajusta el valor a la mitad de la altura original */
  border: 3px solid;
  transition: all 0.6s ease;
}

.btn-2 span:nth-child(1) {
  right: 5%;
  top: -5px;
  /* Ajusta el valor a la mitad del espacio original */
  background-color: #fff;
}

.btn-2 span:nth-child(2) {
  left: 5%;
  bottom: -5px;
  /* Ajusta el valor a la mitad del espacio original */
}

.btn-2:hover span:nth-child(1) {
  right: 80%;
  /* Ajusta el valor según sea necesario */
  transform: rotate(90deg);
  color: var(--color);
  background-color: var(--color);
}

.btn-2:hover span:nth-child(2) {
  left: 80%;
  /* Ajusta el valor según sea necesario */
  transform: rotate(90deg);
  color: var(--color);
}

.box-buscar-propiedades .box-interior input[type="submit"] {
  width: 150px;
  padding: 7px;
  font-size: 14px;
  font-weight: bold;
  background: linear-gradient(to right, #043517, #2dc94f);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.5s;
}

.box-buscar-propiedades .box-interior input[type="submit"]:hover {
  background-color: #2dc94f;
}

.box-buscar-propiedades .box-interior input[type="radio"] {
  font-size: 14px;
}

.box-buscar-propiedades .box-interior .estado {
  width: 180px;
  background-color: #eee;
  color: #131313;
  border: 1px solid #424242;
  padding: 7px;
  margin: 0 10px;
  font-size: 12px;
  display: inline-block;
  border-radius: 10px;
}

.box-buscar-propiedades .box-interior .estado span {
  margin-right: 10px;
}


/* Nuestra historia */
.who {
  background-color: #fff;
  display: grid;
  height: auto; 
  justify-items: center;
  align-items: center;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  width: 60%;
  margin: auto; 
  padding: 20px 0; 
}

.who h1, .who p {
  margin: 0;
  text-align: center; 
}

.who-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.who h2 {
  color: #000;
}

.deck {
  background-color: rgb(245, 245, 245);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  justify-items: center;
  align-items: center;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  
}

.card-space {
  display: flex;
  justify-content: center;
}

.card-space:hover .card {
  transform: rotateY(-180deg);
}

.card {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  height: 400px;
  margin: 10px;
  width: 350px;
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
  -webkit-box-shadow: 20px 20px 10px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 20px 20px 10px 0px rgba(0,0,0,0.75);
  box-shadow: 20px 20px 10px 0px rgba(0,0,0,0.75); 
}

.card h1, .card p {
  margin: 0;
}

.face {
  border-radius: 10px;
  box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.face.front {
  z-index: 20;
  backface-visibility: hidden;
  transform: rotateY(0deg);
  color: #fff;
}

.face.front h3{
  font-size: 25px;
}

.face.back {
  transform: rotateY(180deg);
  backface-visibility: hidden;
  justify-content: center;
  color: #fff;
}

@media only screen and (max-width: 990px) {
  .who {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .card-space {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .card {
    width: 280px;
  }
  
}

.team {
  background-color: #fff;
  padding: 40px 0; /* Añadir relleno para separación */
  margin: 0;
}
.team .space {
  height: 30px;
}
.team .tittle-team {
  margin-top: 4rem; 
  margin-bottom: 2rem; 
  text-align: center; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  margin-left: 8rem;
  margin-right: 8rem;
  border-radius: 10px;
}

.team h2 {
  color: #ffffff;
  margin-bottom: 3rem; /* Elimina el margen adicional del título */
}

.team .our-team {
  position: relative;
  overflow: hidden;
  flex: 0 1 20%;
  margin: 30px;
}
.team .our-team img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}
.resize{
  width: 220px;
  height: 220px;
  padding: 10px;
}
.team .our-team .team-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1px;
  padding: 45px 18px;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.2s ease 0s;
}
.team .our-team:hover .team-content {
  transform: translateX(0);
}
.team .our-team .team-content .post-title {
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.team .our-team .team-content .post {
  font-size: 14px;
  color: var(--color);
  display: block;
  margin-bottom: 20px;
}
.team .our-team .description {
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 20px;
}
.team .our-team .team_social {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team .our-team .team_social li {
  display: inline-block;
  margin-right: 5px;
}
.team .our-team .team_social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #f5f5f5;
  font-size: 17px;
  color: #f5f5f5;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  transition: border 0.3s ease 0s;
}
.team .our-team .team_social li a:hover {
  border-color: transparent;
}
.team .our-team .team-prof {
  width: 100%;
  position: absolute;
  bottom: 0;
  text-align: right;
  padding: 20px 16px;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(0);
  transition: all 0.2s ease 0s;
}
.team .our-team:hover .team-prof {
  transform: translateX(100%);
}
.team .our-team .team-prof .post-title {
  font-size: 18px;
  color: #fff;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}
.team .our-team .team-prof .post {
  font-size: 14px;
  color: var(--color);
  margin-bottom: 0;
}

/* Flexbox container */
.team .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  margin: 0; 
  padding: 0; 
}

/* Responsive */
@media only screen and (max-width: 990px) {
  .team .tittle-team {
    margin-top: 4rem; 
    margin-bottom: 2rem; 
    background: rgba(0, 0, 0, 0.8);
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 10px;
  }
  .team .row {
    flex-direction: column;
    align-items: center; /* Centra los elementos en el eje horizontal */
  }

  .team .our-team {
    width: 100%; /* Ocupa el 100% del contenedor en dispositivos móviles */
    margin: 15px 0; /* Espaciado entre los elementos */
  }

  .team .our-team .team-content,
  .team .our-team .team-prof {
    width: 100%; /* Ocupa el 100% del contenedor en dispositivos móviles */
  }
}





/* P R O P I E D A D E S */

.page-propiedades .contenedor-propiedades {
  max-width: 1200px;
  margin: auto;
}

.page-propiedades .titulo-seccion {
  text-align: center;
  color: #ffffff;
}

.page-propiedades .fila {
  display: flex;
  justify-content: space-between;
  margin: 25px 0;
}

.page-propiedades .contenedor-propiedad {
  max-width: 380px;
  min-width: 380px;
  margin: 0 10px;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 3px #424242;
  scale: 1;
  transition: transform 0.5s;
  padding-bottom: 10px;
  color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}

.page-propiedades .contenedor-propiedad:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--color);
}

.page-propiedades .contenedor-propiedad .contenedor-img {
  width: 100%;
  position: relative;
}

.page-propiedades .contenedor-propiedad .contenedor-img .estado {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--color);
  width: auto;
  color: #fff;
  padding: 5px 10px;
}

.page-propiedades .contenedor-propiedad .contenedor-img img {
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.page-propiedades .contenedor-propiedad .info {
  padding: 0 10px;
}

.page-propiedades .contenedor-propiedad h2 {
  font-size: 16px;
  margin: 10px 0;
}

.page-propiedades .contenedor-propiedad p {
  font-size: 14px;
  color: #aaa;
}

.page-propiedades .contenedor-propiedad p i {
  color: #131313;
  margin-right: 10px;
}

.page-propiedades .contenedor-propiedad .precio {
  display: inline-block;
  font-size: 26px;
  color: var(--color);
  margin: 5px 0;
}

.page-propiedades .contenedor-propiedad table {
  width: 100%;
  font-size: 14px;
  text-align: left;
  margin: 10px 0;
}

.page-propiedades .contenedor-propiedad table td {
  color: #aaa;
}

.page-propiedades #botonCargarMas {
  display: block;
  width: 200px;
  margin: 20px auto;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  background-color: var(--color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.page-propiedades #botonCargarMas:hover {
  background-color: #00ff4c;
}

/* P U B L I C A C I O N */

.page-publicacion .contenedor-principal {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}

.page-publicacion .contenedor-principal .info-publicacion {
  width: 100%;
  max-width: 850px;
}

.page-publicacion .contenedor-principal .info-publicacion h2 {
  margin-bottom: 7px;
}

.page-publicacion .contenedor-principal .form-contacto {
  width: 100%;
  max-width: 300px;
}

.page-publicacion section {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  color: #fff;
  box-shadow: 0 0 20px var(--color);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-publicacion .info-publicacion .dato1 {
  display: flex;
  justify-content: space-between;
}

.page-publicacion .info-publicacion .dato1 .precio {
  display: inline-block;
  font-size: 26px;
  color: var(--color);
  margin: 5px 0;
  font-weight: bolder;
}

.page-publicacion .info-publicacion .dato1 .estado {
  display: inline-block;
  background-color: var(--color);
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
}

.page-publicacion .info-publicacion .contenedor-imagen-principal {
  width: 100%;
  margin-top: 15px;
}

.page-publicacion .info-publicacion .contenedor-imagen-principal img {
  width: 100%;
  max-width: 800px;
  max-height: 550px;
}

.page-publicacion .info-publicacion .galeria {
  margin-top: 20px;
  width: 100%;
}

.page-publicacion .info-publicacion .galeria img {
  width: 100%;
  max-width: 240px;
  object-fit: cover;
  height: 154px;
  margin-right: 10px;
  cursor: pointer;
}

.page-publicacion .info-publicacion .descripcion .fila {
  display: flex;
  margin: 30px 0;
}

.page-publicacion .info-publicacion .descripcion .fila .dato {
  width: 150px;
  border-left: 5px solid var(--color);
  padding-left: 5px;
}

.page-publicacion .info-publicacion .descripcion .fila .dato span {
  display: block;
}

.page-publicacion .info-publicacion .descripcion .fila .dato .header {
  font-size: 13px;
  font-weight: bold;
}

.page-publicacion .info-publicacion .descripcion .fila .dato .valor {
  font-size: 13px;
  color: #bae9ca;
}

.page-publicacion .info-publicacion .descripcion .detalle {
  width: 100%;
  height: 100%;
}

.page-publicacion .form-contacto-publicacion {
  max-width: 320px;
  width: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  box-shadow: 0 0 10px var(--color);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #fff;
}

.page-publicacion .form-contacto-publicacion h3 {
  margin-bottom: 10px;
}

.page-publicacion .form-contacto-publicacion label {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  color: #76b180;
}

.page-publicacion .form-contacto-publicacion div {
  margin-bottom: 15px;
}

.page-publicacion .form-contacto-publicacion input,
.page-publicacion .form-contacto-publicacion textarea {
  display: block;
  width: 100%;
  padding: 10px;
}

.page-publicacion .compartir a {
  font-size: 24px;
  padding: 5px 0;
  display: inline-block;
  width: 60px;
  background-color: var(--color);
  color: #fff;
  text-decoration: none;
  text-align: center;
  margin-right: 20px;
  transition: 0.5s;
}

.page-publicacion .compartir a:hover {
  background-color: #6cff3f;
}

.page-publicacion .compartir a .fa-whatsapp {
  font-size: 30px;
}

.page-publicacion .compartir h3 {
  margin-bottom: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  margin: 5vh auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#fotoModal {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.close:hover {
  opacity: 0.7;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s, opacity 0.3s;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

@media (max-width: 768px) {
  .modal-content {
      width: 95%;
  }

  .close {
      top: 10px;
      right: 10px;
      font-size: 30px;
  }

  .nav-button {
      font-size: 20px;
      padding: 10px;
  }

  .prev {
      left: 10px;
  }

  .next {
      right: 10px;
  }
}


/* B U S Q U E D A */
.mensaje-no-productos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 2rem auto;
  backdrop-filter: blur(5px);
}

.imagen-no-productos {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.mensaje-no-productos h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mensaje-no-productos p {
  color: #e0e0e0;
  margin-bottom: 2rem;
  max-width: 28rem;
  line-height: 1.6;
}

.boton-inicio {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #1bff73;
  color: #000000;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(27, 255, 115, 0.1);
}

.boton-inicio:hover {
  background-color: #00e15c;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(27, 255, 115, 0.2);
}

.boton-inicio i {
  font-size: 1.1rem;
}

/* Ajustes responsivos */
@media (max-width: 640px) {
  .mensaje-no-productos {
      padding: 2rem;
  }

  .imagen-no-productos {
      max-width: 150px;
  }
  
  .mensaje-no-productos h2 {
      font-size: 1.5rem;
  }

  .mensaje-no-productos p {
      font-size: 0.9rem;
  }

  .boton-inicio {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
  }
}


.page-busqueda .contenedor-busqueda {
  max-width: 1200px;
  margin: 40px auto;
  background-color: #272829;
  box-shadow: 10px solid #aaa;
  padding: 0 15px;
  color: #fff;
}

.page-busqueda .contenedor-busqueda h3 {
  margin-top: 7px;
  font-size: 16px;
}

.page-busqueda .contenedor-busqueda h3 span {
  font-weight: normal;
  font-style: italic;
}

.page-busqueda .resultado {
  width: 100%;
  background-color: rgb(0, 0, 0, 0.5);
  border-radius: 10px;
  box-shadow: 2px 2px 3px #424242;
  margin: 20px 0;
  display: flex;
  padding: 5px;
  cursor: pointer;
  scale: 1;
  transition: transform 0.5s;
}

.page-busqueda .resultado .contenedor-imagen {
  width: 100%;
  max-width: 190px;
  margin-right: 20px;
}

.page-busqueda .resultado .contenedor-imagen img {
  object-fit: cover;
  width: 100%;
  height: 135px;
}

.page-busqueda .resultado .info {
  width: 100%;
}

.page-busqueda .resultado .info .titulo {
  font-size: 18px;
  font-weight: bold;
}

.page-busqueda .resultado .info .detalles {
  margin: 10px 0;
  display: flex;
}

.page-busqueda .resultado .info .detalles .dato1 {
  max-width: 140px;
  width: 100%;
  border-left: 6px solid var(--color);
  padding-left: 5px;
}

.contenedor-propiedad .info table tr td {
  border-left: 6px solid var(--color);
  padding-left: 5px;
}

.page-busqueda .resultado .info .detalles .dato1 span {
  display: block;
}

.page-busqueda .resultado .info .detalles .dato1 .header {
  font-weight: bold;
  display: block;
}

.page-busqueda .resultado .info .detalles .dato1 .header {
  font-weight: bold;
  color: var(--color);
  display: block;
  font-size: 14px;
}

.page-busqueda .resultado:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--color);
}

.page-busqueda .resultado .info .detalles .dato1 .texto {
  font-size: 14px;
  color: #bae9ca;
}

/* C O N T A C T O */
.imagen-contacto {
  background-image: url(img/encuentra.jpg);
  background-position: center center;
  background-size: cover;
  height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 5%;
}

.contenedor-contenido-contacto {
  text-align: center;
  color: #fff;
  max-width: 80%; /* O ajusta según tu preferencia */
}

.contenedor-contenido-contacto h2,
.contenedor-contenido-contacto p,
.contenedor-contenido-contacto .boton {
  margin: 30px 0; /* Ajusta según tu preferencia */
}

.contenedor-contenido-contacto .boton {
  padding: 10px 20px; /* Ajusta según tu preferencia */
}

.page-contacto .contenedor-contacto {
  max-width: 1200px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
  font-size: 14px;
}

.page-contacto .titulo-seccion {
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

.page-contacto .contenedor-contacto .col {
  width: 30%;

  background-color: rgb(0, 0, 0, 0.5);
  border: 1px solid var(--color);
  padding: 10px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.page-contacto .contenedor-contacto .info {
  padding: 15px;
}

.page-contacto .contenedor-contacto .info div {
  margin-bottom: 20px;
}

.page-contacto .formulario {
  padding: 15px;
}

.page-contacto .formulario h3 {
  margin-bottom: 10px;
}

.page-contacto .formulario label {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  color: #fff;
}

.page-contacto .formulario div {
  margin-bottom: 15px;
}

.page-contacto .formulario input,
.page-contacto .formulario textarea {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10%;
}

/* FOOTER */

footer {
  width: 100%;
  background-color: #131313;
  color: #aaa;
  text-align: center;
  font-size: 12px;
  padding: 5px 0;
}

footer.inferior {
  position: absolute;
  bottom: 0;
}

footer.inferior2 {
  position: absolute;
  bottom: 0;
}

/* S E C C I O N P A R A M O V I L */
@media only screen and (max-width: 1000px) {
  .page-publicacion .contenedor-principal {
    max-width: 1200px;
    margin: 40px 10px;
    display: block;
  }
  .imagen-contacto {
    padding-bottom: 20%;
  }
  .iconos-nosotros {
    display: flex;
    flex-direction: column; /* Mostrar elementos en columnas */
    align-items: center; /* Centrar los elementos horizontalmente */
    justify-content: center; /* Centrar los elementos verticalmente */
  }
  .icono {
    width: 100%;
    text-align: center; /* Centrar el contenido horizontalmente */
  }

  .icono p {
    max-width: 80%; /* Ancho máximo del texto */
    margin: 0 auto; /* Centrar horizontalmente */
  }
  .page-publicacion .contenedor-principal .info-publicacion {
    max-width: 100%;
  }

  .page-publicacion .info-publicacion .galeria img {
    width: 30%;
    object-fit: cover;
    height: 154px;
    margin-right: 10px;
    cursor: pointer;
  }
  #search-container {
    margin-top: 30px;
  }
  #estado {
    margin-bottom: 40px;
  }
  .page-publicacion .form-contacto-publicacion {
    max-width: 100%;
  }

  .page-publicacion .form-contacto-publicacion input {
    border-radius: 10px;
  }

  .page-contacto .contenedor-contacto {
    max-width: 1200px;
    width: 100%;
    margin: 10px auto;
    display: block;
    padding: 10px;
  }

  .page-contacto .contenedor-contacto .col {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10%;
  }

  .page-contacto .formulario input,
  .page-contacto .formulario textarea {
    display: block;
    width: 100%;
    padding: 10px;
  }

  footer.inferior2 {
    position: relative;
  }
}

@media only screen and (max-width: 900px) {
  .container header nav {
    display: none;
  }
  .imagen-contacto {
    padding-bottom: 20%;
  }
  #search-container {
    margin-top: 30px;
  }
  #estado {
    margin-bottom: 40px;
  }
  .iconos-nosotros {
    display: flex;
    flex-direction: column; /* Mostrar elementos en columnas */
    align-items: center; /* Centrar los elementos horizontalmente */
    justify-content: center; /* Centrar los elementos verticalmente */
  }
  .icono {
    width: 100%;
    text-align: center; /* Centrar el contenido horizontalmente */
  }

  .icono p {
    max-width: 80%; /* Ancho máximo del texto */
    margin: 0 auto; /* Centrar horizontalmente */
  }

  .home h2 {
    padding-top: 40px;
    font-size: 30px;
  }

  .home .box-buscar-propiedades {
    position: relative;
    max-width: 350px;
    width: 100%;
    top: 30px;
    
    left: 50%;
    margin-bottom: 20%;
  }

  .home .pos-inferior {
    position: relative;
  }

  .home .box-interior {
    padding: 15px;
    position: unset;
  }

  .home .box-buscar-propiedades .box-interior select,
  .home .box-buscar-propiedades .box-interior input[type="submit"],
  .home .box-buscar-propiedades .box-interior .estado {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
  }

  /* ESTILO PROPIEDADES */
  .page-propiedades .fila {
    display: block;
    margin: 25px 0;
  }

  .page-propiedades .contenedor-propiedad {
    max-width: 90%;
    margin: 20px auto;
  }
  .box-buscar-propiedades {
    position: unset;
  }

  .page-propiedades .box-buscar-propiedades .box-interior select,
  .page-propiedades .box-buscar-propiedades .box-interior input[type="submit"],
  .page-propiedades .box-buscar-propiedades .box-interior .estado {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .page-propiedades .box-buscar-propiedades {
    margin: 0px;
  }

  .page-propiedades .box-buscar-propiedades p {
    font-size: 18px;
  }

  .page-propiedades .box-interior {
    padding: 15px;
  }

  .page-busqueda .box-buscar-propiedades .box-interior select,
  .page-busqueda .box-buscar-propiedades .box-interior input[type="submit"],
  .page-busqueda .box-buscar-propiedades .box-interior .estado {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .page-busqueda #detalle-ocultar {
    display: none;
  }

  .page-busqueda span.titulo {
    font-size: 16px !important;
  }

  .page-busqueda p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 450px) {
  .page-publicacion .info-publicacion .descripcion .fila {
    display: block;
    margin: 0;
  }
  .imagen-contacto {
    padding-bottom: 20%;
  }
  .box-buscar-propiedades {
    position: unset;
  }
  #search-container {
    margin-top: 30px;
  }
  #estado {
    margin-bottom: 40px;
  }
  .iconos-nosotros {
    display: flex;
    flex-direction: column; /* Mostrar elementos en columnas */
    align-items: center; /* Centrar los elementos horizontalmente */
    justify-content: center; /* Centrar los elementos verticalmente */
  }
  .icono {
    width: 100%;
    text-align: center; /* Centrar el contenido horizontalmente */
  }

  .icono p {
    max-width: 80%; /* Ancho máximo del texto */
    margin: 0 auto; /* Centrar horizontalmente */
  }

  .home .box-interior {
    padding: 15px;
    position: unset;
  }

  .page-publicacion .info-publicacion .descripcion .fila .dato {
    margin: 5px 0;
  }

  .page-publicacion .info-publicacion .descripcion .fila .dato .header {
    display: inline;
  }

  .page-publicacion .info-publicacion .descripcion .fila .dato .valor {
    display: inline;
  }
}

/*BUSQUEDA DE PRODUCTOS*/

#search-form {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 1s;
  width: 50px;
  height: 50px;
  background: white;
  box-sizing: border-box;
  border-radius: 25px;
  border: 4px solid white;
  padding: 5px;
  margin-top: 30px;
}

#search-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 0;
  display: none;
  font-size: 1em;
  border-radius: 20px;
  padding: 0 20px;
}

.fa {
  box-sizing: border-box;
  padding: 10px;
  width: 42.5px;
  height: 42.5px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  color: #07051a;
  text-align: center;
  font-size: 1.2em;
  transition: all 1s;
}

#search-form:hover,
#search-form:valid {
  width: 200px;
  cursor: pointer;
}

#search-form:hover #search-input,
#search-form:valid #search-input {
  display: block;
}

#search-form:hover .fa,
#search-form:valid .fa {
  background: #07051a;
  color: white;
}

.form {
  background-color: rgb(0, 0, 0, 0.5);
  border-radius: 20px;
  box-sizing: border-box;
  height: 700px;
  padding: 20px;
  width: 320px;
}

.title {
  color: #eee;
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.subtitle {
  color: #eee;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 40px;
}

.ic2 {
  margin-top: 30px;
}

.input {
  background-color: #303245;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  font-size: 18px;
  height: 100%;
  outline: 0;
  padding: 4px 20px 0;
  width: 100%;
}

.cut {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  height: 20px;
  left: 20px;
  position: absolute;
  top: -20px;
  transform: translateY(0);
  transition: transform 200ms;
  width: 76px;
}

.cut-short {
  width: 50px;
}

.input:focus ~ .cut,
.input:not(:placeholder-shown) ~ .cut {
  transform: translateY(8px);
}

.placeholder {
  color: #65657b;
  font-family: sans-serif;
  left: 20px;
  line-height: 14px;
  pointer-events: none;
  position: absolute;
  transform-origin: 0 50%;
  transition: transform 200ms, color 200ms;
  top: 20px;
}

.input:focus ~ .placeholder,
.input:not(:placeholder-shown) ~ .placeholder {
  transform: translateY(-30px) translateX(10px) scale(0.75);
}

.input:not(:placeholder-shown) ~ .placeholder {
  color: #808097;
}

.input:focus ~ .placeholder {
  color: var(--color);
}

.submit {
  background-color: var(--color);
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eee;
  cursor: pointer;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  outline: 0;
  text-align: center;
  width: 100%;
}

.submit:active {
  background-color: #06b;
}

#container-slider
{
    position: relative;
    display: block;
    width: 100%;
}
#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 500px;
}
#slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2; 
}
#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}
.content_slider{
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}
.content_slider div{
    text-align: center;
}
.content_slider h2{
    font-family: 'arial';
    font-size: 30pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.content_slider p {
    font-size: 15pt;
    font-family: 'arial';
    color: #FFF;
    margin-bottom: 20px;
}
#slider li .content_slider{
    background: rgba(0, 0, 0, 0.50);
    padding: 10px 125px;
}
.content_slider{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnSlider{
    color: #FFF;
    font-size: 15pt;
    font-family: 'arial';
    letter-spacing: 1px;
    padding: 10px 50px;
    border: 1px solid #CCC;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 31px;
    text-decoration: none;
    transition: .5s all;
}
.btnSlider:hover{
    background: #111;
    border: 1px solid #111;
}
.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}
.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
}
.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}
.item-select-slid {
    background: #FFF  !important;
}

@media screen and (max-width: 460px){
	.content_slider h2 {
	    font-size: 15pt !important;
	}
	.content_slider p {
	    font-size: 12pt !important;
	}
	#container-slider .arrowPrev, #container-slider .arrowNext{
		font-size: 20pt;
	}
	#container-slider .arrowPrev{
		left: 15px;
	}
	#container-slider .arrowNext{
		right: 15px !important;
	}
	#slider{
		height: 400px;
		min-height: 400px;
	}
	#slider li .content_slider{
		padding: 10px 35px;
	}
	.btnSlider{
		padding: 10px 30px;
    	font-size: 10pt;
	}

}
