section.news{
    position: relative;
    color: var(--verde);
    padding-bottom: 100px;
}
section.news .box{
    position: absolute;
    background: none;
    width: 100%;
    height: 100%;
    bottom: -20%;
    left: -54%;
}
@keyframes line-box-Y {
    to{
        transform: scaleY(1);
    }
}
@keyframes line-box-X {
    to{
        transform: scaleX(1);
    }
}
section.news .box:before{
    animation: line-box-X 5s linear forwards;
    transform: scaleX(0);
    position: absolute;
    content: "";
    top: 0;
    background-color: #e7cdae;
    width: 100%;
    height: 2px;
    z-index: -1;
}
section.news .box:after{
    animation: line-box-Y 5s linear forwards;
    transform: scaleY(0);
    transform-origin: bottom;
    position: absolute;
    content: "";
    right: 0;
    background-color: #e7cdae;
    width: 2px;
    height: 100%;
    z-index: -1;
}
section.news h2{
    padding-bottom: 5px;
    font-weight: 600;
    font-size: 29.17px;
    width: fit-content;
    position: relative;
}
section.news h2:before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 87%;
    height: 4px;
    background-color: var(--verde);
}
section.news{
    color: var(--verde);
    padding-bottom: 30px;
}
section.news .news_actual{
    display: flex;
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 70px;
}
section.news .swiper{
    width: 613px;
    height: 428px;
    display: inline-flex;
}
section.news .swiper .swiper-slide{
    display: flex;
    align-items: center;
    justify-content: center;
}
section.news .swiper .swiper-slide a{
    display: inline-flex;  
    width: 100%;
    height: 100%;
}
section.news .swiper .swiper-slide img,
section.news .swiper .swiper-slide iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.news .news_actual .text{
    width: 586px;
}
section.news .news_actual .text h3{
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dourado);
    line-height: 0.9;
}
section.news .news_actual .text h4{
    font-size: 20.83px;
    font-weight: 500;
    color: var(--dourado);
    margin-bottom: 18px;
}
section.news .news_actual .text .content_news {
    margin-bottom: 30px;
}
section.news .news_actual .text .content_news p em,
section.news .news_actual .text .content_news p{
    font-weight: 500;
}
section.news .news_actual .text .content_news strong,
section.news .news_actual .text .content_news p strong{
    color: var(--dourado);
    font-weight: 600;
}
section.news .news_actual .text .content_news ul {
    padding-left: 18px;
}
section.news .news_actual .text .content_news ul li{
    position: relative;
    font-size: 16.67px;
    font-weight: 500;
    margin-bottom: 15px;
}
section.news .news_actual .text .content_news ul li{
    font-weight: 500;
}
section.news .news_actual .text h6.button,
section.news .all_news .item h6{
    cursor: pointer;
    color: #fff;
    background-color: var(--verde);
    border: none;
    font-size: 16.67px;
    border-radius: 0px;
    padding: 2px 10px;
    font-size: 16.67px;
    text-transform: uppercase;
    width: fit-content;
    height: 25px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
section.news .news_actual .text:hover h6.button,
section.news .all_news .item:hover h6{
    color: var(--amarelo) !important;
}

section.news .all_news{
    display: flex;
    align-items: start;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 60px;
    margin-bottom: 70px;
}

section.news .all_news .item{
    flex-direction: column;
    justify-content: center;
    width: 300px;
}
section.news .all_news .item .image{
    overflow: hidden;
    width: 100%;
    height: 200px;
    margin-bottom: 11px;
}
section.news .all_news .item .image img{
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section.news .all_news .item:hover .image img{
    transform: scale(1.15);
}
section.news .all_news .item .text{
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section.news .all_news .item .text div{
    height: 147px !important;
}
section.news .all_news .item h3{
    color: var(--dourado);
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    height: 80px;
    margin-bottom: 0px;
    text-transform: uppercase;
}
section.news .all_news .item h4{
    color: var(--dourado);
    font-size: 20.83px;
    margin-bottom: 3px;
}
section.news .all_news .item p{
    font-size: 16.67px;
    margin-bottom: 30px;
}
button#load-more{
    cursor: pointer;
    color: var(--verde);
    background-color: transparent;
    border: none;
    font-size: 16.67px;
    border-radius: 0px;
    padding: 2px 10px;
    font-size: 16.67px;
    text-transform: uppercase;
    width: fit-content;
    height: 25px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
button#load-more svg{
    transition: all .4s ease;
    transform-origin: left;
    transform: scaleX(1);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--verde);
    fill: #fff;
}
button#load-more:hover{
    fill: #fff !important;
}
button#load-more:hover:before{
    transform: scaleX(1);
}
button#load-more:before{
    color: #fff;
    z-index: 1;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "CARREGAR MAIS";
    position: absolute;
    font-weight: 300;
    left: 0;
    width: 180px;
    height: 100%;
    background-color: var(--verde);
    transform: scaleX(0);
    transform-origin: left;
}
.swiper-pagination-fraction{
    pointer-events: none;
    font-family: 'Gotham Book' !important;
    color: #fff !important;
    padding: 3px 5px;
    background-color: var(--verde);
    width: fit-content !important;
    margin: 0 auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
.swiper-button-next, .swiper-button-prev{
    background-color: var(--verde);
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px !important;
    color: #fff;
}
section.lead{
    background-image: url('../img/blog/lead.webp');
}
@media(max-width:1100px) {
    section.news .news_actual{
        flex-direction: column;
    }
    section.news .news_actual .image{
        width: 100%;
        height: auto;
    }
    section.news .news_actual .text{
        width: 100%;
        overflow-x: hidden;
    }
}
@media(max-width: 768px) {
    section.news .swiper{
        width: 100%;
        height: 250px;
    }
    section.news .all_news .item{
        width: 100%;
    }
}