.hero-banner {
  display: flex;
  position: relative;
  width: calc(100vw - 2rem);
  aspect-ratio: 21/9;
  overflow: hidden;
  left: 1rem;
  margin-bottom: 2rem;
}
.hero-banner .image-wrapper:not(.logotipo-banner) {
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}

.hero-over {
  position: absolute;
  z-index: 5;
  color: white;
  display: flex;
  flex-flow: column;
  align-items: start;
  row-gap: 5px;
  align-self: end;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
}
.hero-over h1 {
  pointer-events: none;
  text-align: left !important;
}
@media (max-width: 520px) {
  .hero-over h1 {
    line-height: 1.25em;
  }
}
.hero-over h3 {
  margin-left: 4px;
}
.hero-over .logotipo-banner {
  max-width: 250px;
  margin-top: 1rem;
}

.hero-img {
  width: 100%;
}

.hero-over h1, .hero-over h2, .hero-over a {
  text-align: center;
}

@media (max-width: 1000px) {
  .hero-banner {
    aspect-ratio: 4/2.5;
  }
}
@media (max-width: 520px) {
  .hero-banner {
    top: 0.5rem !important;
    left: 0.5rem !important;
    width: calc(100vw - 1rem) !important;
    aspect-ratio: 1/1;
  }
}
