section.noticias{
    padding-top: 80px;
    padding-bottom: 56px;
}
section.noticias .wrapper-content{
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 94px;
}
section.noticias .wrapper-content .box-search{
    position: relative;
    padding: 22px;
    display: flex;
    flex-direction: column;
    font-size: 14.58px;
    background-color: var(--verde);
    color: #fff;
    width: 239px;
    height: fit-content;
}
section.noticias .wrapper-content .box-search::before{
    content: "";
    position: absolute;
    width: 239px;
    height: 100%;
    background-color: var(--laranja);
    left: -10px;
    top: 10px;
    z-index: -1;
}
section.noticias .wrapper-content .box-search .header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}
section.noticias .wrapper-content .box-search .header input{
    padding: 0 10px;
    background-color: #fff;
    color: var(--verde);
    border: none;
    width: 196px;
    height: 28px;
}
section.noticias .wrapper-content .box-search .header input:focus{
    outline: none;
}
section.noticias .wrapper-content .box-search .header input::placeholder{
    color: var(--verde);
    -webkit-text-stroke: 0.2px var(--verde);
}
section.noticias .wrapper-content .box-search .body{
    line-height: 0.8;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    row-gap: 43px;
    list-style: none;
    padding-left: 0;
}
section.noticias .wrapper-content .box-search .body li a{
    position: relative;
    text-decoration: none;
    color: #fff;
}
section.noticias .wrapper-content .box-search .body li a:hover::before{
    width: 13%;
}
section.noticias .wrapper-content .box-search .body li a::before{
    transition: all .3s ease-in-out;
    content: "";
    position: absolute;
    left: -4%;
    bottom: 0;
    background-color: #fff;
    width: 0;
    height: 1px;
}
section.noticias .wrapper-content .noticia{
    display: flex;
    gap: 94px;
}
section.noticias .wrapper-content .text{
    margin-top: 85px;
    width: 403px;
    height: auto;
    color: var(--verde);
}
section.noticias .wrapper-content .text h3{
    position: relative;
    font-size: 33.33px;
    margin-bottom: 34px;
    width: fit-content;
}
section.noticias .wrapper-content .text h3::before{
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background-color: var(--laranja);
    bottom: 0px;
    left: 50%;
}
section.noticias .wrapper-content .text h4 {
    display: flex;
    gap: 7px;
}
section.noticias .wrapper-content .text h4 div{
    display: flex;
    gap: 10px;
}
section.noticias .wrapper-content .text p{
    font-size: 14.58px;
    line-height: 1.5;
}
section.noticias .wrapper-content .text p img{
    max-width: 400px !important;
    height: auto !important;
    object-fit: contain;
}
section.noticias .wrapper-content .image{
    display: inline-flex;
    position: relative;
    margin-top: 12px;
    width: 337px;
    height: auto;
    background-color: var(--verde);
}
section.noticias .wrapper-content .image.video{
    width: 457px;
    height: 280px;
}
section.noticias .wrapper-content .image::before{
    pointer-events: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: 1px solid var(--laranja);
    content: "";
    position: absolute;
    left: -8px;
    top: -10px;
}
section.noticias .wrapper-content .image iframe,
section.noticias .wrapper-content .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.holder{
}
@media(max-width: 1100px){
    section.noticias .wrapper-content{
        flex-direction: column-reverse;
        row-gap: 40px;
        justify-content: center;
    }
    section.noticias .wrapper-content .noticia{
        gap: 20px;
    }
    section.noticias .wrapper-content .box-search,
    section.noticias .wrapper-content .box-search::before,
    section.noticias .wrapper-content .box-search .header input{
        width: 100%;
    }
    section.noticias .wrapper-content .text{
        width: 100%;
        margin-top: 20px;
    }
    section.noticias .wrapper-content .image,
    section.noticias .wrapper-content .image.video{
        width: 100%;
    }
    section.noticias .wrapper-content .noticia{
        flex-direction: column-reverse;
        width: 100%;
    }
}