.noticiasSwiper {
    text-align: center;
}

.noticiasSwiper .swiper-button-next,
.noticiasSwiper .swiper-button-prev {
    width: 30px;
    height: 30px;

    background: rgba(0, 0, 0, 0.55);

    border-radius: 50%;

    transition: all .3s ease;

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(4px);

    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

/* Hover */
.noticiasSwiper .swiper-button-next:hover,
.noticiasSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);

    transform: scale(1.08);
}

/* Remove ícone padrão gigante */
.noticiasSwiper .swiper-button-next::after,
.noticiasSwiper .swiper-button-prev::after {
    font-size: 18px;

    color: #fff;

    font-weight: bold;
}

/* Posicionamento */
.noticiasSwiper .swiper-button-prev {
    left: 10px;
}

.noticiasSwiper .swiper-button-next {
    right: 10px;
}

.noticiasSwiper .swiper-button-next svg,
.noticiasSwiper .swiper-button-prev svg {
    color: #fff;
    max-height: 18px;
}

/* Mobile */
@media (max-width: 768px) {
    .noticiasSwiper .swiper-button-next,
    .noticiasSwiper .swiper-button-prev {
        width: 26px;
        height: 26px;
    }

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