.sate-carrossel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.sate-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.sate-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.sate-slide img {
  width: 100%;
  display: block;
}

.button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: opacity 0.3s, background-color 0.3s;
}

.sate-prev {
  left: 10px;
}

.sate-next {
  right: 10px;
}

.button:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
}