body { min-height: 100vh; }
input, select, textarea, button { outline: none; }

/* Hogar Regio - marca de agua visual centrada.
   No modifica fotos originales; sólo superpone public_html/static/brand/watermark.png.
   La transparencia/opacidad debe venir dentro del PNG. */
.hr-watermark {
  position: relative;
  overflow: hidden;
}

.hr-watermark > img {
  display: block;
}

.hr-watermark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  background-image: url("../brand/watermark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 5;
}

.hr-watermark-full::after {
  width: 55%;
  height: 55%;
}

.hr-watermark-thumb::after {
  width: 50%;
  height: 50%;
}

#propertyMap {
  width: 100%;
  min-height: 360px;
}

.leaflet-container {
  width: 100%;
  height: 100%;
}

