/* ===================================================
   NAVIGATION - HAMBURGER E MOBILE DRAWER
   =================================================== */

/* Hamburger Menu (Mobile Only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  z-index: 2000;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #06b6d4);
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* Mobile Drawer (Android Style) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: linear-gradient(180deg, #111827 0%, #030712 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 3000;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 40px 30px;
  box-shadow: -20px 0 50px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-drawer {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-drawer:hover {
  transform: rotate(90deg);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  color: #e5e7eb;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  display: block;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.drawer-link:hover {
  color: #22d3ee;
  padding-left: 8px;
}

.drawer-cta {
  margin-top: 30px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #000 !important;
  text-align: center;
  padding: 18px;
  border-radius: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: none;
  transition: all 0.3s ease;
}

.drawer-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .drawer-overlay { display: block; }
}

/* Forçando Hamburger no Desktop também conforme solicitado */
@media (min-width: 769px) {
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
}