*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  padding:15px 10%;
  background:white;
  border-bottom:1px solid #ddd;
}

.menu a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
}

/* FILTROS */
.filtros{
  display:flex;
  gap:10px;
  padding:20px 10%;
  background:white;
}

.filtros input,
.filtros select{
  padding:10px;
  border:1px solid #ccc;
  border-radius:5px;
}

.btn{
  background:#ff6a00;
  color:white;
  border:none;
  padding:10px 20px;
  cursor:pointer;
}

/* LISTADO */
.listado{
  padding:20px 10%;
}

/* CARD PROPIEDAD */
.propiedad{
  display:flex;
  background:white;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.propiedad img{
  width:300px;
  height:200px;
  object-fit:cover;
}

.info{
  padding:20px;
  flex:1;
}

.info h3{
  color:#ff6a00;
  margin-bottom:10px;
}

.info p{
  margin-bottom:8px;
}

.info span{
  color:#777;
}

/* BOTONES */
.acciones{
  margin-top:15px;
}

.whatsapp{
  background:#25D366;
  color:white;
  border:none;
  padding:10px 15px;
  margin-right:10px;
  cursor:pointer;
}

.contactar{
  background:#ff6a00;
  color:white;
  border:none;
  padding:10px 15px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){

  .propiedad{
    flex-direction:column;
  }

  .propiedad img{
    width:100%;
  }

  .filtros{
    flex-direction:column;
  }

}
