.slider-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  gap: 20px;
}

.foto {
  min-width: 300px;
  width: 300px;
  height: 400px;
  background: #2a2a2a;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.6s ease;
  position: relative;
}

.foto video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.foto img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  background: #51CE54;
  color: #1a1a1a;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #51CE56;
  transform: scale(1.05);
}

.btn:disabled {
  background: #555;
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 1200px) {
  .slider-container {
    margin: 0 auto;
    width: 96%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
  }
  .btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}/*# sourceMappingURL=slider.css.map */