/* ==========================================
   GVI PREMIUM STANDARDIZED NAVBAR & GLOBAL UI
   ========================================== */

/* Ocultar scrollbar em todos os navegadores para visual de App premium */
html, body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
}

::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 40px;
    background: rgba(30, 18, 12, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10010;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.nav-logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #fbbf24, #ea580c);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ea580c;
}

@media (max-width: 600px) {
    .navbar {
        height: 60px;
        padding: 0 20px;
    }
    .nav-links {
        display: flex;
        gap: 15px;
    }
    .nav-links a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .nav-logo span {
        display: none;
    }
}
