/* Rodapé */
.rodape {
  background: #222; /* dark padrão */
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 0;
}

.container-rodape {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.links-rodape {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

.links-rodape a {
  color: #fff;
  text-decoration: none;
}

.links-rodape a:hover {
  text-decoration: underline;
}

.icones-sociais {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
}

.icones-sociais a {
  color: white;
  font-size: 24px;
  transition: color 0.3s;
}

.icones-sociais a:hover {
  color: #fde7f3;
}

i {
  font-size: 24px !important;
  color: white !important;
}