/* ====== VARIÁVEIS — DESIGN ESCURO ====== */
:root {
    --bg: #0d1117;
    --bg2: #161b22;
    --bg3: #1c2128;
    --card: #21262d;
    --card2: #2d333b;
    --border: #30363d;
    --border2: #444c56;
    --text: #e6edf3;
    --text2: #8b949e;
    --text3: #6e7681;
    --accent: #f0883e;
    --accent2: #ffa657;
    --green: #3fb950;
    --green2: #56d364;
    --blue: #58a6ff;
    --blue2: #79c0ff;
    --purple: #a371f7;
    --red: #f85149;
    --yellow: #e3b341;
    --success: #3fb950;
    --success-subtle: rgba(63,185,80,0.15);
    --warning: #e3b341;
    --warning-subtle: rgba(227,179,65,0.15);
    --danger: #f85149;
    --danger-subtle: rgba(248,81,73,0.15);
    --primary: #f0883e;
    --primary-dark: #da7a35;
    --primary-subtle: rgba(240,136,62,0.12);
    --muted: #6e7681;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --nav-w: 220px;
    --header-h: 56px;
    --bottom-nav-h: 60px;
    --font: 'Sora', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 8px -2px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.35);
    --transition-fast: 0.12s ease;
    --transition-normal: 0.2s ease;
}

/* ====== MODO CLARO ====== */
[data-theme="light"] {
    --bg: #f6f8fa;
    --bg2: #ffffff;
    --bg3: #f0f2f5;
    --card: #ffffff;
    --card2: #f6f8fa;
    --border: #d8dee4;
    --border2: #bcc3cd;
    --text: #1f2328;
    --text2: #59636e;
    --text3: #8b949e;
    --accent: #e16f24;
    --accent2: #cf6518;
    --green: #1a7f37;
    --green2: #1a7f37;
    --blue: #0969da;
    --blue2: #0550ae;
    --purple: #8250df;
    --red: #cf222e;
    --yellow: #9a6700;
    --success: #1a7f37;
    --success-subtle: rgba(26,127,55,0.1);
    --warning: #9a6700;
    --warning-subtle: rgba(154,103,0,0.1);
    --danger: #cf222e;
    --danger-subtle: rgba(207,34,46,0.1);
    --primary: #e16f24;
    --primary-dark: #c45d1a;
    --primary-subtle: rgba(225,111,36,0.1);
    --muted: #8b949e;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 8px -2px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 24px -4px rgba(0,0,0,0.08);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    touch-action: manipulation;
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
* { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }

/* ====== LOGIN ====== */
#tela-login {
    position: fixed; inset: 0;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    padding: 24px;
}
.login-box {
    width: 100%; max-width: 380px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}
.login-logo {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 8px;
}
.login-logo-icon {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
}
.login-logo h1 { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text); }
.login-subtitle {
    font-size: 0.8rem; color: var(--text3);
    margin-bottom: 28px;
}
.login-empresa-tag {
    display: inline-block;
    background: rgba(240,136,62,0.15);
    color: var(--accent2);
    border: 1px solid rgba(240,136,62,0.3);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.75rem;
    font-family: var(--mono);
}
#area-codigo-empresa { margin-bottom: 8px; }
.form-input {
    width: 100%;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.88rem;
    font-family: var(--font);
    outline: none;
    margin-bottom: 10px;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    appearance: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text3); }
@media (max-width: 480px) {
    .form-input, textarea { font-size: 16px; }
}
.btn-login-main {
    width: 100%; padding: 11px;
    background: var(--accent);
    border: none; border-radius: var(--radius-sm);
    color: #fff; font-size: 0.9rem; font-weight: 700;
    font-family: var(--font);
    cursor: pointer; transition: background 0.15s;
    margin-top: 4px;
}
.btn-login-main:hover { background: var(--accent2); }
.btn-login-main:active { transform: scale(0.98); }

/* ====== LAYOUT APP ====== */
#app { display: none; min-height: 100dvh; }

/* DESKTOP: sidebar fixada + conteúdo */
@media (min-width: 768px) {
    #app { flex-direction: row; }
    .sidebar {
        width: var(--nav-w);
        height: 100dvh;
        position: sticky; top: 0;
        background: var(--bg2);
        border-right: 1px solid var(--border);
        display: flex; flex-direction: column;
        flex-shrink: 0;
        overflow-y: auto;
        z-index: 100;
    }
    .main-area { flex: 1; min-width: 0; display: flex; flex-direction: column; }
    .top-bar { display: flex; }
    .bottom-nav { display: none; }
    .content-wrap { flex: 1; overflow-y: auto; }
    .container { max-width: 860px; margin: 0 auto; padding: 0 0 40px; }
    .filters { padding: 10px 20px; }
    .filters-advanced { display: contents!important; }
    .btn-filters-toggle { display: none!important; }
}

/* MOBILE: header fixo + bottom nav */
@media (max-width: 767px) {
    .sidebar { display: none; }
    .main-area { display: block; padding-top: var(--header-h); padding-bottom: var(--bottom-nav-h); }
    .top-bar {
        position: fixed; top: 0; left: 0; right: 0; z-index: 200;
        height: var(--header-h);
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding-top: env(safe-area-inset-top);
    }
    .bottom-nav {
        display: flex;
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
        height: var(--bottom-nav-h);
        background: var(--bg2);
        border-top: 1px solid var(--border);
        padding-bottom: env(safe-area-inset-bottom);
    }
    .container { padding: 0 0 20px; }
    .filters { padding: 8px 12px; }
    .filters-advanced { display: none; width:100%; flex-wrap:wrap; gap:8px; }
    .filters-advanced.open { display: flex; }
    .filters-advanced input, .filters-advanced select { flex: 1 1 calc(50% - 4px); min-width: 130px; }
    .btn-filters-toggle { display: inline-flex!important; }
}

/* ====== SIDEBAR (DESKTOP) ====== */
.sidebar-header {
    padding: 20px 16px 16px;
    border-bottom: 1px solid var(--border);
}
.sidebar-logo {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 4px;
}
.sidebar-logo-icon {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.sidebar-logo-text { font-size: 0.9rem; font-weight: 800; letter-spacing: -0.3px; }
.sidebar-empresa {
    font-size: 0.7rem; color: var(--text3);
    font-family: var(--mono);
    padding-left: 42px;
}
.sidebar-nav { flex: 1; padding: 12px 8px; display: flex; flex-direction: column; gap: 2px; }
.sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text2);
    font-size: 0.82rem; font-weight: 500;
    cursor: pointer; border: none; background: transparent;
    width: 100%; text-align: left;
    transition: all 0.12s;
    font-family: var(--font);
}
.sidebar-link:hover { background: var(--bg3); color: var(--text); }
.sidebar-link.active { background: rgba(240,136,62,0.12); color: var(--accent2); }
.sidebar-link.active i { color: var(--accent); }
.sidebar-link i { width: 16px; text-align: center; font-size: 0.85rem; opacity: 0.7; flex-shrink: 0; }
.sidebar-link.active i { opacity: 1; }
.sidebar-link.admin-controls { display: none; }
.sidebar-footer {
    padding: 12px 8px 16px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 4px;
}
.sidebar-user {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg3);
}
.sidebar-user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(240,136,62,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: var(--accent);
    flex-shrink: 0;
}
.sidebar-user-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.sidebar-user-role { font-size: 0.68rem; color: var(--text3); }
.btn-sidebar-action {
    display: flex; align-items: center; gap: 8px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    color: var(--text3); font-size: 0.78rem; font-weight: 500;
    cursor: pointer; border: none; background: transparent;
    width: 100%; text-align: left; font-family: var(--font);
    transition: all 0.12s;
}
.btn-sidebar-action:hover { background: var(--bg3); color: var(--text2); }
.btn-sidebar-action.danger:hover { background: rgba(248,81,73,0.1); color: var(--red); }
.btn-sidebar-action i { width: 16px; text-align: center; font-size: 0.8rem; }

/* ====== TOP BAR (MOBILE) ====== */
.top-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 14px; gap: 10px;
}
.top-bar-logo {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; font-weight: 800;
}
.top-bar-logo-icon {
    width: 28px; height: 28px; background: var(--accent);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; color: #fff;
}
.top-bar-empresa {
    font-size: 0.65rem; color: var(--text3);
    font-family: var(--mono); margin-left: 4px;
}
.top-bar-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    background: var(--bg3); border: 1px solid var(--border);
    color: var(--text2); cursor: pointer; font-size: 0.82rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.12s; position: relative;
}
.icon-btn:hover { background: var(--card); color: var(--text); }

/* ====== BOTTOM NAV (MOBILE) ====== */
.bottom-nav {
    justify-content: space-around; align-items: center;
}
.bnav-btn {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px; padding: 4px 0;
    background: transparent; border: none; color: var(--text3);
    font-size: 0.55rem; font-weight: 600; cursor: pointer;
    font-family: var(--font); text-transform: uppercase; letter-spacing: 0.3px;
    transition: color 0.12s;
}
.bnav-btn i { font-size: 1rem; }
.bnav-btn.active { color: var(--accent); }
.bnav-btn.admin-controls { display: none; }

/* ====== FILTROS ====== */
.filters {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.filters input, .filters select {
    background: var(--bg3); border: 1px solid var(--border);
    padding: 7px 12px; border-radius: var(--radius-sm);
    font-size: 0.8rem; outline: none; color: var(--text);
    font-family: var(--font); flex: 1; min-width: 120px;
    transition: border-color 0.12s;
}
.filters input:focus, .filters select:focus { border-color: var(--accent); }
.filters input::placeholder { color: var(--text3); }
.filters select option { background: var(--bg3); }
#filtroData { max-width: 160px; }
#buscaNF { max-width: 100px; }

.btn-refresh {
    background: var(--accent); color: #fff; border: none;
    padding: 7px 10px; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.85rem; transition: background 0.12s;
    flex-shrink: 0;
}
.btn-refresh:hover { background: var(--accent2); }

.btn-filters-toggle {
    background: var(--bg3); border: 1px solid var(--border);
    color: var(--text2); padding: 7px 12px; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.78rem; font-weight: 500; font-family: var(--font);
    display: none; align-items: center; gap: 6px; white-space: nowrap;
}
.btn-filters-toggle:hover { border-color: var(--accent); color: var(--text); }

.btn-icon {
    background: var(--bg3); border: 1px solid var(--border);
    color: var(--text2); cursor: pointer; padding: 7px 10px;
    border-radius: var(--radius-sm); transition: all 0.12s;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem;
}
.btn-icon:hover { background: var(--card); color: var(--accent); border-color: var(--accent); }

.btn-export {
    background: rgba(63,185,80,0.1); border: 1px solid rgba(63,185,80,0.25);
    color: var(--green2); padding: 7px 12px; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 0.78rem; font-weight: 600; font-family: var(--font);
    display: flex; align-items: center; gap: 6px; white-space: nowrap;
    transition: all 0.12s;
}
.btn-export:hover { background: rgba(63,185,80,0.18); }

/* ====== KPI DASH ====== */
.dash {
    padding: 16px; display: grid;
    grid-template-columns: repeat(3, 1fr); gap: 8px;
}
@media (max-width: 480px) {
    .dash { padding: 12px; gap: 6px; }
}
.dash-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 10px; text-align: center;
    transition: border-color 0.12s;
}
.dash-item:hover { border-color: var(--border2); }
.dash-item span { font-size: 0.58rem; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.8px; display: block; margin-bottom: 2px; }
.dash-item b { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; line-height: 1; display: block; color: var(--text); }

/* ====== CARDS ====== */
.card {
    background: var(--card);
    margin: 8px 16px;
    border-radius: var(--radius);
    padding: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.12s;
    position: relative;
    animation: fadeIn 0.2s ease-out;
}
.card:hover { border-color: var(--border2); }
@media (max-width: 767px) { .card { margin: 8px 12px; } }

.card h3 { margin: 0 0 14px; font-size: 0.95rem; font-weight: 700; color: var(--text); width: 70%; line-height: 1.3; letter-spacing: -0.2px; }

/* ====== BADGES ====== */
.badge {
    float: right; padding: 3px 8px; border-radius: 5px;
    font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    border: none;
}
.badge-p { background: rgba(227,179,65,0.15); color: var(--yellow); }
.badge-s { background: rgba(63,185,80,0.15); color: var(--green2); }
.badge-r { background: rgba(88,166,255,0.15); color: var(--blue2); }

/* ====== DETALHES CARD ====== */
.details { border-top: 1px solid var(--border); padding-top: 12px; font-size: 0.8rem; display: grid; gap: 6px; }
.line { display: flex; gap: 8px; align-items: flex-start; color: var(--text2); line-height: 1.4; }
.line b { color: var(--text); min-width: 22px; font-weight: 600; }
.line i { width: 16px; font-size: 0.78rem; margin-top: 2px; flex-shrink: 0; }
.fa-file-invoice { color: var(--blue)!important; }
.fa-map-marker-alt { color: var(--red)!important; }
.fa-user-hard-hat { color: var(--purple)!important; }
.fa-barcode { color: var(--blue)!important; }
.fa-truck-loading { color: var(--yellow)!important; }
.fa-box { color: var(--yellow)!important; }
.fa-clock { color: var(--purple)!important; }
.fa-phone { color: var(--green)!important; }
.fa-camera { color: var(--yellow)!important; }
.fa-sticky-note { color: var(--text3)!important; }
.fa-whatsapp { color: #25D366!important; }

/* ====== BOTÕES ====== */
.actions { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }
.btn {
    padding: 9px 12px; border-radius: var(--radius-sm); border: 1px solid transparent;
    font-weight: 600; font-size: 0.74rem; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
    transition: all 0.12s; font-family: var(--font); line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn i { font-size: 0.75rem; }

.btn-p { background: var(--accent); color: #fff; flex: 1; min-width: 120px; border-color: var(--accent); }
.btn-p:hover { background: var(--accent2); border-color: var(--accent2); }

.btn-s { background: var(--bg3); color: var(--text2); border-color: var(--border); }
.btn-s:hover { background: var(--card2); color: var(--text); border-color: var(--border2); }

.btn-w { background: rgba(63,185,80,0.1); color: var(--green2); border-color: rgba(63,185,80,0.25); }
.btn-w:hover { background: rgba(63,185,80,0.18); }

.btn-black { background: var(--text); color: var(--bg); }

.btn-info { background: rgba(88,166,255,0.1); color: var(--blue2); border-color: rgba(88,166,255,0.25); }
.btn-info:hover { background: rgba(88,166,255,0.18); }

.btn-danger { background: rgba(248,81,73,0.1); color: var(--red); border-color: rgba(248,81,73,0.25); }
.btn-danger:hover { background: rgba(248,81,73,0.18); }

/* ====== PÁGINAS ====== */
.page { display: none; }
.page.active { display: block; }
.admin-controls { display: none; }

/* ====== MODAIS ====== */
.modal-custom {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-custom[style*="flex"] { display: flex!important; }
.modal-content-custom {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 24px;
    width: 100%; max-width: 420px; max-height: 90dvh; overflow-y: auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.modal-content-custom h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text); display: flex; align-items: center; justify-content: center; gap: 8px; }

#modal-foto {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.95); z-index: 30000;
    justify-content: center; align-items: center;
}
#img-view { max-width: 100%; max-height: 80vh; border-radius: var(--radius-sm); }
.btn-fechar-modal {
    position: absolute; top: 20px; right: 20px;
    background: rgba(255,255,255,0.15); color: white;
    border: none; padding: 10px 14px; border-radius: 50%; cursor: pointer; font-size: 1rem;
}
.btn-fechar-modal:hover { background: rgba(255,255,255,0.25); }

/* ====== LGPD ====== */
#lgpd-banner {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--card); padding: 20px; z-index: 30000;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2); border-top: 1px solid var(--border);
}

/* ====== INLINE BADGES ====== */
.whatsapp-badge {
    position: absolute; top: 40px; right: 10px;
    background: rgba(63,185,80,0.15); color: var(--green2);
    padding: 2px 6px; border-radius: 4px;
    font-size: 0.6rem; font-weight: 600;
    display: inline-flex; align-items: center; gap: 3px;
}
.observacao-badge {
    position: absolute; top: 12px; right: 140px;
    background: rgba(227,179,65,0.15); color: var(--yellow);
    padding: 2px 6px; border-radius: 4px;
    font-size: 0.6rem; font-weight: 600;
}

/* ====== NOTIFICAÇÕES ====== */
.badge-noti {
    position: absolute; top: -2px; right: -2px;
    background: var(--red); color: white;
    border-radius: 50%; width: 16px; height: 16px;
    font-size: 0.6rem; display: none;
    align-items: center; justify-content: center; font-weight: 600;
}

/* ====== EMPTY STATE ====== */
.empty-state { text-align: center; padding: 60px 24px; color: var(--text3); }
.empty-state i { font-size: 2.5rem; opacity: 0.25; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 1rem; font-weight: 700; color: var(--text2); margin-bottom: 8px; }
.empty-state p { font-size: 0.82rem; line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ====== TEXTAREA ====== */
textarea {
    width: 100%; border-radius: var(--radius-sm);
    padding: 10px 12px; border: 1px solid var(--border);
    box-sizing: border-box; font-family: var(--font);
    font-size: 14px; color: var(--text);
    background: var(--bg3); resize: vertical;
    -webkit-appearance: none; appearance: none;
}
textarea:focus { outline: none; border-color: var(--accent); }

/* ====== LOADING & ANIMATIONS ====== */
.loading-state { text-align: center; padding: 48px 20px; color: var(--text3); font-size: 0.85rem; }
.loading-state i { font-size: 1.5rem; margin-bottom: 12px; display: block; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ====== TOUCH DEVICES ====== */
@media (hover: none) and (pointer: coarse) {
    .btn, .tab-btn, button, .sidebar-link, .bnav-btn { min-height: 44px; }
    .card:hover { border-color: var(--border); }
    .btn:active { transform: scale(0.97); }
}

/* ====== MODAL NOTIFICAÇÕES ====== */
.modal-notificacoes {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
    display: none; justify-content: flex-end; align-items: flex-start;
    padding: 20px;
}
.modal-notificacoes.active { display: flex; }

/* ====== HIDE OLD ELEMENTS ====== */
.tabs { display: none!important; }
.hide-mobile-text { display: inline; }
@media (max-width: 768px) { .hide-mobile-text { display: none; } }

/* ====== SECTION TITLE ====== */
.section-title {
    padding: 14px 16px 6px;
    font-size: 0.68rem; font-weight: 700; color: var(--text3);
    text-transform: uppercase; letter-spacing: 1px;
}