.rodape {
  align-items: center;
  background: #f0ecec;
  display: flex;
  height: 10vh;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

@media screen and (max-width: 767px) {
  .rodape {
    flex-direction: column;
    justify-content: center;
  }
  .rodape__conteudo {
    text-align: center;
    margin-bottom: 0.3rem;
  }
}

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

