.slick-banner-wrapper {
  position: relative;
  overflow-x: hidden;
}

/* Carrossel principal */
.slick-full-banner {
  width: 100vw;
}

.slick-full-banner .slick-slide {
  height: 650px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slick-full-banner .slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.title-indicator {
  cursor: pointer;
}

.slick-full-banner .slick-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  /* filter: brightness(0.6); */
  /* background-image: inherit; */
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-content {
  color: white;
  text-align: start;
  position: absolute;
  bottom: 10rem;
  width: 100%;
  right: 0;
  left: 0;
  z-index: 100;
  font-family: 'Lubrax Display', sans-serif;
}

.destaque-home-title {
  width: 36%;
  letter-spacing: 1px;
}

.btn-saiba-mais {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.5rem 1.5rem;
  background-color: #F9EE00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  font-family: "Lubrax Display", sans-serif;
}

/* .btn-saiba-mais:hover {
  background-color: #d3a901;
} */

/* Bloco fixo de títulos abaixo */
.slide-title-indicators {
  bottom: 0;
  position: absolute;
  width: 100%;
}

.container-indicator {
  max-width: 1180px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.title-indicator {
  text-align: start;
  color: #fff;
  font-size: 1rem;
  position: relative;
  min-width: 100px;
  max-width: 200px;
}

.title-text {
  margin-top: 10px;
  font-weight: normal;
  font-family: "Acumion Pro", sans-serif;
  letter-spacing: 1px;
}

.progress-bar {
  height: 2px;
  width: 0%;
  background-color: #84EA00;
  transition: width 0.3s ease;
}

/* Animação */
@keyframes progressFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .slick-main .slick-slide {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 1.3rem;
    width: 100%;
  }

  .destaque-home-title {
    width: 100%;
  }

  .btn-saiba-mais {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    margin-top: 2rem;
  }

  .title-indicator {
    font-size: 0.85rem;
    text-align: start;
    max-width: 150px;
    min-width: auto;
  }
}

/* o container do slick precisa ser relativo */
.slick-banner-wrapper {
  position: relative;
}

/* container das bolinhas só no banner home */
.slick-banner-wrapper .slick-dots {
  position: absolute;
  height: 20px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  gap: 12px;
  padding: 4px 20px;
  /* espaço interno da cápsula */
  margin: 0;
  list-style: none;
  background: #c5c5c54d;
  /* fundo escuro translúcido */
  border-radius: 20px;
  /* formato pill */
  width: auto;
  /* não ocupar 100% */
  z-index: 99;
}

.slick-banner-wrapper .slick-dots li button:before {
  display: none;
}

.slick-banner-wrapper .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0;
  padding: 0;

}


/* bolinhas */
.slick-banner-wrapper .slick-dots li button {
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background: #bbb;
  /* cinza claro */
  border: none;
  font-size: 0;
  cursor: pointer;
  opacity: 0.8;
  transition: background 0.3s, opacity 0.3s;
}

/* ativa */
.slick-banner-wrapper .slick-dots li.slick-active button {
  background: #fff;
  /* branca */
  opacity: 1;
  width: 9px;
}