/* =========================
   FOOTER
========================= */

.footer {
  background: #2c2f00;
  color: #dcdcdc;
  padding: 60px 20px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.footer svg:not(:root) {
  overflow: hidden;
  height: 1em;
  width: 1em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* LOGO */
.footer-logo img {
  max-width: 275px;
  height: auto;
}

/* DIVIDER */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* COLUNAS */
.footer-col h3 {
  margin-bottom: 15px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 67px;
  color: #F8FBCB;

}

.footer-col p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
  color: rgba(248, 251, 203, 0.57);
}

/* WHATSAPP */
.whatsapp {
  margin-left: 8px;
  font-size: 16px;
}

/* BOTÕES */
.footer-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: #1f2100;*/
  background: #333333;
  border-radius: 30px;
  padding: 12px 18px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-btn .btn-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 31px;
  color: #F8FBCB;

}

.footer-btn:hover {
  background: #2a2d00;
}

/* ÍCONE */
.footer-btn .icon {
  background: #e8e6c9;
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
}

.footer-btn:hover .icon {
  transform: rotate(45deg);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer svg:not(:root) {
    overflow: hidden;
    height: 3em;
    width: 3em;
  }

  .footer-logo h2 {
    max-width: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}