/* =========================================
   SISTEMA NEXUS - DESIGN SYSTEM 1440px
   ========================================= */
   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

   :root {
       --voluy-orange: #ff5600;
       --voluy-glow: rgba(255, 86, 0, 0.5);
       --bg-black: #050505;
       --glass-border: rgba(255, 255, 255, 0.08);
   }
   
   body {
       background-color: var(--bg-black) !important;
       color: #ffffff !important;
       font-family: 'Plus Jakarta Sans', sans-serif;
       margin: 0;
   }
   
   /* --- AJUSTE DE LARGURA PERSONALIZADA --- */
   .container {
       max-width: 1440px !important; /* Aumento sutil de largura conforme solicitado */
   }
   
   /* --- NAVBAR TECH-GLOW (ALTURA CENTRALIZADA) --- */
   .navbar {
       background: rgba(10, 10, 10, 0.7) !important;
       backdrop-filter: blur(20px) saturate(160%);
       -webkit-backdrop-filter: blur(20px) saturate(160%);
       border-bottom: 1px solid var(--glass-border);
       padding: 0.5rem 0;
       position: sticky;
       top: 0;
       z-index: 1000;
       min-height: 80px; /* Garante uma altura base sólida para centralização */
       display: flex;
       align-items: center;
   }
   
   .navbar > .container {
       display: flex;
       align-items: center; /* Centraliza verticalmente Logo, Nav e Perfil */
       justify-content: space-between;
   }
   
   /* Logo */
   .navbar-logo {
       height: 52px;
       filter: drop-shadow(0 0 12px rgba(255, 86, 0, 0.2));
       transition: all 0.4s ease;
   }
   
   /* Links de Navegação com Texto Centralizado */
   .navbar-nav {
       display: flex;
       align-items: center;
       gap: 5px;
   }
   
   .navbar-nav .nav-item {
       display: flex;
       align-items: center;
       justify-content: center;
   }
   
   .navbar-nav .nav-link {
       font-size: 0.76rem;
       font-weight: 700;
       color: rgba(255, 255, 255, 0.45) !important;
       text-transform: uppercase;
       letter-spacing: 1.2px;
       padding: 0.5rem 0.8rem !important;
       text-align: center; /* Centraliza o texto caso haja quebra */
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       min-width: 100px; /* Garante uma "coluna" mínima para cada link */
       transition: 0.3s;
   }
   
   .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
       color: #fff !important;
   }
   
   .navbar-nav .nav-link::after {
       content: "";
       width: 30px;
       height: 3px;
       background: var(--voluy-orange);
       border-radius: 10px;
       margin-top: 4px;
       transform: scaleX(0);
       transition: 0.3s;
       box-shadow: 0 0 15px var(--voluy-orange);
   }
   
   .navbar-nav .nav-link.active::after,
   .navbar-nav .nav-link:hover::after {
       transform: scaleX(1);
   }
   
   /* Área do Usuário */
   .user-control-panel {
       display: flex;
       align-items: center;
       gap: 15px;
       padding-left: 20px;
       border-left: 1px solid rgba(255, 255, 255, 0.1);
       height: 40px; /* Alinha com a altura visual dos links */
   }
   
   .user-summary { text-align: right; line-height: 1.1; }
   .user-login { font-weight: 800; font-size: 0.82rem; color: #fff; display: block; }
   .user-group-tag { font-size: 0.62rem; font-weight: 800; color: var(--voluy-orange); text-transform: uppercase; letter-spacing: 1px; }
   
   .btn-logout-circle {
       width: 38px; height: 38px;
       display: flex; align-items: center; justify-content: center;
       border-radius: 10px; background: rgba(255, 69, 58, 0.05);
       border: 1px solid rgba(255, 69, 58, 0.15); color: #ff453a;
       transition: 0.3s;
   }
   .btn-logout-circle:hover { background: #ff453a; color: #fff; box-shadow: 0 0 20px rgba(255, 69, 58, 0.4); }
   
   /* --- TÍTULO PADRÃO DAS ABAS --- */
   .page-title-modern {
       font-size: 2.2rem;
       font-weight: 800;
       letter-spacing: -1.5px;
       color: #ffffff;
       text-shadow: 0 0 18px rgba(255, 255, 255, 0.14),
                    0 0 32px rgba(255, 86, 0, 0.25);
       line-height: 1.2;
   }
   
   /* Scrollbar */
   ::-webkit-scrollbar { width: 6px; }
   ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }
   ::-webkit-scrollbar-thumb:hover { background: var(--voluy-orange); }