.footer-modern {
  background: linear-gradient(
    180deg,
    #1f2d27 0%,
    #18231f 100%
  );
  color: #d4e5dc;
  padding: 80px 24px 32px;
}

.footer-grid-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

/* Marca */
.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #c7d3c0;
}

/* Colunas */
.footer-column h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.6;
  color: #c7d3c0;
}

.footer-highlight {
  margin-top: 10px;
  color: #9fd3a6;
  font-size: 14px;
}

/* Botão */
.footer-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #9fd3a6;
  color: #1f2d27;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #b7e4c7;
}

/* Social */
.footer-social-modern a {
  display: block;
  margin-bottom: 10px;
  color: #9fd3a6;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-social-modern a:hover {
  color: #ffffff;
}

/* Bottom */
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 14px;
  color: #9fb3aa;
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-modern {
    padding: 60px 20px 28px;
  }

  .footer-grid-modern {
    gap: 36px;
  }
}