/* =========================
TESTIMONIOS
========================= */

.testimonials-minimal {
  background: var(--sand-alt);
  padding: clamp(52px, 8vw, 96px) 0;
}

.testimonials-minimal .container {
  max-width: var(--max);
}

/* Carousel container */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

/* Track */
.testimonials-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

/* Cada slide */
.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 28px);
  align-items: center;
  padding: 0 clamp(24px, 4vw, 40px);
  min-height: 300px;
  justify-content: center;
  box-sizing: border-box;
}

/* Quote */
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  max-width: 700px;
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -20px;
  font-size: 4rem;
  color: var(--gold-soft);
  opacity: 0.15;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

/* Meta info */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-stars {
  color: var(--gold-soft);
  font-size: 1.1rem;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-rating {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.testimonial-author {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================
   FLECHAS DE NAVEGACIÓN
   ============================ */

.testimonials-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.testimonials-nav .testimonials-carousel {
  flex: 1;
  min-width: 0;
}

.testimonials-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(201, 164, 106, 0.6);
  transition: color 0.35s ease, opacity 0.35s ease;
  padding: 0;
  outline: none;
}

.testimonials-arrow svg {
  width: 22px;
  height: 22px;
}

.testimonials-arrow:hover {
  color: rgba(201, 164, 106, 0.95);
}

.testimonials-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Footer */
.testimonial-footer {
  text-align: center;
  padding-top: clamp(20px, 3vw, 28px);
}

.testimonial-footer a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

.testimonial-footer a:hover {
  color: var(--gold-soft);
  border-bottom-color: var(--gold-soft);
}

/* ── TRADUCCIÓN EN TESTIMONIOS ── */
.testimonial-translation {
  font-size: 0.81rem;
  font-style: italic;
  color: var(--gray-soft);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gold-tint);
  line-height: 1.6;
}

/* =========================
RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .testimonials-minimal {
    padding: clamp(60px, 10vw, 100px) 0 clamp(40px, 7vw, 56px);
  }

  .testimonial-quote {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  }

  .testimonial-slide {
    min-height: 280px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .testimonials-arrow {
    width: 32px;
  }

  .testimonials-arrow svg {
    width: 18px;
    height: 18px;
  }

  .testimonials-minimal {
    padding: 56px 0 40px;
  }

  .testimonials-minimal .container {
    max-width: 100%;
  }

  .testimonial-slide {
    gap: 20px;
    padding: 0 24px;
    min-height: 320px;
    flex: 0 0 100%;
  }

  .testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.65;
  }

  .testimonial-quote::before {
    font-size: 3rem;
    left: -8px;
    top: -15px;
    opacity: 0.12;
  }

  .testimonial-meta {
    gap: 12px;
    flex-direction: column;
  }

  .testimonial-stars {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .testimonial-rating {
    font-size: 1.15rem;
  }

  .testimonial-author {
    font-size: 0.85rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
  }

  .testimonial-slide {
    padding: 0 20px;
    min-height: 340px;
  }
}
