/* ==========================
   🌆 FONDO FIJO GLOBAL (con rutas relativas)
   ========================== */

body {
  background-image: url("./imagendefondo1.webp"); /* Imagen ubicada en la misma carpeta del CSS */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.5;
}

/* 🌗 Capa de oscurecimiento para mejor contraste */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* 🧱 Contenedor principal */
#contenido {
  padding: 20px;
  text-align: center;
}

/* 📱 Compatibilidad móvil */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }

  #contenido {
    padding: 15px;
  }
}
