.footer {
  background-color:#2F642D;
  color: #BDF379;
  padding: 80px 80px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.footer-brand h3 {
  font-size: 28px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.footer-brand p {
  opacity: 0.8;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #BDF379cc;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.footer-links a:hover {
  color: #c3fb7d;
}

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.85;
  font-family: 'Inter', sans-serif;
}

.footer-whatsapp {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 28px;
  background: #25d366;
  color: #000;
  border-radius: 32px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-whatsapp:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #ffffff20;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

/* responsividade */


/* mobile grande */
@media (max-width: 770px) { 
  .footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
}

/* mobile pequeno */
@media (max-width: 480px) {
    .footer {
      padding: 40px 20px 20px;

    }
    .footer-container {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;

    }
}

