.anth-home .anth-depoimentos {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.anth-home .anth-depoimentos-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  text-align: center;
  color: var(--text);
  margin: 0 0 40px;
}

.anth-home .anth-depoimentos-layout {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 24px;
  align-items: stretch;
}

.anth-home .anth-depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.anth-home .anth-depoimento-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--surface);
}

.anth-home .anth-depoimento-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.anth-home .anth-depoimento-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--teal);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.anth-home .anth-depoimento-head b {
  display: block;
  font-size: 13.5px;
  color: var(--text);
}

.anth-home .anth-depoimento-head span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.anth-home .anth-depoimento-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}

.anth-home .anth-depoimento-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.anth-home .anth-depoimentos-stats {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-content: center;
}

.anth-home .anth-depoimentos-stat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--teal);
}

.anth-home .anth-depoimentos-stat b {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.anth-home .anth-depoimentos-stat span {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .anth-home .anth-depoimentos-layout {
    grid-template-columns: 1fr;
  }
  .anth-home .anth-depoimentos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .anth-home .anth-depoimentos-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 520px) {
  .anth-home .anth-depoimentos {
    padding: 48px 0;
  }
  .anth-home .anth-depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .anth-home .anth-depoimentos-stats {
    grid-template-columns: 1fr 1fr;
  }
}
