How to order by taxonomy using wp_query

Jose, as this post (Using wp_query is it possible to orderby taxonomy?) says it doesn’t make sense to sort by taxonomy. A post could belong to multiple terms.

IF in your setup a post will only belong to one term, then consider making the taxonomy a custom field/meta key instead. Then you will be able to sort by it.

Another way around (with risk of duplicated posts) is to get all terms in taxonomy in your preferred sort order and then get all posts belonging to each term. A post may then appear twice in the list.