.projetos-produtos {
    background: #faf9fc;
}

.projetos-produtos .section-heading {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.projetos-produtos .section-heading p {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 10px; 
}



.projetos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.projetos-card {
    background: #fff;
    border: 1px solid #ddd6e5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(55, 36, 110, 0.08);
    transition: .25s;
}

.projetos-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(55, 36, 110, 0.15);
    border-color: #cdb9e3;
}

.projetos-img {
    width: 100%;
    height: 220px;
    background: #f3edf8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.projetos-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 12px;
    transition: .25s;
}

.projetos-card:hover .projetos-img img {
    transform: scale(1.04);
}

.projetos-info {
    padding: 18px;
}

.projetos-info h3 {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #17131d;
}

.projetos-info p {
    font-size: 11px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}


/* RESPONSIVO */

@media (max-width: 1000px) {
    .projetos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .projetos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .projetos-grid {
        grid-template-columns: 1fr;
    }

    .projetos-img {
        height: 250px;
    }
}