/* Hamburger */

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  display: block !important;
}

/* Menu mobile */

.nav-links {
  position: fixed;
  top: 64px;
  left: 0;

  width: 100%;
  height: calc(100vh - 64px);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 120px;
  align-items: center;

  gap: 24px;

  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);

  transform: translateX(100%);
  transition: transform .3s ease;

  text-align: center;
}

.nav-links.active {
  transform: translateX(0);
}

.nav-links li {
  list-style: none;
  width: 100%;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;

  color: #1d1d1f;
  text-decoration: none;

  display: block;
  width: 100%;

  padding: 12px 0;
}

.subtitle {
  display: none;
}

.btn-main {
  display: none;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 24px;
}

.discord-link {
  display: none;
}

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

.footer {
  padding: 60px 0 30px;
}

.footer .container {
  padding-left: 20px;
  padding-right: 20px;
}

.footer .footer-brand {
  font-size: 3rem;
  margin-bottom: 24px;
}

.footer-nav {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-col {
  gap: 10px;
}

.footer-col a {
  font-size: 0.95rem;
}

.footer-bottom {
  flex-direction: column;
  gap: 16px;

  text-align: center;

  padding-top: 20px;
}

.footer-legal {
  flex-wrap: wrap;
  justify-content: center;

  gap: 12px;
}

.footer-legal a {
  font-size: 0.75rem;
}

.copyright {
  font-size: 0.75rem;
  line-height: 1.5;
}