footer {
  background: #f5f5f5;
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  border-top: 1px solid #ddd;
  overflow-x: hidden;
  color: #ffffff;
  background-color: #0e801d;
}

.rodape-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
  background-color: #0e801d;
}

/* Equovali – deixa bem mais estreita */
.rodape-container .coluna:first-child {
  flex: 0 0 120px;/* largura fixa pequena */
  min-width: 120px;
  padding-top: 10px;
  color: #ffffff;
  background-color: #0e801d;
}

/* Colunas regulares */
.rodape-container .coluna {
  flex: 1 1 220px;
  min-width: 180px;
}

/* Coluna do mapa: fixa para evitar empurrar para baixo */
.rodape-container .coluna:last-child {
  flex: 0 0 260px;
  min-width: 260px;
}

/* Títulos */
.rodape-container h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
  color: #ffffff;
  background-color: #0e801d;
}

.rodape-container h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  background-color: #0e801d;
  text-align: left;
}

.rodape-container p {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #ffffff;
  background-color: #0e801d;
  margin-bottom: 4px;
}

/* Mapa */
.mapa-footer {
  width: 100%;
  height: 150px;
  border: 0;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  color: #ffffff;
  background-color: #0e801d;
}

/* Mobile */
@media (max-width: 768px) {
  .rodape-container {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }

  .rodape-container .coluna:first-child,
  .rodape-container .coluna:last-child {
    flex: none;
    width: 100%;
    min-width: unset;
  }

  .mapa-footer {
    height: 220px;
  }
}
