/* Testimonios — grid de cards, badge opcional de Google. */

.testimonios { padding: var(--space-2xl) 0; }
.testimonios--soft { background-color: #E5F2F4; }

.testimonios__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.testimonios__header h2 { margin-bottom: var(--space-md); }
.testimonios__subtitle { color: var(--color-gray); }

/* Badge de Google Reviews */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(42, 41, 98, 0.1);
  box-shadow: 0 4px 12px rgba(42, 41, 98, 0.06);
  text-decoration: none;
  transition: var(--transition);
  margin-top: var(--space-xs);
  color: inherit;
}
.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 41, 98, 0.10);
  color: inherit;
}
.google-badge__logo { width: 22px; height: 22px; flex-shrink: 0; }
.google-badge__rating {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
}
.google-badge__stars { display: inline-flex; gap: 2px; color: #FBBC05; font-size: 1rem; }
.google-badge__count { font-size: var(--text-sm); color: var(--color-gray); font-weight: 500; }
.google-badge__arrow { color: var(--color-orange); font-weight: 700; font-size: var(--text-sm); }
.google-badge__sep { width: 1px; height: 20px; background: rgba(42, 41, 98, 0.15); }

.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(42, 41, 98, 0.08);
  box-shadow: 0 4px 16px rgba(42, 41, 98, 0.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial__rating { color: #FBBC05; font-size: 1.1rem; letter-spacing: 2px; }

.testimonial__text {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
  font-size: var(--text-base);
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  font-size: var(--text-sm);
}
.testimonial__author { font-weight: 700; color: var(--color-dark); }
.testimonial__role { color: var(--color-gray); opacity: 0.75; }
.testimonial__source {
  font-size: var(--text-xs);
  color: var(--color-turquoise);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-top: 0.15rem;
}
