/* =========================================================
   nav.css — Barra de navegação fixa no topo
   ========================================================= */

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 5%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 8, 16, 0.85);
  border-bottom: 1px solid var(--border);
}

/* ── Lado esquerdo: ícone + nome ── */
.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Links de navegação (desktop) ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

/* ── CTA ── */
.nav-cta {
  background: var(--green);
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--pill-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0, 230, 118, 0.4);
}

/* ── Mobile: esconder links de navegação ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .top-nav {
    padding: 12px 5%;
  }
}