section.noticias {
    background: url(../img/bg-noticias.jpg) center center no-repeat;
    background-size: cover;
}

section.noticias .title {
    text-align: center;
    padding-top: 120px;
    position: relative;
    padding-bottom: 90px;
    position: relative;
}

section.noticias .title .icone {
    width: 125px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 30px #00000021;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

section.noticias .title .icone svg {
    width: 70px;
    height: 70px;
    fill: var(--verde);
}

section.noticias .title h2 {
    color: var(--amarelo);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}

section.noticias .title h2:after {
    content: '.';
    color: var(--verde);
}

section.noticias .title p {
    color: #fff;
}

section.noticias .noticias__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

section.noticias .box {
    border-radius: 10px;
    position: relative;
}

section.noticias .box a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99;
}

section.noticias .box img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/13;
    display: block;
    border-radius: 10px 10px 0 0;
    background: var(--verde);
}

section.noticias .box .content {
    background: #FFF;
    padding: 30px;
    position: relative;
    display: block;
    min-height: 170px;
}


section.noticias .box .content * {
    position: relative;
    z-index: 3;
}

section.noticias .box:nth-child(2) .content::after {
    content: '';
    width: 100vw;
    height: 115%;
    display: block;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;
    transform: translateX(-50vw);
}

section.noticias .box .sombra {
    box-shadow: 0 0 20px #00000021;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0 0 10px 10px;
}

section.noticias .box .category {
    display: table;
    margin-bottom: 15px;
    color: #fff;
    background: var(--verde);
    text-transform: uppercase;
    font-weight: bold;
    font-size: 11px;
    padding: 5px 20px;
    border-radius: 50px;
}

section.noticias .box h3 {
    font-weight: bold;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
}