
        :root {
            /* Paleta Oficial Oscar's Club */
            --navy: #061A40;
            --navy-light: #151B49;
            --pool: #5ED3F3;
            --pool-dark: #3BBCE2;
            --bg: #F4F8FC;
            --white: #FFFFFF;
            --text: #0B1736;
            --muted: #6F7C91;
            
            /* Cores de Estado / Feedback */
            --success: #22C55E;
            --warning: #F59E0B;
            --danger: #EF4444;
            --purple: #7C3AED;
            --border: #E2E8F0;
            
            /* Sombras, Raios e Espaçamentos Refinados */
            --shadow-soft: 0 4px 15px rgba(6, 26, 64, 0.04);
            --shadow-card: 0 8px 20px rgba(6, 26, 64, 0.03);
            --shadow-hover: 0 12px 28px rgba(94, 211, 243, 0.15);
            
            --radius-xl: 20px;
            --radius-lg: 14px;
            --radius-md: 8px;
            --radius-sm: 6px;
            
            --spacing-layout: 28px;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Reset & Base - Evitar Scrolling Duplo */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Barlow', 'Inter', 'Segoe UI', Arial, sans-serif; }
        html, body { height: 100vh; width: 100vw; overflow: hidden; background-color: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; font-size: 14px; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
        input, select, textarea { font-family: inherit; font-size: 14px; }
        .hidden { display: none !important; }
        .permission-disabled { opacity: 0.45 !important; cursor: not-allowed !important; pointer-events: none !important; }

        /* Acessibilidade: Focus State */
        *:focus-visible { outline: 2px solid var(--pool-dark); outline-offset: 2px; }

        /* Typography */
        h1, h2, h3, h4 { color: var(--navy); font-weight: 600; letter-spacing: -0.01em; }
        h1 { font-size: 28px; }
        h2 { font-size: 22px; }
        h3 { font-size: 16px; }
        p { line-height: 1.5; }
        .text-muted { color: var(--muted); }
        .text-primary { color: var(--pool-dark); }
        .text-danger { color: var(--danger); }
        
        /* Layout Utilities */
        .flex { display: flex; } .grid { display: grid; }
        .flex-col { display: flex; flex-direction: column; }
        .items-center { align-items: center; } .justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
        .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }
        .w-full { width: 100%; } .h-full { height: 100%; } .text-center { text-align: center; }

        /* Componentes Básicos */
        .card { background: var(--white); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: var(--transition); }
        .card:hover { box-shadow: var(--shadow-hover); }
        
        /* Botões Compactos & Profissionais */
        .btn { padding: 0 1.2rem; height: 44px; border-radius: var(--radius-md); font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: var(--transition); font-size: 14px; border: 1px solid transparent; letter-spacing: 0.02em; white-space: nowrap; }
        .btn-sm { padding: 0 0.8rem; height: 36px; font-size: 13px; }
        .btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 12px rgba(6, 26, 64, 0.15); }
        .btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(6, 26, 64, 0.25); }
        .btn-secondary { background: var(--white); color: var(--navy); border-color: var(--border); }
        .btn-secondary:hover { background: var(--bg); border-color: #cbd5e1; }
        .btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
        .btn-outline:hover { background: rgba(94, 211, 243, 0.1); border-color: var(--pool-dark); color: var(--pool-dark); }
        
        /*Badges Elegantes*/
        .badge { padding: 4px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
        .badge-nova, .badge-pendente { background: #FFFBEB; color: #B45309; border: 1px solid #FDE68A; }
        .badge-contactado, .badge-aguardando { background: #F0F9FF; color: #0284C7; border: 1px solid #BAE6FD; }
        .badge-convertida, .badge-confirmada, .badge-activa { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
        .badge-cancelada, .badge-suspensa { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
        .badge-arquivada { background: #F8FAFC; color: var(--muted); border: 1px solid var(--border); }

        /* Formulários Melhorados */
        .form-group { margin-bottom: 1rem; }
        .form-label { display: block; margin-bottom: 0.4rem; font-weight: 500; color: var(--navy); font-size: 13px; cursor: pointer; }
        .form-control { width: 100%; height: 44px; padding: 0 1rem; border: 1px solid #cbd5e1; border-radius: var(--radius-md); transition: var(--transition); background: var(--white); color: var(--text); }
        textarea.form-control { height: auto; padding: 0.75rem 1rem; resize: vertical; }
        .form-control:focus { outline: none; border-color: var(--pool); box-shadow: 0 0 0 3px rgba(94, 211, 243, 0.2); }
        .form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }

        /* Tabelas Compactas & Limpas */
        .table-container { width: 100%; overflow-x: auto; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-card); -webkit-overflow-scrolling: touch; }
        table { width: 100%; border-collapse: collapse; min-width: 900px; text-align: left; }
        th { background: #F8FAFC; font-weight: 600; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 16px; border-bottom: 1px solid var(--border); white-space: nowrap; }
        td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; vertical-align: middle; color: var(--text); }
        tr:last-child td { border-bottom: none; }
        tr:hover td { background: rgba(94, 211, 243, 0.05); }
        td.id-col { white-space: nowrap; font-family: monospace; font-size: 12px; color: var(--muted); }
        
        .table-actions { display: flex; gap: 6px; justify-content: flex-end; }
        .action-btn { width: 30px; height: 30px; border-radius: var(--radius-sm); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); background: var(--white); border: 1px solid #cbd5e1; transition: var(--transition); font-size: 16px; }
        .action-btn:hover { color: var(--pool-dark); border-color: var(--pool); background: #F0F9FF; transform: translateY(-1px); }

        /* Modais */
        .modal-overlay { position: fixed; inset: 0; background: rgba(6, 26, 64, 0.7); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: var(--transition); }
        .modal-overlay.active { opacity: 1; pointer-events: all; }
        .modal-content { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 680px; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); transform: scale(0.95) translateY(10px); transition: var(--transition); margin: 16px; }
        .modal-overlay.active .modal-content { transform: scale(1) translateY(0); }
        .modal-header { padding: 16px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
        .modal-header h3 { font-size: 18px; margin: 0; }
        .modal-body { padding: 24px; overflow-y: auto; flex: 1; }
        .modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 12px; background: #F8FAFC; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
        
        /* Layout Login & Public (Identidade Fortalecida) */
        .layout-split { display: flex; min-height: 100vh; overflow-y: auto; }
        .split-left { flex: 1; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 4rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
        .split-left::before { content: ''; position: absolute; bottom: -20%; left: -10%; width: 150%; height: 50%; background: radial-gradient(ellipse at center, rgba(94, 211, 243, 0.15) 0%, transparent 70%); z-index: 0; pointer-events: none; }
        .split-content { position: relative; z-index: 1; max-width: 550px; }
        .split-right { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg); }
        .auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-card); }

        /* Logotipo SVG Reutilizável */
        .logo-svg { width: 48px; height: 48px; fill: none; stroke: var(--pool); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 24px; }

        /* O Layout Administrativo - Viewport Constrained */
        .layout-admin { display: flex; height: 100vh; width: 100vw; overflow: hidden; background: var(--bg); }
        
        /* Sidebar (260px Fixed) */
        .sidebar { width: 260px; flex-shrink: 0; background: var(--navy); color: var(--white); display: flex; flex-direction: column; transition: var(--transition); z-index: 100; box-shadow: 4px 0 15px rgba(0,0,0,0.05); }
        .sidebar-header { padding: 20px 24px; display: flex; align-items: center; gap: 12px; height: 70px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .sidebar-logo-icon { display: flex; align-items: center; justify-content: center; }
        .sidebar-logo-icon svg { width: 32px; height: 32px; stroke: var(--pool); }
        
        .sidebar-menu { flex: 1; overflow-y: auto; padding: 16px 12px; display: flex; flex-direction: column; gap: 4px; }
        .sidebar-menu::-webkit-scrollbar { width: 4px; }
        .sidebar-menu::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
        
        .menu-category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin: 16px 0 8px 12px; font-weight: 600; }
        .menu-item { padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; border-radius: var(--radius-md); color: rgba(255,255,255,0.7); transition: var(--transition); font-weight: 500; font-size: 14px; text-decoration: none; cursor: pointer; height: 42px; }
        .menu-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
        .menu-item.active { background: rgba(94, 211, 243, 0.1); color: var(--pool); border-left: 3px solid var(--pool); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
        .menu-item-left { display: flex; align-items: center; gap: 12px; }
        .menu-item i { font-size: 20px; opacity: 0.8; }
        .menu-item.active i { opacity: 1; }
        .badge-soon { background: rgba(255,255,255,0.1); font-size: 9px; padding: 2px 6px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15); letter-spacing: 0.5px; }

        /* Área Principal */
        .main-wrapper { flex: 1; display: flex; flex-direction: column; min-width: 0; }
        
        /* Header Superior */
        .top-header { height: 70px; flex-shrink: 0; background: var(--white); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 var(--spacing-layout); z-index: 20; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
        .search-container { position: relative; width: 300px; transition: var(--transition); }
        .search-input { width: 100%; height: 40px; padding: 0 1rem 0 2.5rem; background: #F8FAFC; border: 1px solid var(--border); border-radius: 99px; transition: var(--transition); font-size: 13px; }
        .search-input:focus { background: var(--white); border-color: var(--pool); outline: none; box-shadow: 0 0 0 3px rgba(94, 211, 243, 0.15); }
        .search-container > i { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px;}
        
        .search-results { position: absolute; top: calc(100% + 8px); left: 0; width: 100%; background: var(--white); border-radius: var(--radius-md); box-shadow: 0 10px 40px rgba(6, 26, 64, 0.1); border: 1px solid var(--border); display: none; z-index: 100; max-height: 350px; overflow-y: auto; }
        .search-results.active { display: block; }
        .search-item { padding: 12px 16px; border-bottom: 1px solid var(--border); cursor: pointer; transition: var(--transition); display: flex; justify-content: space-between; align-items: center; }
        .search-item:hover { background: #F8FAFC; }
        
        .header-profile { display: flex; align-items: center; gap: 16px; }
        .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--pool); color: var(--navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; border: 2px solid var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

        /* Área de Conteúdo Scrollable Principal */
        .content-area { flex: 1; overflow-y: auto; padding: var(--spacing-layout); }
        .page-header { margin-bottom: 24px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
        .page-title h2 { margin-bottom: 4px; font-size: 24px; color: var(--navy); letter-spacing: -0.5px; }
        
        /* Dashboard Bento Grid Compactado */
        .bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }
        
        /* Row 1: Stats */
        .bento-stat { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; min-height: 120px; height: auto; border-bottom: 3px solid var(--pool); position: relative; overflow: hidden; transition: var(--transition); }
        .bento-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
        .bento-stat::after { content: '\223F'; font-family: sans-serif; position: absolute; right: -10px; bottom: -25px; font-size: 80px; color: rgba(94, 211, 243, 0.05); z-index: 0; pointer-events: none; }
        .stat-card-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; }
        .stat-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
        .stat-value { font-size: 32px; font-weight: 700; color: var(--navy); margin-top: 2px; line-height: 1; letter-spacing: -1px; }
        .stat-label { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

        /* Row 2: Charts */
        .bento-chart { background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border); grid-column: span 2; display: flex; flex-direction: column; min-height: 300px; height: auto; }
        .chart-container { position: relative; width: 100%; flex: 1; margin-top: 16px; min-height: 220px; max-height: 280px; } 
        
        /* Row 3: Quick Actions & Feed */
        .bento-actions { grid-column: span 1; }
        .bento-feed { grid-column: span 3; background: var(--white); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
        
        .quick-actions-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
        .quick-action-item { display: flex; align-items: center; gap: 12px; height: 56px; padding: 0 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--navy); font-weight: 500; text-align: left; transition: var(--transition); width: 100%; font-size: 13.5px; box-shadow: 0 2px 5px rgba(0,0,0,0.02);}
        .quick-action-item:hover { border-color: var(--pool); box-shadow: var(--shadow-hover); transform: translateX(2px); color: var(--navy); }
        .quick-action-item i { font-size: 20px; color: var(--pool); background: rgba(94, 211, 243, 0.15); padding: 6px; border-radius: 6px; }

        .activity-feed { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; margin-top: 16px; }
        .activity-item { padding: 12px 16px; border-radius: var(--radius-md); border: 1px solid var(--border); border-left: 3px solid var(--border); display: flex; flex-direction: column; gap: 6px; background: #F8FAFC;}
        .activity-item.type-pre { border-left-color: var(--pool); }
        .activity-item.type-reg { border-left-color: var(--success); }
        .activity-header { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--muted); }
        .activity-text { font-size: 13px; font-weight: 500; color: var(--text); line-height: 1.3; }
        
        /* Kanban */
        .kanban-board { display: flex; gap: 20px; overflow-x: auto; padding-bottom: 16px; min-height: 400px;}
        .kanban-col { background: #F8FAFC; border-radius: var(--radius-lg); min-width: 280px; width: 280px; display: flex; flex-direction: column; border: 1px solid var(--border); overflow: hidden; }
        .kanban-header { padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--white); font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; }
        .kanban-body { padding: 16px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
        .kanban-card { background: var(--white); border-radius: var(--radius-md); padding: 14px; box-shadow: 0 2px 6px rgba(6,26,64,0.03); border: 1px solid var(--border); cursor: pointer; transition: var(--transition); border-left: 3px solid var(--pool); }
        .kanban-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); border-color: var(--pool); }
        
        /* Multi-step Form Indicator */
        .step-indicator { display: flex; justify-content: space-between; position: relative; margin-bottom: 24px; padding: 0 10px; }
        .step-indicator::before { content: ''; position: absolute; top: 16px; left: 30px; right: 30px; height: 2px; background: var(--border); z-index: 1; }
        .step-item { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
        .step-circle { width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--muted); transition: var(--transition); font-size: 13px; }
        .step-item.active .step-circle { border-color: var(--navy); background: var(--navy); color: var(--white); box-shadow: 0 0 0 4px rgba(6, 26, 64, 0.1); }
        .step-item.completed .step-circle { border-color: var(--pool); background: var(--pool); color: var(--navy); }
        .step-label { font-size: 11px; font-weight: 600; color: var(--muted); text-align: center; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.05em;}
        .step-item.active .step-label { color: var(--navy); }
        .step-content { display: none; animation: fadeIn 0.3s ease; }
        .step-content.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Toasts */
        #toast-container { position: fixed; bottom: 32px; right: 32px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; }
        .toast { background: var(--navy); color: var(--white); padding: 14px 20px; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(6,26,64,0.2); display: flex; align-items: center; gap: 12px; border-left: 4px solid var(--pool); transform: translateX(120%); transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); min-width: 280px; }
        .toast.show { transform: translateX(0); }
        .toast.error { border-left-color: var(--danger); }

        /* Mensalidades Inputs Compactos */
        .fee-input-wrapper { position: relative; width: 100px; }
        .fee-input { width: 100%; height: 34px; padding: 0 28px 0 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; color: var(--navy); background: #F8FAFC; }
        .fee-input:focus { outline: none; border-color: var(--pool); background: var(--white); }
        .fee-currency { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 10px; color: var(--muted); pointer-events: none; font-weight: 600;}

        /* Controlo Mensal Styles */
        .progress-wrapper { background: var(--border); height: 8px; border-radius: 4px; overflow: hidden; margin-top: 8px; width: 100%; }
        .progress-bar { height: 100%; transition: width 0.4s ease, background-color 0.4s ease; border-radius: 4px;}
        .badge-emdia { background: #F0FDF4; color: #15803D; border: 1px solid #BBF7D0; }
        .badge-dentro { background: #F0F9FF; color: #0284C7; border: 1px solid #BAE6FD; }
        .badge-multa { background: #FFF7ED; color: #C2410C; border: 1px solid #FFEDD5; }
        .badge-atrasocri { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }

        .sidebar-overlay { position: fixed; inset: 0; background: rgba(6, 26, 64, 0.6); backdrop-filter: blur(2px); z-index: 90; display: none; }
        .sidebar-overlay.active { display: block; }
        .menu-toggle { display: none; font-size: 24px; color: var(--navy); }
        
        /* SEO Article Styling */
        .seo-article { margin-top: 2.5rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(8px); padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid rgba(255, 255, 255, 0.2); }
        .seo-article h2 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.75rem; letter-spacing: 0; }
        .seo-article p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); line-height: 1.6; }

        /* Responsividade Extrema */
        @media (max-width: 1440px) {
            .bento-grid { gap: 16px; }
            :root { --spacing-layout: 24px; }
        }

        @media (max-width: 1200px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-chart { grid-column: span 2; }
            .bento-actions { grid-column: span 2; }
            .bento-feed { grid-column: span 2; }
            .bento-mensal { grid-column: span 2 !important; }
        }
        
        @media (max-width: 992px) {
            .layout-split { flex-direction: column; }
            .split-left { padding: 40px 24px; min-height: auto; flex: none; }
            .split-left::before { display: none; }
            .auth-card { padding: 32px 24px; margin: 0 auto; }
            :root { --spacing-layout: 20px; }
            .chart-container { min-height: 200px; }
            .grid-cols-2 { grid-template-columns: 1fr; }
        }
        
        @media (max-width: 768px) {
            .sidebar { position: fixed; left: -270px; top: 0; height: 100vh; box-shadow: 4px 0 24px rgba(0,0,0,0.15); width: 260px; }
            .sidebar.open { left: 0; }
            .menu-toggle { display: block; margin-right: 8px; }
            
            .search-container { width: 150px; flex-shrink: 1; }
            .header-profile .flex > div { display: none; } /* Oculta o nome/cargo do admin em mobile */
            
            .bento-grid { grid-template-columns: 1fr; gap: 16px; }
            .bento-stat, .bento-chart, .bento-actions, .bento-feed, .bento-mensal { grid-column: span 1 !important; }
            .form-row { grid-template-columns: 1fr; }
            
            .page-header { flex-direction: column; align-items: flex-start; gap: 12px; }
            .header-actions { width: 100%; display: flex; justify-content: flex-start; flex-wrap: wrap; }
            .step-label { display: none; }
            
            .modal-content { margin: 10px; max-height: calc(100vh - 20px); width: calc(100% - 20px); }
            .modal-body { padding: 16px; }
            .table-container table { min-width: 750px; }
            
            .kanban-board { flex-direction: column; min-height: auto; gap: 12px; }
            .kanban-col { width: 100%; min-width: unset; }
            .kanban-body { max-height: 400px; overflow-y: auto; }
        }

        @media (max-width: 576px) {
            .top-header { padding: 0 16px; }
            .content-area { padding: 16px; }
            .split-left h1 { font-size: 2.2rem; }
            .stat-value { font-size: 26px; }
            .search-input { width: 120px; font-size: 12px; padding-left: 2rem; }
            .search-container > i { font-size: 14px; }
            
            .step-indicator::before { left: 15px; right: 15px; }
            .modal-footer { flex-direction: column; gap: 8px; }
            .modal-footer .btn { width: 100%; margin: 0; }
            #btn-prev-step { order: 3; }
        }

        /* Print Styles */
        #print-area { display: none; }
        @media print {
            body { background: var(--white); height: auto; overflow: visible; font-family: 'Barlow', sans-serif;}
            .layout-admin, .layout-split, #toast-container, .modal-overlay, .sidebar-overlay { display: none !important; }
            #print-area { display: block !important; position: static; padding: 0; width: 100%; }
            .print-header { border-bottom: 3px solid var(--navy); padding-bottom: 1rem; margin-bottom: 2rem; display: flex; justify-content: space-between; align-items: flex-end;}
            .print-header h1 { color: var(--navy); font-size: 24pt; margin-bottom: 5px; display: flex; align-items: center; gap: 10px;}
            .print-section { margin-bottom: 1.5rem; }
            .print-section h3 { background: #F8FAFC; padding: 6px 12px; font-size: 12pt; margin-bottom: 12px; border-left: 4px solid var(--pool); color: var(--navy); }
            .print-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; font-size: 11pt; }
            .print-label { font-weight: 600; color: var(--muted); font-size: 10pt; text-transform: uppercase; }
            .print-val { font-weight: 500; color: var(--navy); }
            .print-signature { margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; text-align: center; }
            .print-line { border-top: 1px solid var(--navy); margin-top: 40px; padding-top: 5px; font-size: 10pt; font-weight: 500;}
        }
    
