.m-produto-banner .owl-nav {
    z-index: 9999;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.m-produto-banner .owl-nav .owl-prev,
.m-produto-banner .owl-nav .owl-next {
    position: relative;
    transition: all 0.3s;
    background: #424242b6;
    height: 40px;
    pointer-events: auto;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.m-produto-banner .owl-nav .owl-prev.disabled,
.m-produto-banner .owl-nav .owl-next.disabled {
    display: none;
}

.m-produto-banner .owl-nav .owl-prev {
    transform: rotate(-180deg);
    border-radius: 0 40px 40px 0px;
    margin-right: -4px;
    order: 1;
}
 
.m-produto-banner .owl-nav .owl-next {
    border-radius: 0 40px 40px 0;
    margin-left: -4px;
    order: 3;
}

.m-produto-banner .owl-nav .owl-next:before,
.m-produto-banner .owl-nav .owl-prev:before {
    display: block;
    content: '';
    padding: 0 25px;
    width: 40px;
    height: 40px;
    color: black;
    background: url('../../../assets/images/icons/arrow-rigth.svg') no-repeat 17px center;
    transition: all 0.3s;
}

.m-produto-banner .owl-dots {
    z-index: 999;
    display: inline-flex;
    justify-content: center;
    height: 40px;
    pointer-events: auto;
    margin: 0;
    align-items: center;
    background: #424242b6;
}

.m-produto-banner .owl-dots .owl-dot {
    background: transparent;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    padding-top: 0;
}

.m-produto-banner .owl-dots .owl-dot span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 0;
    margin: 0;
}

.m-produto-banner .owl-dots .owl-dot.active span {
    background: #0AE64C no-repeat 100%;
}

.m-produto-banner .owl-stage {
    left: 0px;
}

/* Estilos para o vídeo principal */
.m-produto-banner .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.m-produto-banner .video-container a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.m-produto-banner .video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m-produto-banner .video-container button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.m-produto-banner .video-container button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Estilos para a modal do vídeo */
#videoModal {
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

#videoModal.hidden {
    opacity: 0;
    pointer-events: none;
}

#videoModal.flex {
    opacity: 1;
    pointer-events: auto;
}

#videoModal .bg-white {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

#videoModal.flex .bg-white {
    transform: scale(1);
}

/* Ajuste para telas menores */
@media (max-width: 768px) {
    .m-produto-banner .owl-dots .owl-dot span {
        width: 20px;
    }

    .m-produto-banner .video-container button {
        padding: 0.75rem;
    }

    .m-produto-banner .video-container button svg {
        width: 2rem;
        height: 2rem;
    }
    
    #videoModal {
        padding: 1rem;
    }
    
    #videoModal .bg-white {
        max-width: 100%;
        margin: 0;
    }
}

