/* =========================

   Testimoniale – slider (versiune finală fără icon)

   ========================= */

.slider-testimoniale {
  background: linear-gradient(180deg, #538eff1f 0%, #538eff0f 90%);

  padding: 70px 0 90px;
}

.slider-testimoniale .testimoniale-slider {
  max-width: 1380px;

  margin: 0 auto;

  padding: 0 1.5rem;

  position: relative;
}

/* viewport */

.slider-testimoniale .testi-shell {
  width: 100%;

  max-width: 1280px;

  margin: 0 auto;

  overflow: hidden;

  position: relative;

  padding-bottom: 60px;
}

/* bandă */

.slider-testimoniale .testi-track {
  --gap: 1.5rem;

  display: flex;

  gap: var(--gap);

  transition: transform 0.35s ease;

  will-change: transform;
}

/* card testimonial */

.slider-testimoniale .testi-card {
  background: #fff;

  border: 1px solid rgba(0, 119, 255, 0.05);

  border-radius: 26px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  gap: 10px;

  padding: 4rem 4.4rem 4rem;

  text-align: center;

  box-shadow: 0 12px 32px rgba(0, 119, 255, 0.05);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-testimoniale .testi-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 45px rgba(0, 119, 255, 0.12);
}

/* text */

.slider-testimoniale .testi-card p {
  font-size: 14px;

  line-height: 1.55;

  color: var(--color-text);

  margin: 0;
}

/* footer + buton */

.slider-testimoniale .testi-footer {
  display: flex;

  justify-content: center;
}

.slider-testimoniale .testi-footer a {
  display: inline-flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 1rem;

  color: var(--color-primary);

  font-weight: 600;

  text-decoration: none;

  font-size: 1.4rem;

  transition: background 0.25s ease, transform 0.15s ease;

  min-width: 160px;
}

.slider-testimoniale .testi-footer a:hover {
  transform: translateY(-2px);

  color: var(--color-secondary);
}

/* icon download */

.slider-testimoniale .testi-footer a .icon {
  font-family: "Material Symbols Outlined";

  font-size: 4.8rem;

  line-height: 1;

  font-weight: 200;
}

/* eliminăm toate iconițele globale adăugate de teme pe linkuri */

.slider-testimoniale a[href$=".pdf"]::before,
.slider-testimoniale a[href$=".doc"]::before,
.slider-testimoniale a[href$=".docx"]::before,
.slider-testimoniale a[href$=".xls"]::before {
  display: none !important;

  content: none !important;
}

/* navigație */

.slider-testimoniale .navigation {
  display: flex;

  flex-direction: column;

  gap: 0.75rem;

  align-items: center;

  justify-content: center;

  margin-top: -10px;
}

.slider-testimoniale .navigation .nav-buttons {
  display: flex;

  gap: 0.75rem;
}

.slider-testimoniale .navigation a {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: #fff;

  border: 1px solid rgba(0, 119, 255, 0.08);

  display: grid;

  place-items: center;

  color: var(--color-primary, #0077ff);

  box-shadow: 0 14px 24px rgb(83 142 255 / 20%);

  text-decoration: none;

  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.slider-testimoniale .navigation a:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 34px rgba(0, 119, 255, 0.28);
}

.slider-testimoniale .navigation a.is-disabled {
  opacity: 0.4;

  pointer-events: none;

  box-shadow: none;
}

.slider-testimoniale .navigation .nav-progress {
  margin: 0;

  font-weight: 600;

  color: var(--color-primary);

  text-align: center;
}

/* responsive */

@media (max-width: 1024px) {
  .slider-testimoniale .testi-shell {
    max-width: 600px;
  }
}

@media (max-width: 460px) {
  .slider-testimoniale {
    padding: 40px 0 40px;
  }

  .slider-testimoniale .testi-card {
    padding: 3rem 3rem 3rem;
  }
}
