.depoimentos__stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.depoimentos__stats strong,
.depoimentos__stats span {
  padding: 13px 20px;
  border: 1px solid rgba(184,148,84,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 34px rgba(2,10,17,.055);
  backdrop-filter: blur(18px);
  font-size: .92rem;
}

.depoimentos__stats strong {
  color: var(--navy-900);
  font-weight: 600;
}

.reviews-shell {
  overflow: hidden;
  border-radius: 34px;
}

.reviews-track {
  display: flex;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}

.review-card {
  min-width: calc(33.333% - 18px);
  margin: 9px;
  padding: 30px;
  border: 1px solid rgba(184,148,84,.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
  box-shadow: 0 18px 46px rgba(2,10,17,.07);
}

.review-card__stars {
  color: var(--gold-700);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-card p {
  color: var(--muted);
  font-weight: 300;
  font-size: .96rem;
}

.review-card strong {
  color: var(--navy-900);
  font-weight: 600;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
}

.reviews-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(9,33,52,.22);
  cursor: pointer;
  transition: width .25s ease, height .25s ease, background .25s ease;
}

.reviews-dots button.is-active {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-300));
}

@media (max-width: 920px) {
  .review-card { min-width: calc(50% - 18px); }
}

@media (max-width: 640px) {
  .review-card { min-width: calc(100% - 18px); }
}