section.projetos {
    padding-bottom: 60px;
}
section.projetos .text-introduction {
    margin-bottom: 50px;
}
section.projetos .text-introduction p{
    font-size: 18.75px;
    font-weight: 400;
}
section.projetos .categorias{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
section.projetos .categorias .item{
    position: relative;
    flex-basis: 31%;
    width: 100%;
    height: 370px;
    background-color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 10px;
    overflow: hidden;
}
section.projetos .categorias .item:hover img{
    filter: opacity(0.8) ;
}
section.projetos .categorias .item img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*
    filter: grayscale(1.5) contrast(1.1) opacity(0.7);
    */
    transition: all .4s ease-in-out;
}
section.projetos .categorias .item h3{
    z-index: 1;
    font-family: 'Lato';
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    opacity: 0.8;
    color: #461929;
}
section.lead{
    background-image: url("../img/leads/projetos.webp");
}
@media(max-width: 768px){
    section.projetos .categorias .item{
        flex-basis: 100%;
        height: 200px;
    }
}