/* carousel desktop */

.m-aba-lista-noticias-filtro {
    position: relative;
    min-height: 200px;
}

.m-aba-lista-noticias-filtro.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.m-aba-lista-noticias-filtro.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0AE64C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.m-aba-lista-noticias-filtro .owl-stage-outer {
    overflow: visible;
}
.m-aba-lista-noticias-filtro .owl-stage-outer:before {
    content: "";
    /* background:#fff; */
    position: absolute;
    width: 100%;
    height: calc(100% + 40px);
    left: -100%;
    margin-top: -20px;
    margin-left: -10px;
    top: 0;
    z-index: 10;
}
.m-aba-lista-noticias-filtro .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
}
.m-aba-lista-noticias-filtro .owl-nav button {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: auto;
    transition: all 0.3s ease;
}
.m-aba-lista-noticias-filtro .owl-nav button:hover {
    background: #0AE64C !important;
}
.m-aba-lista-noticias-filtro .owl-nav .owl-prev {
    left: -20px;
}
.m-aba-lista-noticias-filtro .owl-nav .owl-next {
    right: -20px;
}
.m-aba-lista-noticias-filtro .owl-nav .owl-next:before,
.m-aba-lista-noticias-filtro .owl-nav .owl-prev:before {
    display: block;
    content: "";
    width: 46px;
    height: 46px;
    color: black;
    background: url("../../../assets/images/icons/arrow-black.svg") no-repeat 17px center;
    /* box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12); */
    /* border-radius: 100%; */
    transition: all 0.3s;
}


/* .m-aba-lista-noticias-filtro .owl-nav .owl-next:hover:before,
.m-aba-lista-noticias-filtro .owl-nav .owl-prev:hover:before {
    background-color: #002a3f;
    background-position-x: -32px;
}
.m-aba-lista-noticias-filtro .owl-nav .owl-next:before:hover,
.m-aba-lista-noticias-filtro .owl-nav .owl-prev:before:hover {
    background: var(--light-blue) url("../../../assets/images/icons/arrow-big-white.svg") no-repeat center center;

} */

.m-aba-lista-noticias-filtro .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.m-aba-lista-noticias-filtro .owl-dots .owl-dot span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 3px;
    margin: 6px;
    background: #575757;
    transition: all 0.3s ease;
}
.m-aba-lista-noticias-filtro .owl-dots .owl-dot.active span {
    background: #0AE64C;
}
.m-aba-lista-noticias-filtro .owl-stage {
    left: 0px;
}

@media (max-width: 800px) {
    .m-aba-lista-noticias-filtro .abas-desktop {
        display: none;
    }  
}


@media (min-width: 801px) {
    .m-aba-lista-noticias-filtro .abas-mobile {
        display: none;
    }
}



@media (max-width: 1200px) {
    .m-aba-lista-noticias-filtro .owl-stage-outer {
        overflow: hidden;
    }
    .m-aba-lista-noticias-filtro .owl-stage-outer:before {
        display: none;
    }
    .m-aba-lista-noticias-filtro .owl-nav .owl-prev {
        left: 0px;
        transform: rotate(-180deg);
    }
    .m-aba-lista-noticias-filtro .owl-nav .owl-next {
        right: 0px;
    }
}

.lista-noticias-filtro {
    position: relative;
    min-height: 200px;
}

.lista-noticias-filtro.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.lista-noticias-filtro.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0AE64C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Estilos da paginação */
.pagination-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination-button:hover {
    background-color: #f3f3f3;
}

.pagination-button.active {
    background-color: #0AE64C;
    color: white;
}

/* Responsivo */
@media (max-width: 768px) {
    .pagination-button {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }
}

