#noticias-page {
    padding: 80px 0;
}
#noticias-page .page-title {
    color: #0058A5;
    font-family: var(--font-Museo);
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 10px 0;
}
#noticias-page .page-subtitle {
    text-align: center;
    color: #0058A5;
    font-size: 1.125rem;
    margin-bottom: 30px;
}
#noticias-page .tags-container {
    text-align: center;
    color: #b0579e;
    margin-bottom: 30px;
}
#noticias-page .tags-container span.tags-label {
    margin-right: 10px;
    font-size: 1.125rem;
}
#noticias-page .tags-container a {
    color: #b0579e;
    text-decoration: none;
    font-size: 1.125rem;
    position: relative;
    padding: 2px 0;
    transition: color 0.3s ease;
}
#noticias-page .tags-container a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #b0579e;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
#noticias-page .tags-container a:hover {
    color: #8c3b7a;
}
#noticias-page .tags-container a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#noticias-page .tags-container a.active {
    font-weight: bold;
    color: #8c3b7a;
}
#noticias-page .tags-container a.active::after {
    transform: scaleX(1);
}
#noticias-page .tags-container .separator {
    color: #b0579e;
    margin: 0 10px;
}

@keyframes cardFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.listagem-noticias .col-12 {
    opacity: 0;
    animation: cardFadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
