.testimonials-box {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--primary-bg-color);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.testimonials-scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 1.5rem 2rem;
  scroll-snap-type: x proximity;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.depoimento.aos-animate {
  opacity: 1;
  transform: translateX(0);
}
.depoimento:nth-child(2) { transition-delay: 0.2s; }
.depoimento:nth-child(3) { transition-delay: 0.4s; }

.depoimento {
  flex: 0 0 85vw;
  min-width: 260px;
  background: var(--primary-bg-color);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--icon-color);
  font-style: italic;
  
}

.depoimento cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--dark);
  font-weight: bold;
  font-style: normal;
  font-size: 0.9rem;
}

.stars {
  display: none;
  color: var(--icon-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/*tablet – 640px*/
@media (max-width: 767px) {
  .depoimento {
    flex: 0 0 85vw;
    min-width: 260px;
    padding: 1.2rem;
  }
}

/*desktop – 1024px*/
@media (min-width: 1024px) {
  .depoimento {
    flex: 0 0 340px;
    min-width: 320px;
    padding: 1.6rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border-left-width: 5px;
  }
  .depoimento p {
    font-size: 1.05rem;
    line-height: 1.5;
  }
}