.carousel-gal {
  width: 100%;
  max-width: 60%; /* ajustável */
  /* overflow: hidden; */
  position: relative;
  /* border-radius: 20px; */ /* igual ao visual da imagem */
}

.carousel-track-gal {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
}

.carousel-track-gal img {
  width: 100%;
  flex-shrink: 0;
  /* border-radius: 20px; */
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .dot.active {
  background: #5c2cff; /* roxo igual ao site */
}

@media only screen and (max-width: 765px) {
  [class*="col-"] {
    width: 100%;
  }
  .carousel-gal {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    /* border-radius: 20px; */
  }
}
