body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden; /* Quita scroll */
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; /* Ajusta la imagen completa sin recortar */
  object-position: center;
  background-color: #ffffff; /* Para rellenar alrededor si sobra espacio */
}


