/*SWIPER PORQUE ELEGIR MOVETE APP*/
.swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* SWIPER COMO FUNCIONA */
.swiper-hworks {
    width: 100%;
    height: 260px;
    /* altura fija */
    position: relative;
}

.swiper-hworks .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-hworks .card {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 2rem;
    border-radius: 18px;
    overflow: hidden;
    background: var(--primario);
}

.swiper-hworks h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.swiper-hworks p {
    font-size: 1rem;
    min-height: 48px;
    color: white;
}

.swiper-hworks .card::before {
    content: attr(data-step);
    position: absolute;
    bottom: -10px;
    right: 15px;

    font-size: 6rem;
    font-weight: 900;

    color: rgba(255, 250, 250, 0.275);
}


.swiper-pagination-bullet {
    background: #6a0dad;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    /*bottom: 16px;*/
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6a0dad;
    
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #6a0dad;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}