.site-footer {
  width: 100%;
  background: #e3d8d0;
  color: #414019;
  margin-top: 60px;
}

.footer-content {
  width: 100%;
  padding: 5px 6%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.7fr;
  align-items: center;
  gap: 25px;
}

.footer-col {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand {
  align-items: center;
}

.logo-footer {
  display: block;
  width: 150px;
  margin: 0 auto;
}

.logo-footer img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-social {
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(121, 71, 42, 0.15);
  border-right: 1px solid rgba(121, 71, 42, 0.15);
}

.footer-social a {
  color: #79472a;
  font-size: 24px;
  text-decoration: none;
}
.footer-social a {
  color: #79472a;
  font-size: 24px;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-social a:hover {
  color: #E79058;
  transform: scale(1.15);
}

.footer-projeto {
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(121, 71, 42, 0.25);
}

.btn-footer-projeto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #f5f2ef;
  border: 1px solid #79472a;
  border-radius: 6px;
  color: #79472a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-footer-projeto:hover {
  background: #79472a;
  color: #fff;
  border-color: #79472a;
  transform: scale(1.03);
}
.btn-footer-projeto i {
  transition: transform .3s ease;
}

.btn-footer-projeto:hover i {
  transform: rotate(90deg);
}

.footer-contact {
  padding-left: 10px;
}

.footer-contact h3 {
  margin: 0 0 12px;
  color: #79472a;
  font-size: 18px;
}

.footer-contact p {
  margin: 3px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact i {
  color: #79472a;
  width: 18px;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: all .3s ease;
}

.footer-link:hover {
  color: #E79058;
  text-decoration: underline;
}

.footer-bottom {
  width: 100%;
  background: #E79058;
  color: #fff;
  text-align: center;
  padding: 5px 6%;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 1.8px;
  font-weight: 200;
}

.footer-separator {
  margin: 0 18px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer-social,
  .footer-projeto {
    border-left: none;
    border-right: none;
  }

  .footer-contact {
    padding-left: 0;
    align-items: center;
  }

  .footer-contact p {
    justify-content: center;
  }
}