/* banner-section.css */

/* explode o banner para 100vw e 800px de altura */
section.banner-carousel {
  position: relative;
  width: 100vw !important;
  height: 620px !important;
  margin: 0 calc(-50vw + 50%) !important;
  overflow: hidden;
  background: #000;
  padding: 0;
}

/* wrapper interno só com 100% do banner */
section.banner-carousel .banner-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* slides posicionados um sobre o outro */
section.banner-carousel .banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}
section.banner-carousel .banner-slide.active {
  opacity: 1;
  z-index: 1;
}

/* cover + center para imagem e vídeo */
section.banner-carousel .banner-slide img,
section.banner-carousel .banner-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* setas dobram de tamanho */
section.banner-carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px !important;
  height: 80px !important;
  background: rgba(0,0,0,0.0);
  color: #fff;
  font-size: 80px !important;
  line-height: 80px !important;
  text-align: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
section.banner-carousel .carousel-nav.prev {
  left: calc((100vw - 1320px) / 2) !important;
}
section.banner-carousel .carousel-nav.next {
  right: calc((100vw - 1320px) / 2) !important;
}


