html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}
.bg-image {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY OSCURO */
.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* ajusta la intensidad aquí */
  z-index: 1;
}

.mision-container h2,
.mision-container h2,
.soluciones_container h2,
.contacto_container h2 {
    text-align: center;
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 3rem;
    color: white;
}

@media (max-width: 768px) {
   .bg-image img {
    object-position: center top;
  }
}


/* --- PRELOADER --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d3b4c; /* Fondo mientras carga */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.preloader-img {
  width: 80px;  /* ajusta al tamaño que quieras */
  height: 80px;
  animation: spin 2s linear infinite; /* Quita esta línea si no quieres que gire */
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
