.banner-carousel {
    width: 100vw;
    height: calc(100vh - 80px); /* ajuste provisório sem header */
    position: relative;
    overflow: hidden;
  }
  
  .banner-carousel .swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .banner-content {
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 10px;
    margin: 30px 100px;
    position: absolute;
    top: 30%;
  }
  
  .banner-button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  /* Swiper Controls */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
    color: white;
    width: 40px;
    height: 40px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }
  
  /* Pagination */
  .swiper-pagination {
    bottom: 20px !important;
    text-align: center;
  }
  
  .swiper-pagination-bullet {
    background-color: white;
    opacity: 0.7;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #ff0000;
  }
  