.container-slider-produtos {
  display: flex;
  width: 100%;
  min-height: 50vh;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}

.container-images {
  position: relative;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 300px;
}

.slider-produto {
  opacity: 0;
  transition: opacity 0.2s;
  position: absolute;
  width: 100%;
  border-radius: 10px;
}

.on {
  opacity: 1;
}

.prev-button,
.next-button {
  width: 50px;
  height: 50px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.prev-button img,
.next-button img {
  width: 100%;
  height: 100%;
}

.prev-button {
  transform: rotate(180deg);
}
