/*
 *= require trix
 *= require trix_dark
 */

#particles-js {
    position: fixed;
    inset: 0;
    z-index: -10; /* Garante que fique no fundo */
    opacity: 0.4; /* Mantém a opacidade do seu exemplo */
    pointer-events: none; /* Impede que as partículas interfiram com cliques */
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet{
  background-color: greenyellow;
}

/* Estilização dos controles do Swiper */
.swiper-button-prev-destaques, 
.swiper-button-next-destaques {
  color: #84CC16; /* Cor do highlight */
}

.swiper-pagination-destaques .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #6B7280; /* Cor cinza */
  opacity: 1;
}

.swiper-pagination-destaques .swiper-pagination-bullet-active {
  background: #84CC16; /* Cor do highlight */
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #84CC16;
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #84CC16;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}