.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--theme-transition);
}

body.dark-mode .navbar {
    background-color: rgba(21, 21, 22, 0.85);
    /* Efeito vidro dark */
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-svg {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
}

/* Nav Links (Desktop) */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--action-blue);
}

/* Nav Actions (Btn + Toggle) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}


/* --- 5. RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 834px) {

    #top-sentinel {
        position: absolute;
        top: 0;
        height: 1px;
        width: 100%;
    }

    .nav-links {
        gap: 5vw;
        position: absolute;
        margin: 120px 0px 0px 0px;
        justify-self: anchor-center;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .nav-links.hidden {
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
    }

    .nav-links a {
        width: max-content;
        font-size: 16px;
    }

}