.bannerTop {
  background: linear-gradient(90deg, #8BC53F -0.06%, #00ADEE 99.95%);
  position: relative;
  overflow: hidden;
}
.bannerTop::before, .bannerTop::after {
  content: "";
  background-image: url("../../../assets/img/fundo-topo-banner.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 495px;
}
.bannerTop::after {
  background-image: url("../../../assets/img/fundo-topo-banner-direita.png");
  left: initial;
  right: 0;
  top: 0;
  width: 230px;
}
@media (max-width: 992px) {
  .bannerTop {
    padding: 10px 0;
  }
}
.bannerTop > .d-flex {
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .bannerTop > .d-flex {
    gap: 10px;
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .bannerTop > .d-flex > img {
    display: none;
  }
}
.bannerTop h1 {
  color: #fff;
  font-family: "Roboto Serif", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2509803922);
  max-width: 540px;
  width: 100%;
}
@media (max-width: 600px) {
  .bannerTop h1 {
    font-size: 16px;
  }
}
.bannerTop a {
  border-radius: 8px;
  display: block;
  position: relative;
}
.bannerTop a img {
  display: block;
  max-width: 100%;
  width: 100%;
}
.bannerTop a::before {
  content: "";
  left: 0;
  height: 100%;
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 0;
  width: 100%;
}
.bannerTop a:hover::before {
  background-color: rgba(34, 34, 34, 0.2);
}
.bannerTop a:last-child:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}
