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 .wrapper{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
section.projetos .wrapper .item{
    position: relative;
    flex-basis: 32.5%;
    width: 100%;
    height: 290px;
    background-color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 10px;
    overflow: hidden;
    transition: all .4s ease-in-out;
}
section.projetos .wrapper .item:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--roxo);
    opacity: 0.5;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scaleY(0);
    transform-origin: bottom;
    transition: all .3s ease-in-out;
}
section.projetos .wrapper .item:hover:before{
    transform: translate(-50%, -50%) scaleY(1);
}
section.projetos .wrapper .item:hover img{
    filter: opacity(0.8);
}
section.projetos .wrapper .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);
    */
}
section.projetos .wrapper .item h3{
    z-index: 1;
    font-family: 'Lato';
    font-weight: 700;
    font-size: 18.49px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}
section.lead{
    background-image: url("../img/leads/projetos.webp");
}
@media(max-width: 768px) {
    section.projetos .wrapper .item{
        flex-basis: 100%;
        height: 200px;
    }
}