#testimonials {
  background: #f4f6fb;
  padding: 110px 0;
}

.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Cuadrícula de testimonios (todos visibles) */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testi-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e4e9f2;
  border-radius: 16px;
  padding: 36px 34px 30px;
  box-shadow: 0 10px 30px rgba(15, 31, 61, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: #c9a84c;
  box-shadow: 0 18px 44px rgba(201, 168, 76, 0.18);
}

.testi-quote {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 40px;
  color: rgba(201, 168, 76, 0.18);
}

.testi-stars {
  color: #c9a84c;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.5;
  color: #233252;
  margin-bottom: 26px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #eef1f7;
  padding-top: 20px;
}

.testi-avatar {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #c9a84c, #e0bf6e);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #ffffff;
}

.testi-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0f1f3d;
  margin-bottom: 2px;
}

.testi-meta {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #b0892f;
}

@media (prefers-reduced-motion: reduce) {
  .testi-card:hover { transform: none; }
}

@media (min-width: 1440px) {
  .testimonials-inner { max-width: 1340px; padding: 0 64px; }
}

@media (max-width: 1280px) {
  #testimonials { padding: 90px 0; }
  .testimonials-inner { padding: 0 40px; }
}

@media (max-width: 1024px) {
  .testimonials-inner { padding: 0 32px; }
  .testi-grid { gap: 22px; }
}

@media (max-width: 768px) {
  #testimonials { padding: 70px 0; }
  .testimonials-inner { padding: 0 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-text { font-size: 20px; }
}

@media (max-width: 480px) {
  .testimonials-inner { padding: 0 16px; }
  .testi-card { padding: 30px 24px 26px; }
}
