/* ===== Opiniones ===== */

.testimonials {
  background-color: #f1f1f1;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 50px;
  margin-bottom: 30px;
}

.testimonials h2 {
  font-family: 'Prata', serif;
  margin-bottom: 2rem;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  justify-content: center; /* centra horizontal */
  align-items: center;     /* centra vertical */
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  min-width: 250px;
  max-width: 23%;
  flex: 0 0 auto;
  scroll-snap-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stars {
  color: black;
  margin-bottom: 0.5rem;
}