.propiedad {
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'TASA Explorer', sans-serif;
}

/* HEADER */
.prop-header {
  margin-bottom: 20px;
}

.prop-header h1 {
  font-size: 28px;
  margin-bottom: 5px;
}

.ubicacion {
  color: #666;
  margin-bottom: 10px;
}

.precio {
  font-size: 32px;
  font-weight: bold;
  color: #1a73e8;
}

/* BODY */
.prop-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* GALERIA */
.galeria img {
  width: 100%;
  height:400px;
  border-radius: 10px;
}

/* DESCRIPCION */
.descripcion {
  margin-top: 20px;
}

.descripcion h2 {
  margin-bottom: 10px;
}

/* SIDEBAR */
.prop-right {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
}

.caracteristicas {
  list-style: none;
  padding: 0;
}

.caracteristicas li {
  margin-bottom: 10px;
}

/* MAPA */
#map {
  width: 100%;
  height: 400px;
  margin-top: 40px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .prop-body {
    grid-template-columns: 1fr;
  }
}