.banner-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.banner-bloco img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: auto;
  @media (max-width: 749px) {
  }
}

.banner-bloco picture {
  display: flex;
  justify-content: center;
}

.banner-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: auto;
  @media (max-width: 749px) {
  }
}

/* Swiper pagination */
#ident_pag {
  bottom: 32px;
}

#ident_pag .swiper-pagination-bullet {
  bottom: 32px;
  background-color: palevioletred;
}

#ident_pag .swiper-pagination-bullet-active {
  width: 24px;
  height: 12px;
  border-radius: 12px;
}

#banner-bloco-pagination .swiper-pagination-bullet {
  background-color: grey;
}

#banner-bloco-pagination .swiper-pagination-bullet-active {
  background-color: white;
}

/* Setas de navegação - glassmorphism */
.banner-slide-prev,
.banner-slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  transition: all ease 0.3s;
}

.banner-slide-prev svg,
.banner-slide-next svg {
  width: 20px;
  height: 20px;
}

.banner-slide-prev:hover,
.banner-slide-next:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.banner-slide-prev {
  left: 14px;
}

.banner-slide-next {
  right: 14px;
}

@media (max-width: 749px) {
  .banner-slide-prev,
  .banner-slide-next {
    width: 36px;
    height: 36px;
  }

  .banner-slide-prev svg,
  .banner-slide-next svg {
    width: 18px;
    height: 18px;
  }

  .banner-slide-prev {
    left: 10px;
  }

  .banner-slide-next {
    right: 10px;
  }
}
