/* =========================
   TESTIMONIOS - CARRUSEL
========================= */

.testimonials{
  position: relative;
  padding: 90px 0;
  color: #fff;
  overflow: hidden;

  background:
    radial-gradient(900px 520px at 18% 20%, rgba(255,255,255,.10), transparent 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(255,255,255,.08), transparent 62%),
    linear-gradient(135deg, #3a1147 0%, #5a1366 40%, #b11d7c 110%);
}

.testi-head{
  text-align: center;
  margin-bottom: 26px;
}

.testi-subtitle{
  display: block;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 8px;
  font-weight: 700;
}

.testi-title{
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.testi-slider{
  position: relative;
  max-width: 980px;
  margin: 28px auto 0;
}

.testi-viewport{
  overflow: hidden;
  border-radius: 22px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.testi-track{
  display: flex;
  transition: transform .55s ease;
}

.testi-slide{
  min-width: 100%;
  padding: 36px 32px 30px;
}

.testi-text{
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  opacity: .95;
}

.testi-person{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.testi-avatar{
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.4);
}

.testi-name{
  font-weight: 800;
}

.testi-role{
  font-size: 13px;
  opacity: .8;
}

.testi-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
}

.testi-nav.prev{ left: -18px; }
.testi-nav.next{ right: -18px; }

.testi-dots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.testi-dots button{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}

.testi-dots button.is-active{
  width: 22px;
  background: #fff;
}

@media (max-width: 768px){
  .testi-slide{
    padding: 26px 18px;
  }
  .testi-text{
    font-size: 14px;
  }
  .testi-nav.prev{ left: 8px; }
  .testi-nav.next{ right: 8px; }
}
