.banner-top {
  --position: 50% 50%;
  padding: 80px 0;
  margin: 0 0 50px 0;
  position: relative;
  background-image: var(--image);
  background-position: var(--position);
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #16478ed9;
  z-index: 1;
  pointer-events: none;
  /* para que no bloquee clics */
}

.banner-top img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-top h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 1.32;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #ffffff;
  z-index: 3;
  position: relative;
  text-align: center;
}

@media (max-width: 1024px) {
  .banner-top {
    padding: 60px 0;
    margin: 0 0 40px 0;
  }

  .banner-top h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .banner-top {
    padding: 40px 0;
    margin: 0 0 30px 0;
  }

  .banner-top h1 {
    font-size: 35px;
  }
}