/* ===================================================
   NAVIGATION - HERO NAV (dentro da section hero)
   =================================================== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  border: none !important;
  box-shadow: none !important;
  background: #020617;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-title);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-demo {
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 10px 20px !important;
  transition: all 0.3s ease;
}

.nav-demo:hover {
  color: #22d3ee !important;
}

.nav-cta {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%) !important;
  background-size: 200% 200% !important;
  color: #000 !important;
  font-family: var(--font-display);
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5) !important;
  background-position: 100% 100% !important;
}

/* Transições para troca dinâmica */
#hero-main-title,
#hero-main-subtitle {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}