#noticia-destaque .card-noticia {
    position: relative;
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    z-index: 0;
}
#noticia-destaque .card-noticia .image {
    display: block;
    width: 100%;
    aspect-ratio: 1437 / 524;

    z-index: -1;
}
#noticia-destaque .card-noticia .image img {
    display: block;
    width: 100%;
    height: 100%;
    
    object-fit: cover;
    
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
#noticia-destaque .card-noticia:hover .image img {
    transform: scale(1.1);
}
#noticia-destaque .card-noticia .content {
    position: absolute;
    bottom: 0;
    left: 0;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%;
}
#noticia-destaque .card-noticia .content .infos {
    max-width: 46.88rem;
    padding: clamp(2rem, 3vw, 2.81rem) clamp(3rem, 3vw, 4.38rem);
    background-color: rgba(0, 0, 0, .6);
    border-radius: 0 1.25rem 0 0;
}
#noticia-destaque .card-noticia .content .infos .badge {
    display: block;
    width: fit-content;
    padding: 0.25rem .5rem;
    background: #6E8C78;
    border-radius: 6.25rem;
    color: #fff;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
    margin:  0 0 0.88rem 0;
}
#noticia-destaque .card-noticia .content .infos .nome {
    color: #ffffff;
    font-size: clamp(1.8rem, 1.5vw, 2.88rem);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -2%;
    text-align: left;
    margin: 0;
}
#noticia-destaque .card-noticia .content .infos .nome .link {
    color: #fff;
    text-decoration: none;
}
#noticia-destaque .card-noticia .content .infos .nome .link::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: 2;
}
#noticia-destaque .card-noticia .content .action {
    display: flex;
    align-items: center;
    gap: 1.06rem;
    padding-right: 3rem;
}
#noticia-destaque .card-noticia .content .action span {
    color: rgba(255, 255, 255, 1);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0%;
    text-align: left;
    text-transform: uppercase;
}
#noticia-destaque .card-noticia .content .action .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 6.13rem;
    height: 6.13rem;
    
    padding: 1.95rem;
    background: #e5885c;
    border-radius: 50%;

    transition: all .25s cubic-bezier(.4,0,.2,1);
}
#noticia-destaque .card-noticia:hover .content .action .icon {
    background-color: #6E8C78;
}
#noticia-destaque .card-noticia .content .action .icon svg {
    display: block;
    fill: #fff;
    width: 100%;
    height: 100%;
    transition: all .25s cubic-bezier(.4,0,.2,1);
}
#noticia-destaque .card-noticia:hover .content .action .icon svg {
    transform: rotate(-45deg);
}