.hero-banner {
  position: relative;
  width: 100vw; /* 100% da viewport */
  margin-left: calc(50% - 50vw); /* "puxa" para esquerda */
}


.hero-swiper {
  width: 100%;
  height: auto;
  position: relative; /* MUITO IMPORTANTE */
}

.hero-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
  position: relative;
}

.hero-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Paginação sobre a imagem */
.swiper-pagination {
  position: absolute;
  bottom: 20px; /* distância do fundo */
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7); /* bolinha branca semi-transparente */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #004b8d; /* bolinha ativa em azul */
}

/* SETAS personalizadas */
.swiper-button-next,
.swiper-button-prev {
  color: #004b8d;
  background: rgba(2, 5, 14, 0);
  padding: 10px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0; /* Escondidas inicialmente */
  visibility: hidden;
}

/* Mostrar as setas apenas no hover do carrossel */
.hero-swiper:hover .swiper-button-next,
.hero-swiper:hover .swiper-button-prev {
  opacity: 1;
  visibility: visible;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-swiper .swiper-slide {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-swiper .swiper-slide {
    height: 180px;
  }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}


