.testimonials-section {
  padding: 60px 20px;
  background: #111;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 25px var(--neon-red), 0 0 60px rgba(255, 23, 68, 0.4);
  animation: argbGlowBrutal 3s ease-in-out infinite alternate;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(145deg, #1a1a1a, #111);
  border-radius: 18px;
  padding: 30px 25px;
  max-width: 320px;
  text-align: left;
  position: relative;
  box-shadow:
    0 0 20px rgba(0, 255, 255, 0.3),
    0 0 40px rgba(255, 0, 255, 0.2),
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.04) rotateY(2deg);
  box-shadow:
    0 0 30px #0ff,
    0 0 60px #ff00ff,
    inset 0 0 15px rgba(255, 255, 255, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px #0ff, 0 0 20px rgba(0, 255, 255, 0.3);
}

.testimonial-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
}

.testimonial-header p {
  font-size: 0.9rem;
  color: #999;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.testimonial-text::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  color: var(--neon-red);
  line-height: 1;
}

/* Section title neón */
.testimonials-section .section-title {
  font-size: 3rem;
  text-shadow: 0 0 15px #0ff, 0 0 40px #f0f;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 3rem;
}
