/* Atribui fundo de cores diferentes para todos os divs do rodapé (nível imediato) */
#rodape .conteiner.row-fluid > div:nth-child(1) { background: red !important; }
#rodape .conteiner.row-fluid > div:nth-child(2) { background: orange !important; }
#rodape .conteiner.row-fluid > div:nth-child(3) { background: yellow !important; }
#rodape .conteiner.row-fluid > div:nth-child(4) { background: green !important; }
#rodape .conteiner.row-fluid > div:nth-child(5) { background: blue !important; }
#rodape .conteiner.row-fluid > div:nth-child(6) { background: indigo !important; }
#rodape .conteiner.row-fluid > div:nth-child(7) { background: violet !important; }

/* Força o layout flex */
#rodape .conteiner.row-fluid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
}
