.tituloNoticia {
    font-weight: 500;
}

.swiper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    margin-left: auto;
    margin-right: auto;
}

#noticiaSwiper,
#bannerSwiper {
    background-color: lightgray;
}

#bannerSwiper {
    height: 400px;
    background-color: lightgray;
}

#noticiaSwiper img {
    max-height: 40em;
    min-height: 20em;
    height: 100%;
    object-fit: contain;
    margin: auto
}

#bannerSwiper img {
    height: 100%;
    object-fit: contain;
    margin: auto
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important;
}

.swiper-slide figure {
    width: 100%;
    margin: 0;
    display: relative;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    height: 20em;
    object-fit: contain;
}

.swiper-slide figcaption {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 1em;
    width: 100%;
    transform: translate3d(0, 200%, 0);
    transition: 1s;
}

.swiper-slide-active figcaption {
    transform: translate3d(0, 0, 0);
}

.swiper-pagination {
    display: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
}

.swiper-button-disabled {
    opacity: .2;
}

.menuOpcao {
    cursor: pointer;
    transition: background-color 0.5s, transform 1s;
}

.menuOpcao:hover {
    background-color: var(--azul-logo);
    color: white;
}