  .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: center;
    color: white;
    font-weight: bold;
    padding: 20px;
    margin-right: 12px;
    border-radius: 0 0 20px 20px;
  }

  .carrosselTopo .banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
    border-radius: 0 0 20px 20px;
  }

  .carrosselTopo .banner-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    top: 38%;
    left: 10%;
    text-align: left;
  }

  .carrosselTopo .banner-content h1{
    width: 60%;
  }

  .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 {
    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 {
    opacity: 0 !important;
    transform: translateY(20px);
    pointer-events: none;
  }

  /* Mostra o texto no banner expandido */
  .carrosselTopo .banner.expanded .banner-content h1,
  .carrosselTopo .banner.expanded .banner-content p {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-indicator {
    gap: 15px;
  }

  .arrow {
    font-size: 1.8rem;
    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 */
  }