/* ===== TESTIMONIOS ===== */
.testimonios {
  padding: 80px 7%;
  background-color: #1c1c1c;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
  text-align: center;
}

.testimonios::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #1c1c1c 100%);
  pointer-events: none;
  z-index: 0;
}

.testimonios > * {
  position: relative;
  z-index: 1;
}

/* Grid de testimonios */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tarjeta de testimonio */
.test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.test-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.08),
    rgba(5, 132, 80, 0.06)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 22px;
}

.test-card:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 152, 219, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.test-card:hover::before {
  opacity: 1;
}

/* Comillas decorativas */
.test-comillas {
  font-size: 4rem;
  line-height: 0.6;
  color: #3498db;
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
  user-select: none;
}

/* Texto del testimonio */
.test-texto {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  position: relative;
  z-index: 2;
  margin: 0;
  flex: 1;
}

/* Divisor */
.test-divisor {
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3498db, #058450);
  position: relative;
  z-index: 2;
}

/* Autor */
.test-autor {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3498db, #058450);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.25);
}

.test-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.test-nombre {
  color: #ffffff;
  font-size: 0.97rem;
  font-weight: 700;
  margin: 0;
}

.test-rol {
  color: #a0a0a0;
  font-size: 0.83rem;
  margin: 0;
}

/* Estrellas */
.test-estrellas {
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.estrella {
  color: #3498db;
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .testimonios {
    padding: 60px 5%;
  }

  .testimonios-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .test-card {
    padding: 24px 20px;
  }

  .test-texto {
    font-size: 0.92rem;
  }
}
