<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.testimonials-section {
  padding: 80px 20px;
  background-color: var(--background);
  overflow: hidden;
  position: relative;
}

.testimonials-section h2 {  
  text-align: center;
  margin-bottom: 10px;
  color: var(--text);
}

.testimonials-section .section-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Contenedor del track horizontal */
.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
  padding: 16px;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 15s linear infinite;
  will-change: transform;
}

.testimonials-track-wrapper:hover .testimonials-track {
  animation-play-state: paused;
}

/* Tarjetas */
.testimonial-card {
  flex: 0 0 300px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 27px 14px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content .stars {
  color: #ffc107;
  margin-bottom: 12px;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-author h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
}

.testimonial-author p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 250px;
  }
}
</pre></body></html>