.projeto {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 6.4rem;
}

.projeto:last-child {
    margin-bottom: 0;
}

.projeto:nth-child(2n)  .projeto__detalhes{
    order: -1;
} 

@media screen and (max-width: 768px){
    .projeto {
        flex-direction: column;
        align-items: flex-start;
    }

    .projeto:nth-child(2n) .projeto__detalhes {
        order: 1;
    }
}