/* =========================
   BOTÃO HAMBURGUER
========================= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary, #1021e3);
}

/* =========================
   OFFCANVAS
========================= */
.offcanvas {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: left 0.3s ease;
  z-index: 1000;
  padding-top: 70px;
}

.offcanvas.active {
  left: 0;
}

.offcanvas-nav {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.offcanvas-nav a {
  padding: 0.9rem;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.offcanvas-nav a:hover {
  background: #f0f0f0;
}

.offcanvas-nav .logout {
  color: #d60000;
}

/* Overlay */
.offcanvas-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
}

.offcanvas-overlay.active {
  display: block;
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
