/* ==========================================================================
   OPINIONES — carrusel de testimonios con scroll-snap (sin JavaScript)
   ========================================================================== */
.testi-track {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi {
  flex: 0 0 min(86%, 360px);
  scroll-snap-align: center;
  padding: 1.7rem 1.5rem;
}
.testi__texto { font-size: .95rem; color: var(--tinta); margin-top: .9rem; }
.testi__pie { display: flex; align-items: center; gap: .8rem; margin-top: 1.1rem; }
.testi__avatar {
  width: 40px; height: 40px; border-radius: var(--radio-s); flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--menta); color: var(--primario);
  font-family: var(--f-display); font-weight: 600;
}
.testi__nombre { font-size: .85rem; font-weight: 600; }
.testi__treat { font-size: .74rem; color: var(--acento); }
.testi-hint { text-align: center; font-size: .7rem; font-weight: 600; color: var(--gris-suave); letter-spacing: .16em; text-transform: uppercase; }

@media (min-width: 768px) {
  .testi { flex-basis: 340px; }
}
