.rodape {
  background-color: #f5f5f5;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  font-size: 0.95em;
  color: #333;
  width: 100%;
}

.rodape-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.rodape .coluna {
  flex: 1 1 220px;
  margin-bottom: 20px;
}

.rodape h4 {
  margin-bottom: 10px;
  color: #1c6b38;
  font-size: 1.1em;
}

.rodape ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape ul li {
  margin-bottom: 8px;
}

.rodape ul li a {
  text-decoration: none;
  color: #333;
}

.rodape ul li a:hover {
  text-decoration: underline;
  color: #1c6b38;
}

.rodape .copy {
  text-align: center;
  padding: 15px 20px;
  background-color: #eaeaea;
  font-size: 0.9em;
  border-top: 1px solid #ddd;
  margin-top: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
  .rodape-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .rodape .coluna {
    width: 100%;
  }
}