/* --- SECCIÓN DE TESTIMONIOS (Estilo Oscuro/Misterioso) --- */
.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.testimonio-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0a0a0f;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.testimonio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 2;
}

.testimonio-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.9),
    0 0 25px rgba(212, 175, 55, 0.15);
}

.testimonio-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
  filter: sepia(30%) brightness(0.8) contrast(1.2);
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
  position: relative;
  z-index: 1;
}

.testimonio-card:hover .testimonio-img {
  transform: scale(1.05);
  filter: sepia(0%) brightness(1) contrast(1.1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .testimonios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  .testimonio-img {
    max-height: 400px;
  }
}
