/* ── RESEÑAS ─────────────────────────────────────────────── */
.resenas {
  background: #f8f9fc;
  padding: 80px 64px;
}

.resenas__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.resenas__header {
  text-align: center;
  margin-bottom: 52px;
}

.resenas__tag {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.resenas__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.15;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.resenas__sub {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.resenas__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Card ── */
.resena-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.resena-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.resena-card__stars {
  display: flex;
  gap: 3px;
}

.resena-card__star {
  width: 16px;
  height: 16px;
  fill: #e2e8f0;
  stroke: #e2e8f0;
  stroke-width: 1;
}

.resena-card__star.is-filled {
  fill: #f59e0b;
  stroke: #f59e0b;
}

.resena-card__texto {
  font-size: 14.5px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
  font-style: italic;
  flex: 1;
}

.resena-card__autor {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.resena-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-main);
}

.resena-card__nombre {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.resena-card__cargo {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .resenas { padding: 48px 20px; }
  .resenas__grid { grid-template-columns: 1fr; }
}
