* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: #f5f7fb;
  font-family: Arial, Helvetica, sans-serif;
}

.construction-page {
  width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
}

.construction-page picture {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: block;
}

.construction-image {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  object-position: center; /* Desktop: imagen diseñada para pantalla ancha */
  display: block;
}

/* Mobile portrait — ancla a la izquierda para no perder logo ni texto */
@media (max-width: 767px) {
  .construction-image {
    object-position: left top;
  }
}

/* Tablet portrait — mismo problema: imagen landscape → recorta izquierda */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .construction-image {
    object-position: left top;
  }
}

/* Tablet landscape y tabletas grandes (ej. Galaxy Tab S7 en horizontal) */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
  .construction-image {
    object-position: left center;
  }
}

/* Desktop: perfecta sin cambios */
@media (min-width: 1367px) {
  .construction-image {
    object-position: center;
  }
}