.testimonios { background: var(--bg-main); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonio-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 200ms, box-shadow 200ms, transform 200ms;
}
.testimonio-card:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,0,0.08);
  transform: translateY(-2px);
}

.testimonio-card__stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
  font-size: 16px;
  margin-bottom: 1rem;
}

.testimonio-card__quote-mark {
  font-size: 56px;
  color: var(--orange);
  line-height: 0.8;
  font-family: Georgia, serif;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.testimonio-card__text {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonio-card__result {
  padding: 0.5rem 0.85rem;
  background: rgba(255,107,0,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 1.25rem;
}

.testimonio-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonio-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-orange);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonio-card__name  { font-weight: 700; font-size: 15px; color: var(--text-primary); }
.testimonio-card__rubro { font-size: 13px; color: var(--text-muted); }

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