/* ── Testimonios ── */
.tst-section { background: #fff; padding: 56px 24px; }
.tst-inner { max-width: 1100px; margin: 0 auto; }

.tst-header {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .82rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #0a9396; margin-bottom: 36px;
}
.tst-header svg { stroke: #0a9396; }

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tst-card {
  background: #f8fafc; border: 1px solid #e5e7eb;
  border-radius: 14px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
}

.tst-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tst-stars    { display: flex; gap: 2px; }

.tst-avatar {
  width: 52px; height: 52px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid #e5e7eb;
}
.tst-avatar-wrap { width: 52px; height: 52px; }
.tst-avatar-placeholder {
  width: 52px; height: 52px; border-radius: 50%;
  background: #0a9396; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900;
}

.tst-texto {
  font-size: .88rem; color: #374151; line-height: 1.7; margin: 0; flex: 1;
}

.tst-autor { display: flex; flex-direction: column; gap: 2px; }
.tst-autor strong { font-size: .88rem; font-weight: 700; color: #14213d; }
.tst-autor span   { font-size: .78rem; color: #9ca3af; }

@media (max-width: 700px) { .tst-grid { grid-template-columns: 1fr; } }
