.rodape {
  background: #222;
  color: #ccc;
  padding: 40px 0 0;
  font-size: 14px;
}

.rodape .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.rodape .coluna {
  flex: 1 1 220px;
  margin-bottom: 30px;
}

.rodape h4 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 2px solid #4CAF50;
  display: inline-block;
  padding-bottom: 4px;
}

.rodape ul {
  list-style: none;
  padding: 0;
}

.rodape ul li {
  margin-bottom: 10px;
  color: #aaa;
}

.rodape ul li i {
  margin-right: 8px;
}

.rodape a {
  color: #aaa;
  text-decoration: none;
}

.rodape a:hover {
  color: #fff;
}

.linha-final {
  background: #1a1a1a;
  color: #aaa;
  padding: 15px 0;
  font-size: 13px;
  margin-top: 20px;
}

.linha-final .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-redes {
  display: flex;
  gap: 10px; /* espaço entre os ícones */
  margin-top: 10px;
}

.footer-redes .social {
  background: #4CAF50;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-redes .social:hover {
  background: #388e3c;
}

