header.scrolled{
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: #f1d7d78e;
}
body{
    position: relative;
    background-image: url("../img/na-midia/banner.webp");
    background-position: center;
    background-size: contain ;
    background-repeat: repeat;
}
body:before{
    content: "";
    position: absolute;
    pointer-events: none;
    width: 1159px;
    height: 672px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../img/na-midia/asset.webp");
    top: 0;
    right: 0;
    z-index: -1;
}
section.na-midia {
    margin-top: 10px;
}
section.na-midia .content{
    max-width: 1092px;
}
section.na-midia .top-news{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid var(--rosa_escuro);
    margin-bottom: 28px;
}
section.na-midia .top-news h3{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 48px;
    background-color: var(--rosa_escuro);
    font-size: 20.83px;
    font-weight: 500;
    color: #fff;
    border-radius: 9px 9px 0 0;
}
section.na-midia .top-news .wrapper-input{
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    transform: translateY(4px);
    width: 280px;
}
section.na-midia .top-news .wrapper-input input{
    color: var(--rosa_escuro);
    font-size: 16.67px;
    width: 228px;
    height: 40px;
    border: none;
    outline: none;
    background: transparent;
}
section.na-midia .top-news .wrapper-input input::placeholder{
    color: var(--rosa_text);
}
section.na-midia .top-news .wrapper-input i{
    position: absolute;
    left: -40px;
    font-size: 30px;
    color: var(--rosa_text);
}
section.na-midia .content_posts{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}
.box-dropdown{
    position: absolute;
    z-index: 9999;
    top: calc(100% + 12px);
    right: 0;
    display: flex;
    flex-direction: column;
    width: 320px;
    background-color: #fff;
    border: 3px solid var(--rosa_text);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.box-dropdown a{
    display: flex;
    align-items: center;
    padding: 10px 8px;
    gap: 7px;
}
.box-dropdown a:hover{
    background-color: #c270705b !important;
}
.box-dropdown a:nth-child(odd){
    background-color: rgba(185, 109, 104, 0.11);
}
.box-dropdown a svg{
    width: 30px;
    height: 25px;
}
.content_posts {
    margin-bottom: 30px;
    min-height: 400px;
}
.content_posts .post{
    width: 325px;
    height: fit-content;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
}
.content_posts .post .image{
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 190px;
    background-color: var(--rosa_escuro);
}
.content_posts .post .image img{
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}
.content_posts .post .text {
    background-color: #F2EEEB;
}
.content_posts .post .text .body,
.content_posts .post .text .footer{
    padding: 15px 10px;
    display: flex;
    align-items: center;
}
.content_posts .post .text .body h3{
    font-size: 16.67px;
    font-weight: 600;
    min-height: 60px;
}
.content_posts .post .text .footer{
    padding: 10px;
    gap: 7px;
    border-top: 1px solid rgba(0, 0, 0, 0.11);
}
.content_posts .post .text .footer h4{
    font-size: 14px;
    font-weight: 500;
}
.content_posts .post .text .footer h3{
    font-weight: 600;
    font-size: 14px;
}
section.na-midia .btn_more_posts{
    width: 170px;
    height: 40px;
    cursor: pointer;
    background-color: var(--rosa_escuro);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease-in-out;
}
section.na-midia .btn_more_posts:hover{
    filter: brightness(1.3);
}
section.lead {
    background-image: url('../img/leads/na-midia.webp');
}
@media(max-width: 768px) {
    header .btnMobile span{
        background-color: var(--rosa_text);
    }
    section.na-midia .top-news {
        align-items: start;
        flex-direction: column;
        row-gap: 30px;
    }
    section.na-midia .top-news h3{
        width: 100%;
    }
    section.na-midia .top-news .wrapper-input {
        transform: none;
        width: 100%;
    }
    section.na-midia .top-news .wrapper-input i{
        left: 0;
        font-size: 24px;
    }
    section.na-midia .top-news .wrapper-input input{
        width: 100%;
        padding-left: 35px;
    }
    .box-dropdown {
        width: 100%;
    }
}