/* ===================================================================
   PULSO — NAVIGATION & FOOTER STYLES
   Top navigation bar and footer common to all pages
   Last updated: 2026-04-05
=================================================================== */

/* ======= TOP NAVIGATION BAR ======= */
nav.pulso-top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(5, 0, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(159, 0, 255, 0.1);
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  padding: 0 20px;
}

nav.pulso-top-nav .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

/* ======= LOGO ======= */
nav.pulso-top-nav .logo {
  color: #c77dff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s ease;
}

nav.pulso-top-nav .logo:hover {
  color: #e0b0ff;
}

/* ======= NAVIGATION LIST ======= */
nav.pulso-top-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

/* ======= NAVIGATION LINKS ======= */
nav.pulso-top-nav a {
  color: #c77dff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

nav.pulso-top-nav a:hover {
  background: rgba(159, 0, 255, 0.12);
  color: #e0b0ff;
}

nav.pulso-top-nav a.nav-active {
  color: #f1f5f9;
  background: rgba(159, 0, 255, 0.18);
}

/* ======= NAVIGATION SEPARATOR ======= */
nav.pulso-top-nav .nav-sep {
  color: #251e3d;
  font-size: 12px;
}

/* ======= CTA (Call-To-Action) BUTTON IN NAV ======= */
nav.pulso-top-nav .cta-nav {
  background: linear-gradient(135deg, #9f00ff, #ff0073);
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  transition: opacity 0.2s ease;
}

nav.pulso-top-nav .cta-nav:hover {
  opacity: 0.9;
}

/* ======= FOOTER ======= */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 20px;
  text-align: center;
  color: var(--dim);
  font-size: 13px;
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.2);
}

footer .footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

footer .footer-tagline {
  margin-bottom: 12px;
  line-height: 1.5;
}

footer a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.2s ease;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin-bottom: 8px;
}

/* ======= FOOTER NAVIGATION LINKS ======= */
footer nav a {
  display: inline-block;
  margin: 0 12px;
  padding: 4px 0;
}

/* ======= RESPONSIVE: TABLET (768px and below) ======= */
@media (max-width: 768px) {
  nav.pulso-top-nav ul {
    gap: 2px;
  }

  nav.pulso-top-nav a {
    font-size: 11px;
    padding: 4px 6px;
  }

  nav.pulso-top-nav .nav-sep {
    display: none;
  }

  nav.pulso-top-nav .cta-nav {
    display: none;
  }

  footer {
    padding: 24px 16px;
    font-size: 12px;
  }

  footer a {
    display: block;
    margin: 6px 0;
  }
}

/* ======= RESPONSIVE: MOBILE (480px and below) ======= */
@media (max-width: 480px) {
  nav.pulso-top-nav {
    padding: 0 12px;
  }

  nav.pulso-top-nav .container {
    height: 48px;
  }

  nav.pulso-top-nav .logo {
    font-size: 14px;
  }

  nav.pulso-top-nav ul {
    gap: 0;
  }

  nav.pulso-top-nav a {
    font-size: 10px;
    padding: 3px 4px;
  }

  footer {
    padding: 20px 12px;
    font-size: 11px;
    margin-top: 40px;
  }

  footer .footer-logo {
    font-size: 13px;
  }
}
