.parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 60vh; /* Ajusta la altura al 100% del viewport */
}

.parallax::before {
  content: "";
  /*background: rgba(0, 0, 0, 0.5);*/
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
 
/*
.parallax .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
*/

@media (min-width: 992px) {
  .parallax {
    background-attachment: fixed;
  }
}