.carrosselTopo .banners-container {
  display: flex;
  height: 400px;
  overflow: hidden;
  border-radius: 0 10px;
  margin-top: -24px;
}

.carrosselTopo .banner {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  font-weight: bold;
  padding: 20px;
  margin-right: 12px;
  border-radius: 0 0 20px 20px;

  background-image: var(--banner-mobile);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  @media (min-width: 991px) {
    background-image: var(--banner-desktop);
  }

  @media (min-width: 991px) {
    padding: 0 0 100px 100px;
  }
}

.carrosselTopo .banner {
  position: relative;
}
.carrosselTopo .banner.expanded .banner-card-link{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.carrosselTopo .banner.com-blur::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(3, 42, 100, 0.104) 0.86%,
    rgba(3, 42, 100, 0.8) 82.91%
  );
  z-index: 1;
  border-radius: 0 0 20px 20px;
}

.carrosselTopo .banner-content {
  z-index: 2;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-align: left;
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100%;

  @media (min-width: 991px) {
    bottom: 100px;
    left: 100px;
    width: 700px;
  }
}

.carrosselTopo .banner-content h1{
  max-width: 700px;
}

.carrosselTopo .banner-content p{
  font-size: 14px;
  font-weight: 100;
}

/* Expande o banner ativo */
.carrosselTopo .banner.expanded {
  flex: 8;
}

/* Minimiza os outros */
.carrosselTopo .banner.minimized {
  display: none;
  @media (min-width: 991px) {
    display: block;
    flex: 1;
    filter: brightness(0.7);
  }
}

/* Oculta o texto quando o banner está minimizado */
.carrosselTopo .banner.minimized .banner-content h1,
.carrosselTopo .banner.minimized .banner-content p,
.carrosselTopo .banner.minimized .banner-content a.btn.btn-sky2 {
  opacity: 0 !important;
  pointer-events: none;
}

/* Mostra o texto no banner expandido */
.carrosselTopo .banner.expanded .banner-content h1,
.carrosselTopo .banner.expanded .banner-content p
.carrosselTopo .banner.expanded .banner-content a.btn.btn-sky2 {
  opacity: 1;
}

.desktop .carrossel-mobile{
  display:none;
}

/* MOBILE */

.mobile .carrossel-desktop{
    display:none;
}

.nav-indicator {
  gap: 15px;
}

.arrow {
  font-weight: bold;
  color: #002664; /* azul escuro */
  cursor: pointer;
  user-select: none;
  transition: opacity 0.3s;
}

.arrow:hover {
  opacity: 0.7;
}

.indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar {
  width: 40px;
  height: 6px;
  background-color: #e5e5e5; /* cinza */
  border-radius: 3px;
  transition: background-color 0.3s;
}

.bar.active {
  background-color: #E51C67; /* rosa ativo */
}

.carrossel-mobile{
  overflow:hidden !important;
}

.carrossel-mobile .carousel-wrapper{
  overflow:hidden !important;
  width:100% !important;
}

.carrossel-mobile .banners-container{
  display:flex !important;
  transition:transform .5s ease !important;
  width:100% !important;
  overflow:visible;
}

.carrossel-mobile .banner{
  min-width:100% !important;
  width:100% !important;
  flex-shrink:0 !important;
  height:430px !important;
  border-radius:35px !important;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  position:relative !important;
  overflow:hidden !important;
}

.carrossel-mobile .banner .overlay{
  position:absolute !important;
  inset:0 !important;
  background:linear-gradient(
      to top,
      rgba(0,0,0,.65),
      rgba(0,0,0,.15)
  ) !important;
}

.carrossel-mobile .banner-content{
  position:absolute !important;
  left:30px !important;
  bottom:35px !important;
  z-index:2 !important;
  color:#fff !important;
  max-width:80% !important;
}

.carrossel-mobile .banner-content h1{
  font-size:48px !important;
  font-weight:700 !important;
  line-height:1.1 !important;
  margin-bottom:15px !important;
  color:#fff !important;
}

.carrossel-mobile .banner-content p{
  font-size:20px !important;
  line-height:1.4 !important;
  margin-bottom:20px !important;
  color:#fff !important;
}

.carrossel-mobile .btn-sky2{
  background:#0095DA !important;
  border-radius:30px !important;
  padding:12px 28px !important;
  color:#fff !important;
  font-weight:600 !important;
  text-decoration:none !important;
  display:inline-block !important;
}

.carrossel-mobile .nav-indicator{
  width:100% !important;
}

.carrossel-mobile .nav-indicator .arrow{
  cursor:pointer !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.carrossel-mobile .indicators{
  gap:10px !important;
}

.carrossel-mobile .bar{
  width:55px !important;
  height:6px !important;
  background:#ddd !important;
  border-radius:30px !important;
  transition:.3s !important;
}

.carrossel-mobile .bar.active{
  background:#E7357A !important;
}

@media(max-width:768px){

  .carrossel-mobile .banner{
      height:380px !important;
      border-radius:30px !important;
  }

  .carrossel-mobile .banner-content{
      left:25px !important;
      bottom:25px !important;
      max-width:85% !important;
  }

  .carrossel-mobile .banner-content h1{
      font-size:28px !important;
  }

  .carrossel-mobile .banner-content p{
      font-size:16px !important;
  }

  .carrossel-mobile .bar{
      width:40px !important;
  }

}