.video-slider-container {
    width: 100%;
    position: relative;
}

.video-slider-wrapper {
    width: 100%;
}

.video-slider-wrapper .slick-track {
    display: flex !important;
}

.video-slider-wrapper .slick-slide {
    margin: 0 12px;
    box-sizing: border-box;
}

.video-slider-wrapper .slick-list {
    margin: 0 -12px;
}

.video-slide {
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 24px;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.video-play-btn {
    width: 32px;
    height: 32px;
    background: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-play-btn img {
    width: 16px;
    height: 16px;
}

.video-author {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.video-author-thumb {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.video-author-name {
    color: #F4EDE7 !important;
    font-family: "Montserrat Alternates", sans-serif !important;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 20px !important;
    text-align: center;
}

.video-slider-main {
    position: relative;
    width: 100%;
}

.video-slider-arrow {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 66px !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-slider-arrow:hover,
.video-slider-arrow:focus,
.video-slider-arrow:active,
.video-slider-arrow:visited {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.video-slider-arrow svg {
    width: 32px !important;
    height: 32px !important;
}

.video-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

/* Desktop: setas ao lado dos dots */
@media (min-width: 768px) {
    .video-slider-main {
        display: block;
    }

    .video-slider-main .video-slider-arrow {
        position: absolute;
        bottom: -64px;
    }

    .video-slider-main .video-prev {
        left: 0;
    }

    .video-slider-main .video-next {
        right: 0;
    }

    .video-slider-container {
        padding-bottom: 32px;
    }
}

.video-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #EFDECE;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-slider-dots .dot.active {
    width: 38px;
    border-radius: 50px;
    background-color: #B58455;
}

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 40px;
    box-sizing: border-box;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-content {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
    max-width: 900px;
}

.video-modal-close-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.video-modal-close {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

.video-modal-close svg {
    width: 32px !important;
    height: 32px !important;
}

@media (max-width: 1024px) {
    .video-modal-inner {
        max-width: 90%;
    }
}

@media (max-width: 767px) {
    .video-slider-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-bottom: 0 !important;
    }

    .video-slider-main {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        width: 100% !important;
        position: static !important;
    }

    .video-slider-main .video-slider-arrow {
        position: static !important;
        border: 1px solid #D4AE89 !important;
    }

    .video-slider-arrow svg {
        width: 16px !important;
        height: 16px !important;
    }

    .video-slider-wrapper {
        width: 242px !important;
        overflow: hidden !important;
        flex-shrink: 0 !important;
    }

    .video-slider-wrapper .slick-list {
        margin: 0 !important;
        overflow: hidden !important;
    }

    .video-slider-wrapper .slick-slide {
        margin: 0 !important;
    }

    .video-slide {
        width: 242px !important;
        height: 329px !important;
        aspect-ratio: unset !important;
    }

    .video-slider-dots {
        margin-top: 24px !important;
    }

    .video-slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .video-slider-dots .dot.active {
        width: 38px;
        border-radius: 50px;
    }

    .video-modal-inner {
        max-width: 100%;
    }

    .video-modal-overlay {
        padding: 20px;
    }
}
