.testimonials {
  background: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

/* TITULO */
.testimonials h2 {
  font-size: 2.4rem;
  color: #0a2540;
  margin-bottom: 10px;
}

.testimonials p.subtitle {
  color: #6b7c93;
  margin-bottom: 50px;
}

/* CARD */
.test-card {
  cursor: pointer;
  background: #f9fbff;
  padding: 30px;
  border-radius: 18px;
  transition: all 0.35s ease;
  border: 1px solid #e3ecf5;
  text-align: left;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* EFECTO AZUL */
.test-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(0,123,255,0.2), transparent);
  transition: 0.5s;
}

.test-card:hover::before {
  left: 100%;
}

/* HOVER */
.test-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
  border-color: #007bff;
}

/* NOMBRE */
.test-card h3 {
  color: #0a2540;
  margin-bottom: 8px;
}

/* TEXTO */
.test-card p {
  color: #425466;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* ESTRELLAS */
.stars {
  color: #f5a623;
  margin-bottom: 10px;
}

/* LINK */
.test-card span {
  color: #007bff;
  font-weight: 600;
  font-size: 0.85rem;
}

/* SWIPER */
.swiper {
  padding-bottom: 40px;
}
/* 🔥 HACE TODAS LAS TARJETAS IGUALES */
.swiper-slide {
  display: flex;
  height: auto;
}

.test-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 220px; /* 👈 AJUSTA ESTE VALOR */
}