.formacoes {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .formacoes {
    justify-content: space-between;
  }
}

@media screen and (max-width: 425px) {
  .formacoes {
    flex-direction: column;
    justify-content: space-between;
  }
}
