.projetos{
    display: flex;
    width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-direction: column;
    gap: 22px;
    text-align: center;
}

.projetos .resultados{
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 32px;
}

.projetos .resultados .projeto{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--amarelo-sollar);
    color: var(--branco-sollar);
    width: 100%;
    height: 416px;
    border-radius: 40px;
    cursor: pointer;
}

.projetos .resultados .projeto img{
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.projetos .resultados .projeto .info{
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
    padding: 40px;
    justify-content: center;
    box-sizing: border-box;
}
.projetos .resultados .projeto .info h3,
.projetos .resultados .projeto .info span,
.projetos .resultados .projeto .info p{
    text-align: start;
}
.projetos .resultados .projeto .info h3,
.projetos .resultados .projeto .info span{
    font-size: var(--f-size-xx);
    line-height: 40px;
}
.projetos .resultados .projeto .info span{
    font-weight: 400;
}
.projetos .resultados .projeto .info p{
    font-size: var(--f-size-gg);
    display: flex;
    gap: 4px;
}
.projetos .resultados .projeto .cidade {
    margin-bottom: 22px;
}

@media (max-width: 768px){
    .projetos{
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .projetos .resultados {
        margin-top: 60px;
    }
    .projetos .resultados .projeto{
        flex-direction: column;
        height: auto;
    }
    .projetos .resultados .projeto img{
        width: 100%;
        height: 50%;
        border-radius: 40px 40px 0 0;
    }
    .projetos .resultados .projeto .info{
        width: 100%;
        height: 50%;
        padding: 36px;
        border-radius: 0 0 40px 40px;
    }
    .projetos .resultados .projeto .info h3,
    .projetos .resultados .projeto .info span{
        font-size: var(--f-size-gg);
        line-height: 20px;
    }
    .projetos .resultados .projeto .info p{
        font-size: var(--f-size-g);
    }
    .projetos .resultados .projeto .info p span{
        margin-bottom: 8px;
    }
}