.bannerTop {
  background-color: #215E84;
  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: 600px) {
  .bannerTop::after {
    content: none;
  }
}
@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: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0px;
  max-width: 450px;
  width: 100%;
}
@media (max-width: 600px) {
  .bannerTop h1 {
    font-size: 16px;
  }
}
.bannerTop a {
  border-radius: 8px;
  display: block;
  position: relative;
}
.bannerTop a img {
  height: 30px;
  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);
}
.bannerTop .d-flex:not(.container) {
  margin-left: auto;
}
@media (max-width: 600px) {
  .bannerTop .d-flex:not(.container) {
    margin-left: 0;
  }
}
