.site-footer {
  background-color: #2e5d34;
  color: #f0f8f2;
  padding: 40px 0 20px;
  font-family: 'Poppins', sans-serif;
  margin-top: auto;
  border-top: 4px solid #4A7C59;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h4 {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 1.25em;
  color: #ffffff;
  position: relative;
  padding-bottom: 6px;
}

.footer-section h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #a8e063; /* verde menta suave */
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
  font-size: 0.95em;
  line-height: 1.5;
}

.footer-links a {
  color: #d6f2e5;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.25s ease;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a i,
.footer-links li i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  font-size: 1.1em;
  color: #a8e063;
}

/* Contacto (sin enlaces) */
.footer-section:last-child .footer-links li {
  color: #d6f2e5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  font-size: 0.875em;
  text-align: center;
  max-width: 1200px;
  margin: 30px auto 0;
  color: #b8e8c9;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    text-align: center;
    width: 100%;
  }

  .footer-section h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links a,
  .footer-links li {
    justify-content: center;
  }

  .footer-links a i,
  .footer-links li i {
    margin-right: 8px;
  }
}