/* ==============================================
   TESTIMONIALS — Grid de reseñas de clientas
   ============================================== */

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi-card { background: white; border-radius: 1rem; padding: 1.5rem; border: 1.5px solid var(--border); transition: transform 0.2s, box-shadow 0.2s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,45,135,0.1); }
.testi-stars { color: var(--pink); font-size: 0.85rem; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.85rem; color: #444; line-height: 1.7; font-weight: 600; margin-bottom: 1.2rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--pink-light)); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.85rem; font-weight: 800; flex-shrink: 0; }
.testi-name { font-size: 0.8rem; font-weight: 800; color: var(--black); }
.testi-loc { font-size: 0.68rem; color: var(--mid); font-weight: 600; }
.testi-verified { margin-left: auto; font-size: 0.62rem; color: var(--pink); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
