.testimonios-carrusel {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #010440;
  padding: 64px 0;
}
.testimonios-carrusel__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonios-carrusel__container {
    max-width: 992px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1360px) {
  .testimonios-carrusel__container {
    max-width: 1440px;
  }
}
.testimonios-carrusel__title {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-h3);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 32px;
}
.testimonios-carrusel__track-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonios-carrusel__track {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: stretch;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.testimonios-carrusel__track::-webkit-scrollbar {
  display: none;
}
.testimonios-carrusel__nav {
  flex-shrink: 0;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: background var(--jav-transition);
}
.testimonios-carrusel__nav:hover {
  background: rgba(255, 255, 255, 0.6);
}
.testimonios-carrusel__nav-icon {
  display: block;
  width: 11px;
  height: 22px;
  background-color: #ffffff;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.testimonios-carrusel__nav--prev .testimonios-carrusel__nav-icon {
  mask-image: url("../../img/general-icons/next.svg");
  -webkit-mask-image: url("../../img/general-icons/next.svg");
}
.testimonios-carrusel__nav--next .testimonios-carrusel__nav-icon {
  mask-image: url("../../img/general-icons/prev.svg");
  -webkit-mask-image: url("../../img/general-icons/prev.svg");
}
.testimonios-carrusel__card {
  flex: 0 0 calc((100% - 24px * 2) / 3);
  max-width: 367px;
  height: 319px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #5C5C5C;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.testimonios-carrusel__card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testimonios-carrusel__card-image img,
.testimonios-carrusel__card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.testimonios-carrusel__card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.testimonios-carrusel__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(1, 4, 64, 0.75) 0%, rgba(1, 4, 64, 0.15) 60%, rgba(1, 4, 64, 0) 100%);
}
.testimonios-carrusel__card-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #FFFFFF;
  text-align: center;
}
.testimonios-carrusel__name {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-md);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
.testimonios-carrusel__subtitle {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-sm);
  font-weight: 400;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
.testimonios-carrusel__cta {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-lg);
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: underline;
  margin-top: 10px;
}
.testimonios-carrusel__cta:hover {
  color: #FFFFFF;
}
.testimonios-carrusel__dots {
  margin-top: 32px;
  justify-content: center;
}
.testimonios-carrusel__dots .jav-dots__dot {
  background: transparent !important;
  border: 1.5px solid #ffffff !important;
  transform: none !important;
}
.testimonios-carrusel__dots .jav-dots__dot.is-active {
  background: #ffffff !important;
}
@media (max-width: 767px) {
  .testimonios-carrusel {
    padding: 40px 0;
  }
  .testimonios-carrusel__title {
    font-size: var(--jav-font-h5);
  }
  .testimonios-carrusel__card {
    flex: 0 0 min(85vw, 320px);
    max-width: none;
  }
}
