/* FUNDO */
.bg-footer {
  background: radial-gradient(circle at 20% 0%, #6A4635, #3E2723 60%, #2C1810);
}

/* CORES */
.text-footer-primary {
  color: var(--primary-color);
}

.text-footer-muted {
  color: rgba(245,239,231,.75);
}

.border-footer {
  border-color: rgba(245,239,231,.15);
}

/* TÍTULOS */
.footer-title {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #C67D5C;
}

/* LINKS */
.footer-link {
  display: inline-block;
  color: rgba(245,239,231,.75);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: all .25s ease;
}

.footer-link:hover {
  color: #C67D5C;
  transform: translateX(4px);
}

/* SOCIAL */
.btn-footer-social {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.btn-footer-social:hover {
  background: #C67D5C;
  transform: translateY(-4px);
}
