/* ============================================
   TESTIMONIOS — Propuesta 4: FIRMEZA variante
   ============================================ */

.testimonios {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  padding: 100px 28px;
}

.testimonios__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Header */
.testimonios__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.testimonios__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.testimonios__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.testimonios__subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.65;
}

/* Cards row */
.testimonios__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonios__card {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.testimonios__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.4);
}

.testimonios__stars {
  font-size: 18px;
  color: var(--color-secondary);
  letter-spacing: 2px;
}

.testimonios__quote {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  flex: 1;
}

/* Author */
.testimonios__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.testimonios__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonios__author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonios__author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}

.testimonios__author-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .testimonios { padding: 80px 20px; }
  .testimonios__card { flex: 1 1 100%; max-width: 100%; }
}
