#testimonios {
  position: relative;
  padding: 100px 48px;
  background: #0a0a0f;
}

.testimonios-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonios-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
  animation: testimoniosTitleShine 6s linear infinite;
}

@keyframes testimoniosTitleShine {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.testimonios-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #7b2fff);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  margin: 14px auto 0;
  border-radius: 2px;
}

.testimonios-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #8a9bb0;
  text-align: center;
  max-width: 520px;
  margin: 22px auto 0;
}

.testimonios-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

.testimonios-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonio-card {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 44px 48px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

.testimonio-quote-icon {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 64px;
  color: rgba(255, 255, 255, 0.04);
  z-index: 0;
}

.testimonio-avatar { flex-shrink: 0; position: relative; z-index: 1; }

.testimonio-avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 14px rgba(0,212,255,0.1);
  display: block;
}

.testimonio-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,212,255,0.06);
  border: 2px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 14px rgba(0,212,255,0.1);
  display: none; /* fallback: se muestra vía onerror si no hay foto */
  align-items: center;
  justify-content: center;
  color: rgba(0,212,255,0.55);
  font-size: 28px;
}

.testimonio-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonio-comment {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: #c0c8d8;
  font-style: italic;
}

.testimonio-stars { display: flex; gap: 4px; }

.testimonio-stars i {
  font-size: 15px;
  color: #ffb400;
  text-shadow: 0 0 6px rgba(255,180,0,0.4);
}

.testimonio-stars .fa-regular {
  color: rgba(255,180,0,0.3);
  text-shadow: none;
}

.testimonio-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.testimonio-country {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6a7a8e;
}

.testimonios-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(0,212,255,0.2);
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonio-dot.active {
  background: #00d4ff;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0,212,255,0.5);
  transform: scale(1.3);
}

.testimonio-dot:hover:not(.active) {
  background: rgba(0,212,255,0.3);
  border-color: rgba(0,212,255,0.5);
}

/* 1440px+ */
@media (min-width: 1440px) {
  #testimonios { padding: 100px 64px; }
  .testimonios-inner { max-width: 1000px; }
}

/* Laptop */
@media (max-width: 1280px) {
  #testimonios { padding: 100px 40px; }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  #testimonios { padding: 80px 32px; }
  .testimonios-inner { max-width: 100%; }
}

/* Tablet portrait */
@media (max-width: 768px) {
  #testimonios { padding: 72px 24px; }
  .testimonios-title { font-size: 28px; }
  .testimonio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
    gap: 20px;
  }
  .testimonio-quote-icon { top: 16px; right: 20px; font-size: 48px; }
  .testimonio-stars { justify-content: center; }
  .testimonio-comment { font-size: 16px; }
}

/* Móvil */
@media (max-width: 480px) {
  #testimonios { padding: 64px 16px; }
  .testimonios-title { font-size: 22px; }
  .testimonios-subtitle { font-size: 14px; }
  .testimonio-card { padding: 30px 20px; }
  .testimonio-avatar-img { width: 56px; height: 56px; }
  .testimonio-avatar-placeholder { width: 56px; height: 56px; font-size: 22px; }
  .testimonio-comment { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .testimonios-title { animation: none; }
}
