.footer {
  margin-top: 80px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 0 20px;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* BOX */

.footer-box {
  margin: 12px;
}

.footer-box h3 {
  font-size: 22px;
  color: #ec4899;
  margin-bottom: 10px;
}

.footer-box h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-box p {
  font-size: 13px;
  line-height: 1.8;
  color: #9ca3af;
}

/* LINKS */

.footer-box a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  transition: .2s;
}

.footer-box a:hover {
  color: #ec4899;
  transform: translateX(3px);
}

/* SOCIAL */

.socials {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.socials a {
  font-size: 12px;
  color: #ec4899;
}

/* BOTTOM */

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}