/* Estilo general para el jumbotron */
.quienes-somos {
  background-image: url('/assets/images/empresa/quienesSomos.jfif');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 800px;
  width: 100%;
  position: relative;
  animation: moveBg 20s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Animación escritorio */
@keyframes moveBg {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}

/* Overlay de texto con fondo oscuro */
.quienes-somos .overlay-text {
  background-color: rgba(53, 52, 52, 0.5);
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

/* Para pantallas pequeñas */
@media (max-width: 767.98px) {
  .quienes-somos {
    height: 100vh; /* Ocupar el alto del celular */
    background-position: center;
    animation: none; /* Opcional: desactivar animación para mejor rendimiento */
  }

  .quienes-somos .overlay-text {
    padding: 20px;
    margin: 0 10px;
    font-size: 16px;
  }
}

