.image__page__windows {
  width: 100vw;
  max-width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
  position: relative;
}

.image__page__windows::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* Negro con opacidad del 50% */
  z-index: 1; /* Asegura que el overlay esté encima de la imagen pero debajo del contenido */
}

.banner__page__title,
.banner__page__subtitle {
  position: relative;
  z-index: 2; /* Asegura que el texto y el botón estén encima del overlay */
  color: white; /* Asegura que el texto sea visible sobre el fondo oscuro */
  text-align: center;
}

.banner__page__title {
  font-size: 55px;
  /* line-height: 55px; */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__page__title,
.banner__page__title::after {
  transition: all 300ms ease;
}

.banner__page__title::after{
  left: auto !important;
  margin-left: 0 !important;
}

.banner__page__title:hover::after {
  width: 120px;
}
