/* MENU GLOBAL */

.dash-menu {
  position: sticky;
  top: 16px;
  z-index: 999;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(244, 207, 99, 0.14);
  border-radius: 999px;
  padding: 8px;
}

.menu-wrapper {
  position: sticky;
  top: 0;
  z-index: 998;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  margin-bottom: 30px;

  padding: 4px 0;

  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(244, 207, 99, 0.06);
}

.menu-wrapper::after {
  content: "";

  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(244, 207, 99, 0.08),
    transparent 60%
  );

  pointer-events: none;
}

.menu-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-links a,
.menu-links button {
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent !important;
  border: none !important;
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.menu-links i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(244, 207, 99, 0.1);
  border: 1px solid rgba(244, 207, 99, 0.18);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.menu-links a:hover,
.menu-links button:hover {
  background: rgba(244, 207, 99, 0.12) !important;
  color: var(--gold);
}

.menu-links button i {
  color: #ff4d4d;
  border-color: rgba(255, 77, 77, 0.25);
  background: rgba(255, 77, 77, 0.08);
}

.menu-toggle {
  display: none;
}

.hidden {
  display: none !important;
}

@media (max-width: 760px) {
  .dash-menu {
    width: 100%;
    border-radius: 18px;
    padding: 10px;
  }

  .menu-toggle {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(244, 207, 99, 0.18);
    background: rgba(244, 207, 99, 0.08);
    color: var(--gold);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
  }

  .menu-links.aberto {
    display: flex;
  }

  .menu-links a,
  .menu-links button {
    width: 100%;
    justify-content: flex-start;
    background: #111 !important;
  }
}
