/* Wistia Video Slider - Frontend Styles */

.wistia-slider-wrapper {
    width: 100%;
    margin: 20px 0;
}

.wistia-slider-swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.wistia-video-container {
    width: 100%;
    position: relative;
    background: #000;
}

.wistia-player-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

wistia-player {
    width: 100%;
    height: 100%;
}

/* Navegação */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 173, 239, 0.8);
    padding: 12px 16px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 173, 239, 1);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

/* Paginação */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #00adef;
    opacity: 1;
    transform: scale(1.3);
}

.swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        padding: 8px 12px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
        padding: 6px 10px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}
