
/* estilos galeria refatorada */

.thumb-active {
  border: 2px solid #22c55e;
}

/* Remove barra de rolagem visível */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Bullets */
.bullet {
  width: 24px;
  height: 1px;
  border-radius: 9999px;
  /* gray-300 */
  cursor: pointer;
  transition: background-color .2s, transform .2s;
}

.bullet:hover {
  transform: scale(1.1);
}

.bullet-active {
  background-color: #22c55e;
  height: 2px;
}