.depoimentos {
  padding: clamp(2rem, 5vw, 4rem) 6rem;
  background: #fff;
  text-align: center;
}

.depoimentos h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible !important;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden; /* controla o scroll horizontal */
  overflow-y: visible; /* libera as sombras no topo e bottom */
  scroll-behavior: smooth;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.arrow {
  color: #fff;
  background-color: #353535;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 8px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.arrow.active {
  background-color: #353535;
}

.arrow:hover:not(.disabled) {
  background-color: #111;
  color: #fff;
}

.arrow.disabled {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(0.5);
}

.box-depoimento {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: 100%;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 1px 6px 9px 0px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.box-depoimento .quote {
  font-size: 1rem;
  color: #6b7887;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-weight: 500;
  min-height: 282px;
}
.box-depoimento .quote span img {
  font-size: 20px;
  rotate: 180deg;
  width: 10%;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  display: block;
  font-weight: 700;
  color: #111;
}

.author span {
  font-size: 0.875rem;
  color: #666;
}

/* Responsividade */
@media (max-width: 1024px) {
  .depoimentos {
    padding: 2rem 3rem;
  }

  .slider {
    gap: 1rem;
  }

  .box-depoimento {
    flex: 0 0 80%;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
  .depoimentos {
    padding: 1.5rem;
  }

  .depoimentos h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .slider-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .slider {
    gap: 1rem;
  }

  .box-depoimento {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 1.5rem;
    text-align: left;
  }

  .box-depoimento .quote {
    font-size: 0.95rem;
  }

  .author {
    gap: 0.6rem;
  }

  .author img {
    width: 40px;
    height: 40px;
  }
}
