.fundidos{
    padding: 5.4rem 0 4.26rem;
}

.fundidos .row{
    grid-gap: 2.13rem 0;
}

.fundidos .row>*{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.fundidos .sectitle{
    margin-bottom: 8px;
}

.fundidos .text.main{
    width: clamp(10px,100%,603px);
}

.fundidos .pecas{
    width: clamp(10px,100%,480px);
    border: 1px solid #E3E3E3;
    border-radius: 10px;
    background-color: #F4F4F6;
    padding: 13px 14px;
}

.fundidos .pecas .title{
    text-transform: uppercase;
    color: var(--main);
    font-family: var(--pop);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    margin-bottom: 3px;
}

.fundidos .pecas .text{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.07px;
}

.fundidos .options{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 10px;
}

.fundidos .options>*{
    cursor: pointer;
    color: #646C71;
    border: 1px solid var(--line2);
    border-radius: 80px;
    padding: 10px 19px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.fundidos .options>*:hover,
.fundidos .options>*.active{
    color: var(--white);
    border-color: var(--main);
    background-color: var(--main);
}

.fundidos .content{
    flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    border-top: 1px solid var(--line2);
    padding-top: 4.26rem;
}

.fundidos .content>*{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
}

.fundidos .content .img{
    width: clamp(10px,100%, 500px);
    aspect-ratio: 1/.878;
}

.fundidos .content .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 10px;
}

.fundidos .content .title{
    position: relative;
    width: fit-content;
    color: var(--title);
    font-family: var(--pop);
    font-size: 28px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 25px;
}

.fundidos .content .title::before{
    content: '';
    position: absolute;
    inset: auto 0 0 auto;
    width: 100%;
    height: 20px;
    background-color: #C00D0D0D;
}

.fundidos .content .title strong{
    color: var(--main);
    font-weight: inherit;
}

.fundidos .content .text{
    border-top: 1px solid var(--line2);
    margin-bottom: 14px;
    padding-top: 12px;
}

.fundidos .content .text.t2{
    margin-bottom: 20px;
    padding-top: 20px;
}

@media(max-width:992px){
    .fundidos{
        padding: 2rem 0;
    }
    .fundidos .row{
        grid-gap: 1.5rem 0;
    }
    .fundidos .content{
        padding-top: 2rem;
    }
}