/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Mobile: Usamos svh para ajustar exacto al viewport visible del móvil */
body {
  background-color: #efefef; /* Mismo color del fondo del logo */
  min-height: 100vh;
  min-height: 100svh; /* Evita saltos por la barra de dirección en móviles */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* En móvil le damos un margen de respiro para que no toque bordes */
.maintenance-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1.5rem; 
}

/* La imagen ocupa todo el ancho disponible del móvil sin deformarse */
.maintenance-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Media Query: Tablets y Escritorio (Desktop Breakpoint) */
@media (min-width: 768px) {
  .maintenance-container {
    padding: 2rem;
  }

  /* Limitamos el tamaño en pantallas grandes para que no quede gigante */
  .maintenance-image {
    max-width: 650px; 
  }
}