section.projetos{
    padding-top: 84px;
    background-image: url("../img/quem_sou/banner.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 140px;
}
section.projetos .text_introduction{
    margin-bottom: 50px;
    width: 800px;
    color: var(--color_blue);
} 
section.projetos .text_introduction h2{
    width: fit-content;
    position: relative;
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 3px;
    margin-bottom: 20px;
}
section.projetos .text_introduction h2:before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% + 20px);
    height: 3px;
    background-color: var(--color_blue);
}
section.projetos .filter_projects{
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
section.projetos .filter_projects label{
    font-size: 16.67px;
}
section.projetos .filter_projects select{
    width: fit-content;
    padding: 5px 10px;
    padding-right: 50px;
    border: 1px solid var(--color_text);
    outline: none;
    font-size: 20.83px;
    color: var(--color_blue);
}

.content_posts{
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    color: var(--color_blue);
}
.content_posts .post {
    display: flex;
    align-items: start;
    flex-wrap: wrap;
    gap: 15px;
}
.content_posts hr{
    border: 1px solid var(--color_blue) !important;
}
.content_posts hr:last-child{
    display: none;
}
.content_posts .post .image{
    background-color: var(--color_blue);
    width: 300px;
    height: 200px;
    display: inline-flex;
    overflow: hidden;
}
.content_posts .post .image img{
    transition: all .3s ease-out;
}
.content_posts .post:hover .image img{
    transform: scale(1.1);
}
.content_posts .post .text{
    width: 800px;
}
.content_posts .post .text h3{
    color: var(--color_text);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.content_posts .post .text h4{
    font-size: 16.67px;
    font-weight: 500 !important;
}
.content_posts .post .text ul{
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}
.content_posts .post .text ul li{
    font-size: 16.67px;
    font-weight: 600;
}

@media(max-width: 768px) {
    section.projetos {
        padding-top: 50px;
    }
    section.projetos .text_introduction{
        width: 100%;
    }
    section.projetos .filter_projects select{
        width: 100%;
    }
    .content_posts{
        row-gap: 50px;
    }
    .content_posts .post .image{
        width: 100%;
    }
    .content_posts .post .text,
    .content_posts .post:nth-child(even) .text{
        width: 100%;
    }
}