
.swiper-progress__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 4px;
    background-color: #fff3;
    /* Resetear la apariencia nativa */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none; /* Importante también */
}

/* Para Chrome/Safari */
.swiper-progress__bar::-webkit-progress-bar {
    background-color: #fff3;
}

.swiper-progress__bar::-webkit-progress-value {
    background-color: #fff;
}

/* Para Firefox */
.swiper-progress__bar::-moz-progress-bar {
    background-color: #fff;
}

.swiper-progress__bar::-webkit-progress-value,
.swiper-progress__bar::-moz-progress-bar {
    background-color: #fff;
}

.swiper-progress__bar--white-20 {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.swiper-progress__bar--white-20::-webkit-progress-bar {
    background-color: transparent;
}

.swiper-progress__bar--white-20::-webkit-progress-value {
    background-color: #fff3;
}

.swiper-progress__bar--white-20::-moz-progress-bar {
    background-color: #fff3;
}

.swiper:has(.swiper-slide-active.bg-blanco) .swiper-progress__bar--white-20::-webkit-progress-value,
.swiper:has(.swiper-slide-active.bg-blanco) .swiper-progress__bar--white-20::-moz-progress-bar {
    background-color: #0000002E;
}

.swiper-progress__timer {
    --swiper-theme-color: #fff;
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
    display: none;
}

.swiper-progress__timer svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-progress__mirror-container {
    position: relative;
}

.swiper-progress__mirror-container .swiper-progress__bar {
    width: 50%;
}

.swiper-progress__mirror--left {
    width: 50% !important;
    transform: rotate(180deg);
}

.swiper-progress__mirror--right {
    width: 50% !important;
    left: 50% !important;
}

