@charset "UTF-8";

body {
  margin: 0;
  /* fallback + viewport móvil moderno */
  min-height: 100vh;
  min-height: 100dvh;

  /* imagen centrada y adaptable */
  background: url("../images/img-proximamente.jpg") center center / cover no-repeat;
}

/* Opcional: usar otra imagen en mobile */
@media (max-width: 800px) {
  body {
    background-image: url("../images/img-proximamente-m.jpg");
  }
}

/* Opcional: efecto fixed solo en desktop para evitar bugs en iOS */
@media (hover: hover) and (pointer: fine) {
  body {
    background-attachment: fixed;
  }
}