/* =========================================
   NAVBAR TIPO PÍLDORA (LEXSOR STUDIO)
   ========================================= */
.nav-container {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 20px;
}

.navbar-pill {
    background-color: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 10px 30px;
    width: 100%;
    max-width: 900px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-brand span { color: #8b5cf6; } /* Acento Violeta */
.nav-brand .brand-dot { color: #0ea5e9; }

.nav-links { display: flex; gap: 25px; }

.nav-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-item:hover, .nav-item.active { color: #ffffff; }

.btn-nav {
    background-color: #ffffff;
    color: #000000;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-nav:hover { background-color: #8b5cf6; color: #ffffff; }

.mobile-menu-btn {
    display: none; background: none; border: none; color: #ffffff; font-size: 20px; cursor: pointer;
}
.footer-links-legal {
    display: flex;
    align-items: center;
}
.footer-links-legal a {
    color: #6b7280;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links-legal a:hover {
    color: #ffffff;
}


@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .navbar-pill { border-radius: 12px; padding: 15px 20px; }
}