#testimonios-clientes {
  background:
    linear-gradient(180deg, #f7f7f7 0%, #f1f1f1 100%);
  position: relative;
}

#testimonios-clientes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}
.testimonial-card {
  background: #ffffff;
  border-left: 4px solid #E10600;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0,0,0,0.12),
    0 6px 12px rgba(0,0,0,0.06);
}
#testimonios-clientes h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.5px;
}

#testimonios-clientes p.lead {
  max-width: 720px;
  margin: 0 auto;
}
/* Tipografía más respirada */
.testimonial-card p {
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Encabezado con más espacio visual */
#testimonios-clientes .text-center.mb-5 {
  margin-bottom: 3.5rem;
}

