:root {
    --app-font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --app-bg-start: #0f172a;
    --app-bg-end: #1e293b;
    --app-surface: #111827;
    --app-surface-strong: #0b1624;
    --app-surface-hover: rgba(148, 163, 184, 0.16);
    --app-border: rgba(148, 163, 184, 0.28);
    --app-border-strong: rgba(148, 163, 184, 0.5);
    --app-text: #f8fafc;
    --app-text-muted: #cbd5f5;
    --app-text-soft: #a5b4fc;
    --app-primary: #60a5fa;
    --app-primary-soft: rgba(96, 165, 250, 0.18);
    --app-primary-strong: #3b82f6;
    --app-success: #4ade80;
    --app-danger: #f87171;
    --app-warning: #fbbf24;
    --app-info: #38bdf8;
    --app-shadow-color: rgba(15, 23, 42, 0.3);
}

* {
    font-family: var(--app-font-family);
}

body {
    min-height: 100vh;
    margin: 0;
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 50%),
        linear-gradient(135deg, var(--app-bg-start), var(--app-bg-end));
    color: var(--app-text);
    position: relative;
}

.app-shell {
    padding-top: clamp(4rem, 3vw + 2.75rem, 6rem);
    padding-bottom: 3rem;
}

@media (max-width: 991.98px) {
    .app-shell {
        padding-top: 4.5rem;
        padding-bottom: 2.25rem;
    }
}

.app-gradient {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.16) 0%, transparent 48%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.75) 40%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}

.app-topbar {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 0.75rem 1.5rem;
}

.app-topbar .navbar-brand {
    color: #0f172a;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.app-topbar .brand-emblem {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 165, 233, 0.3));
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15), 0 16px 32px rgba(15, 23, 42, 0.08);
}

.app-topbar .brand-emblem.user-emblem {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(59, 130, 246, 0.4));
    color: #0f172a;
}

.brand-emblem--small {
    width: 38px;
    height: 38px;
}

.tiny {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.app-topbar .btn-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.9);
    color: #1f2937;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.app-topbar .btn-icon:hover,
.app-topbar .btn-icon:focus {
    color: #1d4ed8;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.app-quick-actions {
    align-items: center;
}

.app-quick-actions .btn-icon .material-symbols-rounded {
    font-size: 1.3rem;
}

.app-topbar .nav-link,
.app-topbar .navbar-nav .nav-link,
.app-topbar .dropdown-toggle {
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.app-topbar .nav-link:hover,
.app-topbar .nav-link:focus,
.app-topbar .navbar-nav .nav-link:hover,
.app-topbar .navbar-nav .nav-link:focus,
.app-topbar .dropdown-toggle:hover,
.app-topbar .dropdown-toggle:focus {
    color: #1d4ed8;
}

.app-topbar .dropdown-menu {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 26px 48px rgba(15, 23, 42, 0.16);
    padding: 0.75rem;
    min-width: 240px;
}

.app-topbar .dropdown-item {
    border-radius: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
}

.app-topbar .dropdown-item .material-symbols-rounded {
    font-size: 1.35rem;
    color: rgba(15, 23, 42, 0.65);
}

.app-topbar .dropdown-item:hover {
    background: rgba(59, 130, 246, 0.12);
}

.app-search {
    background: rgba(15, 23, 42, 0.04);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-search .material-symbols-rounded {
    color: rgba(15, 23, 42, 0.4);
}

.app-search .form-control {
    border: none;
    background: transparent;
    padding-left: 0;
    color: #0f172a;
}

.app-search .form-control::placeholder {
    color: rgba(15, 23, 42, 0.45);
}

.app-search .form-control:focus {
    box-shadow: none;
}

.app-search:focus-within {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.12);
}

.has-ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    opacity: 0.5;
    pointer-events: none;
    animation: ripple-fade 600ms ease-out;
    background: rgba(255, 255, 255, 0.4);
}

.ripple-effect--dark {
    background: rgba(255, 255, 255, 0.35);
}

.ripple-effect--light {
    background: rgba(59, 130, 246, 0.25);
}

@keyframes ripple-fade {
    to {
        transform: scale(2.75);
        opacity: 0;
    }
}

.app-sidebar {
    position: relative;
    z-index: 1020;
}

.app-drawer {
    background: rgba(15, 23, 42, 0.92);
    color: var(--app-text);
    border-right: none;
    border-radius: 28px;
    box-shadow: 0 40px 70px rgba(15, 23, 42, 0.45);
    overflow: hidden;
}

.app-drawer .btn-close {
    filter: invert(1);
    opacity: 0.65;
}

.app-drawer .offcanvas-body {
    padding: 1.75rem 1.5rem;
    overflow-y: auto;
}

.app-drawer__welcome {
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(14, 165, 233, 0.35));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.app-drawer__sections {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.app-drawer__section-title {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(203, 213, 225, 0.9);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.app-drawer__badge {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.15);
    color: var(--app-text);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.app-drawer .nav-link {
    border-radius: 14px;
    color: var(--app-text-muted);
    padding: 0.65rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.app-drawer .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.35), rgba(59, 130, 246, 0.25));
    transition: opacity 0.2s ease;
    z-index: 0;
}

.app-drawer .nav-link > * {
    position: relative;
    z-index: 1;
}

.app-drawer .nav-icon {
    font-size: 1.1rem;
    width: 1.75rem;
    text-align: center;
}

.app-drawer .nav-link:hover,
.app-drawer .nav-link:focus {
    color: var(--app-text);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.app-drawer .nav-link:hover::before,
.app-drawer .nav-link:focus::before {
    opacity: 1;
}

.app-drawer .nav-link.active {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(96, 165, 250, 0.7));
    color: var(--app-text);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.35);
}

.app-drawer .sidebar-heading {
    color: var(--app-text-soft) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.app-drawer .border-top {
    border-color: var(--app-border) !important;
}

@media (min-width: 992px) {
    .app-shell {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .app-sidebar {
        position: sticky;
        top: 5.5rem;
        height: calc(100vh - 5.5rem);
        border-radius: 22px;
        overflow: hidden;
        display: flex;
    }

    .app-drawer {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .app-drawer .offcanvas-body {
        max-height: 100%;
        flex: 1 1 auto;
        padding-right: 1rem;
        scrollbar-gutter: stable;
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .app-sidebar {
        position: static;
        height: auto;
        border-right: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .app-drawer {
        max-height: 100vh;
    }
}

main {
    color: var(--app-text);
}

.app-main {
    min-width: 0;
}

@media (min-width: 992px) {
    .app-main {
        min-height: calc(100vh - 5rem);
    }
}

.app-main__viewport {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 2vw + 1.35rem, 3.5rem);
    width: 100%;
}

.app-main__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 1.25vw + 1.25rem, 2.85rem);
    width: 100%;
}

.app-main__messages {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
    color: var(--app-text);
}

main a {
    color: var(--app-primary);
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

main a:hover,
main a:focus {
    color: var(--app-primary-strong);
    text-decoration: underline;
    text-decoration-color: rgba(96, 165, 250, 0.35);
}

main .card,
.app-panel {
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.85));
    border: 1px solid var(--app-border);
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(8, 16, 28, 0.45);
}

main .card .card-header,
.app-panel__header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.24);
    padding: clamp(1.25rem, 0.9vw + 1rem, 1.65rem);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
    border-radius: 24px 24px 0 0;
}

main .card .card-footer,
.app-panel__footer {
    border-top: 1px solid rgba(148, 163, 184, 0.24);
    padding: clamp(1.15rem, 0.75vw + 0.85rem, 1.5rem);
    background: rgba(15, 23, 42, 0.78);
    border-radius: 0 0 24px 24px;
}

main .card .card-body,
.app-panel__body {
    padding: clamp(1.35rem, 0.85vw + 1.1rem, 1.9rem);
}

main .card .card-title,
main .card .card-subtitle,
main .card .text-muted,
.app-panel__body .card-title,
.app-panel__body .card-subtitle,
.app-panel__body .text-muted {
    color: var(--app-text-muted) !important;
}

.app-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.app-panel__body {
    flex: 1 1 auto;
}

.app-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.18);
    color: #f8fafc;
    font-size: 1.35rem;
}

.app-avatar--sm {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.app-code-block {
    background: rgba(15, 23, 42, 0.88);
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    color: rgba(226, 232, 240, 0.92);
    font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 1rem 1.25rem;
    max-height: 320px;
    overflow: auto;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-resource {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-resource .app-panel__body {
    flex: 1 1 auto;
}

.app-resource__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--app-text-muted);
}

.app-resource__meta .material-symbols-rounded {
    font-size: 1.15rem;
    opacity: 0.8;
}

.app-empty--subtle {
    background: rgba(148, 163, 184, 0.06);
    border: 1px dashed rgba(148, 163, 184, 0.28);
    border-radius: 18px;
    padding: 1.35rem;
    color: var(--app-text-muted);
}

.app-workflow {
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.app-workflow:hover {
    border-color: rgba(96, 165, 250, 0.45);
    transform: translateY(-2px);
}

.app-workflow__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-workflow__step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 1.35rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.app-workflow__step-main {
    flex: 1 1 auto;
    min-width: 0;
}

.app-workflow__step-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.app-workflow__step-actions .btn {
    min-width: 0;
    padding-inline: 0.65rem;
}

.app-workflow__step-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-workflow__step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.9);
}

.app-workflow__step-badge .material-symbols-rounded {
    font-size: 1rem;
    opacity: 0.85;
}

.app-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.82);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 1.5rem;
    height: 100%;
}

.app-tip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.15);
    color: rgba(191, 219, 254, 0.9);
    font-size: 1.7rem;
}

.app-tip__content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.app-tip__title {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0;
}

.app-tip__text {
    margin: 0;
    color: var(--app-text-muted);
    font-size: 0.9rem;
}

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: clamp(1.5rem, 1.75vw + 1rem, 2.5rem);
    border-radius: 28px;
    border: 1px solid var(--app-border);
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.92), rgba(30, 41, 59, 0.85));
    box-shadow: 0 28px 52px rgba(8, 16, 28, 0.55);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: -20% 10% auto auto;
    width: clamp(160px, 18vw, 260px);
    aspect-ratio: 1 / 1;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.28), transparent 70%);
    opacity: 0.85;
    pointer-events: none;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(52px, 4vw + 32px, 68px);
    height: clamp(52px, 4vw + 32px, 68px);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(96, 165, 250, 0.22));
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.25), 0 16px 32px rgba(15, 23, 42, 0.35);
    color: var(--app-text);
}

.page-header__icon .material-symbols-rounded,
.page-header__icon i {
    font-size: clamp(1.5rem, 0.8vw + 1.2rem, 2rem);
}

.page-header__chips {
    margin-left: auto;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.app-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(148, 163, 184, 0.2);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--app-text-soft);
}

.app-chip--sm {
    padding: 0.25rem 0.6rem;
    gap: 0.3rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
}

.app-chip .material-symbols-rounded,
.app-chip i {
    font-size: 1rem;
}

.app-chip--primary {
    border-color: rgba(59, 130, 246, 0.45);
    background: rgba(59, 130, 246, 0.22);
    color: #dbeafe;
}

.app-chip--success {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.22);
    color: #bbf7d0;
}

.app-chip--info {
    border-color: rgba(14, 165, 233, 0.45);
    background: rgba(14, 165, 233, 0.22);
    color: #bae6fd;
}

.app-chip--warning {
    border-color: rgba(234, 179, 8, 0.45);
    background: rgba(234, 179, 8, 0.22);
    color: #fef08a;
}

.app-chip--danger {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.22);
    color: #fecaca;
}

.app-chip--muted,
.app-chip--neutral {
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(148, 163, 184, 0.16);
    color: var(--app-text-soft);
}

.app-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-feed__item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    padding: clamp(1.15rem, 0.8vw + 0.9rem, 1.75rem);
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.92), rgba(30, 41, 59, 0.82));
    box-shadow: 0 22px 42px rgba(8, 16, 28, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-feed__item:hover,
.app-feed__item:focus-within {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 28px 52px rgba(8, 16, 28, 0.55);
}

.app-feed__item--unread {
    border-color: rgba(96, 165, 250, 0.45);
    background: linear-gradient(160deg, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.85));
}

.app-feed__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 165, 250, 0.16);
    color: var(--app-primary);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.35);
}

.app-feed__icon--success {
    background: rgba(74, 222, 128, 0.16);
    color: var(--app-success);
    box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.35);
}

.app-feed__icon--warning {
    background: rgba(251, 191, 36, 0.16);
    color: var(--app-warning);
    box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.35);
}

.app-feed__icon--info {
    background: rgba(56, 189, 248, 0.16);
    color: var(--app-info);
    box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.35);
}

.app-feed__icon--danger {
    background: rgba(248, 113, 113, 0.16);
    color: var(--app-danger);
    box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.35);
}

.app-feed__icon--neutral {
    background: rgba(148, 163, 184, 0.16);
    color: rgba(226, 232, 240, 0.85);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.app-feed__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.app-feed__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--app-text);
    margin-bottom: 0.1rem;
}

.app-feed__excerpt {
    color: var(--app-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.app-feed__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.85rem;
}

.app-feed__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.app-feed__actions .btn {
    width: max-content;
}

.app-empty {
    padding: clamp(1.75rem, 1vw + 1.35rem, 2.35rem);
    border-radius: 22px;
    border: 1px dashed rgba(148, 163, 184, 0.35);
    background: linear-gradient(155deg, rgba(17, 24, 39, 0.6), rgba(30, 41, 59, 0.6));
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--app-text-muted);
}

.app-empty .material-symbols-rounded {
    font-size: 2.5rem;
    opacity: 0.75;
}

.app-accordion.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(148, 163, 184, 0.24);
    --bs-accordion-border-radius: 20px;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-accordion .accordion-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: linear-gradient(150deg, rgba(17, 24, 39, 0.92), rgba(30, 41, 59, 0.82));
    box-shadow: 0 24px 46px rgba(8, 16, 28, 0.45);
}

.app-accordion .accordion-button {
    color: var(--app-text);
    font-weight: 600;
    padding: clamp(1.15rem, 0.75vw + 1rem, 1.65rem);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.88));
}

.app-accordion .accordion-button:not(.collapsed) {
    color: var(--app-primary);
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.38), rgba(30, 41, 59, 0.82));
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.35);
}

.app-accordion .accordion-button::after {
    filter: invert(0.85);
}

.app-accordion .accordion-body {
    padding: clamp(1.35rem, 0.85vw + 1.1rem, 1.9rem);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    color: var(--app-text-muted);
}

.app-accordion h5 {
    color: var(--app-text);
    font-weight: 600;
}

.app-accordion ol,
.app-accordion ul {
    margin-bottom: 0;
    padding-left: 1.35rem;
}

.app-accordion li + li {
    margin-top: 0.35rem;
}

.app-search-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-search-inline .form-control {
    min-width: min(320px, 100%);
}

.app-search-surface {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.75);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-search-surface .material-symbols-rounded {
    color: rgba(226, 232, 240, 0.65);
}

.app-search-surface .form-control {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--app-text);
    min-width: 240px;
}

.app-search-surface .form-control:focus {
    box-shadow: none;
}

.app-search-surface .form-control::placeholder {
    color: rgba(226, 232, 240, 0.55);
}

.app-search-surface:focus-within {
    border-color: rgba(96, 165, 250, 0.45);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.45);
}

.faq-item {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(150deg, rgba(17, 24, 39, 0.92), rgba(30, 41, 59, 0.82));
    padding: clamp(1.25rem, 0.9vw + 1rem, 1.85rem);
    box-shadow: 0 24px 45px rgba(8, 16, 28, 0.48);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover,
.faq-item:focus-within {
    transform: translateY(-2px);
    border-color: rgba(96, 165, 250, 0.42);
    box-shadow: 0 30px 55px rgba(8, 16, 28, 0.58);
}

.faq-item__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--app-text);
    margin-bottom: 0.65rem;
}

.faq-item__content ol,
.faq-item__content ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
    color: var(--app-text-muted);
}

.faq-item__content li + li {
    margin-top: 0.35rem;
}

.faq-item__content ul {
    list-style: disc;
}

.faq-item__content ol ul {
    margin-top: 0.35rem;
}

.app-form-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .app-form-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-form-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.page-header h1,
.page-header .h1,
.page-header h2,
.page-header .h2 {
    font-size: clamp(2rem, 3vw + 1rem, 2.85rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--app-text);
}

.page-header p,
.page-header .lead,
.page-header .text-muted {
    margin-bottom: 0;
    color: var(--app-text-muted) !important;
    max-width: 42rem;
}

.page-header .btn,
.page-header .btn-group > .btn {
    border-radius: 16px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.25);
}

.page-header .btn i,
.page-header .btn .material-symbols-rounded,
.page-header .btn .bi {
    font-size: 1.15rem;
}

.page-header .btn-toolbar,
.page-header .btn-group,
.page-header__actions {
    display: inline-flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
}

.page-header .btn-toolbar .btn {
    margin: 0;
}

.page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--app-text-soft);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-header__eyebrow .material-symbols-rounded {
    font-size: 1rem;
}

.page-header__title {
    font-size: clamp(2.2rem, 4vw + 1rem, 3rem);
    margin-bottom: 0.75rem;
}

.page-header__subtitle {
    margin-bottom: 0;
    max-width: 40rem;
    color: var(--app-text-muted);
}

.page-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn-light-outline {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(248, 250, 252, 0.85);
    color: #1f2937;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
    transition: all 0.2s ease;
}

.btn-light-outline .material-symbols-rounded {
    font-size: 1.2rem;
}

.btn-light-outline:hover,
.btn-light-outline:focus {
    background: rgba(248, 250, 252, 1);
    border-color: rgba(37, 99, 235, 0.35);
    color: #1d4ed8;
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.22);
}

.app-section {
    position: relative;
    border-radius: 28px;
    border: 1px solid var(--app-border);
    padding: clamp(1.75rem, 2vw + 1.25rem, 2.75rem);
    background: rgba(15, 23, 42, 0.82);
    box-shadow: 0 28px 48px rgba(8, 16, 28, 0.48);
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 1vw + 0.9rem, 2rem);
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.app-section > * {
    position: relative;
    z-index: 1;
}

.app-section--surface {
    background: linear-gradient(150deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.82));
}

.app-section--muted {
    background: rgba(15, 23, 42, 0.72);
    border-color: rgba(148, 163, 184, 0.28);
    box-shadow: 0 24px 42px rgba(8, 16, 28, 0.38);
}

.app-section--translucent {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    border-color: rgba(148, 163, 184, 0.2);
}

.app-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.app-section__title {
    margin: 0;
    font-size: clamp(1.35rem, 1.4vw + 1rem, 1.85rem);
    font-weight: 600;
    color: var(--app-text);
}

.app-section__subtitle {
    margin: 0;
    color: var(--app-text-muted);
    max-width: 48rem;
}

.app-section__body {
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 0.85vw + 0.85rem, 1.8rem);
}

.app-toolbar {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
}

.app-toolbar--compact {
    gap: 0.5rem;
}

.app-toolbar .btn,
.app-toolbar .btn-group {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.app-toolbar .btn .material-symbols-rounded,
.app-toolbar .btn i,
.app-toolbar .btn span.material-symbols-rounded {
    font-size: 1.1rem;
}

.app-form-grid {
    display: grid;
    gap: clamp(1rem, 1vw + 0.75rem, 1.5rem);
}

.assinatura-wrapper {
    background: rgba(15, 23, 42, 0.65);
    border: 1px dashed rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    padding: clamp(1rem, 0.8vw + 0.85rem, 1.5rem);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.4);
}

.assinatura-wrapper canvas {
    display: block;
    width: 100%;
    height: 200px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

@media (min-width: 768px) {
    .app-form-grid.row {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.app-form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 576px) {
    .app-form-actions {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

.metric-card {
    position: relative;
    border-radius: 26px;
    padding: 1.65rem;
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.94), rgba(30, 41, 59, 0.86));
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: 0 28px 48px rgba(8, 16, 28, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(96, 165, 250, 0.2), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.metric-card > * {
    position: relative;
    z-index: 1;
}

.metric-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
    color: var(--app-text);
}

.metric-card__label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--app-text-soft);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.metric-card__value {
    font-size: clamp(2.4rem, 3vw + 1.2rem, 3rem);
    font-weight: 600;
    color: var(--app-text);
}

.metric-card__delta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    padding: 0.4rem 0.85rem;
    background: rgba(148, 163, 184, 0.18);
    color: var(--app-text);
    width: fit-content;
}

.metric-card__delta .material-symbols-rounded {
    font-size: 1.1rem;
}

.metric-card__delta-caption {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--app-text-soft);
}

.metric-card__delta--up {
    background: rgba(34, 197, 94, 0.2);
    color: #bbf7d0;
}

.metric-card__delta--down {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.metric-card__delta--steady {
    background: rgba(148, 163, 184, 0.24);
    color: var(--app-text-muted);
}

.metric-card--primary .metric-card__icon {
    background: rgba(59, 130, 246, 0.2);
    color: var(--app-text);
}

.metric-card--success .metric-card__icon {
    background: rgba(34, 197, 94, 0.2);
    color: #bbf7d0;
}

.metric-card--info .metric-card__icon {
    background: rgba(14, 165, 233, 0.2);
    color: #bae6fd;
}

.metric-card--warning .metric-card__icon {
    background: rgba(250, 204, 21, 0.2);
    color: #fde68a;
}

.metric-card--danger .metric-card__icon {
    background: rgba(239, 68, 68, 0.24);
    color: #fecaca;
}

.metric-card--muted .metric-card__icon {
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.search-panel {
    background: rgba(15, 23, 42, 0.78);
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: clamp(1.75rem, 2vw + 1.25rem, 2.5rem);
    box-shadow: 0 28px 48px rgba(8, 16, 28, 0.45);
}

.search-panel__title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.search-panel__title .material-symbols-rounded {
    font-size: 1.4rem;
}

.search-result-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.18);
}

.search-result-card dl {
    margin-bottom: 0;
    row-gap: 0.35rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.28);
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 20px 40px rgba(8, 16, 28, 0.45);
}

.insight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.insight-card > * {
    position: relative;
    z-index: 1;
}

.insight-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: rgba(148, 163, 184, 0.2);
    color: var(--app-text);
}

.insight-card__title {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--app-text-soft);
    font-weight: 600;
}

.insight-card__value {
    font-size: clamp(1.85rem, 2vw + 1.1rem, 2.4rem);
    font-weight: 600;
    color: var(--app-text);
}

.insight-card__footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--app-text-muted);
}

.insight-card__footer .material-symbols-rounded {
    font-size: 1rem;
}

.insight-card--success::after {
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 60%);
}

.insight-card--warning::after {
    background: radial-gradient(circle at top left, rgba(234, 179, 8, 0.22), transparent 60%);
}

.insight-card--accent::after {
    background: radial-gradient(circle at top left, rgba(96, 165, 250, 0.28), transparent 60%);
}

.section-card {
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 26px 48px rgba(8, 16, 28, 0.48);
}

.section-card__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.section-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.25);
    font-size: 0.85rem;
    color: var(--app-text-muted);
}

.section-card__meta .material-symbols-rounded {
    font-size: 1.1rem;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(148, 163, 184, 0.18);
    color: var(--app-text);
}

.status-chip .material-symbols-rounded {
    font-size: 1.1rem;
}

.status-chip--primary {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
}

.status-chip--success {
    background: rgba(34, 197, 94, 0.2);
    color: #bbf7d0;
}

.status-chip--info {
    background: rgba(14, 165, 233, 0.2);
    color: #bae6fd;
}

.status-chip--warning {
    background: rgba(234, 179, 8, 0.22);
    color: #fef3c7;
}

.status-chip--danger {
    background: rgba(239, 68, 68, 0.24);
    color: #fecaca;
}

.status-chip--secondary {
    background: rgba(148, 163, 184, 0.2);
    color: var(--app-text-muted);
}

.table > :not(caption) > .table-danger > * {
    background: rgba(239, 68, 68, 0.16) !important;
    color: #fee2e2 !important;
}

.table.table-hover > tbody > tr.table-danger:hover > * {
    background: rgba(239, 68, 68, 0.22) !important;
}

.table-ultimas-reparacoes thead th,
.table-ultimas-reparacoes tbody td,
.table-ultimas-reparacoes tbody th {
    color: #fff;
}

.page-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 1.75rem;
    background: linear-gradient(155deg, rgba(11, 22, 36, 0.95), rgba(17, 24, 39, 0.9));
    border-radius: 28px;
    border: 1px solid var(--app-border);
    padding: clamp(1.75rem, 2vw + 1.25rem, 3rem);
    box-shadow: 0 30px 60px rgba(8, 16, 28, 0.55);
}

.page-hero__content {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.page-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--app-text-soft);
}

.page-hero__title {
    font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
    margin: 0;
}

.page-hero__description {
    margin: 0;
    color: var(--app-text-muted);
    max-width: 40rem;
}

.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.page-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 160px;
    padding: 0.85rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.75);
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.12);
}

.page-hero__meta-label {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--app-text-soft);
    font-weight: 600;
}

.page-hero__meta-value {
    font-size: clamp(1.6rem, 1.5vw + 1.1rem, 2.35rem);
    font-weight: 600;
    color: var(--app-text);
}

.page-hero__actions {
    flex: 1 1 240px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.page-hero__actions .btn {
    border-radius: 16px;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.page-hero__actions .btn i {
    font-size: 1.1rem;
}

.page-hero__highlight {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.78);
    border-radius: 20px;
    border: 1px solid var(--app-border);
    padding: 1.25rem 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18);
}

.page-hero__highlight-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--app-text-soft);
    font-weight: 600;
}

.page-hero__highlight-time,
.page-hero__highlight-status,
.page-hero__highlight-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--app-text);
}

.page-hero__highlight-status i {
    font-size: 0.6rem;
}

.page-hero__highlight-description {
    margin: 0;
    color: var(--app-text-soft);
    font-style: italic;
}

.page-hero__highlight-empty {
    color: var(--app-text-soft);
    font-weight: 500;
}

.page-hero__highlight--empty {
    justify-content: center;
    text-align: center;
}

@media (max-width: 991.98px) {
    .page-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .page-hero__actions {
        width: 100%;
    }

    .page-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.schedule-insights .schedule-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid var(--app-border);
    border-radius: 22px;
    padding: 1.1rem 1.25rem;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.schedule-insights .schedule-stat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--stat-color, rgba(37, 99, 235, 0.4)) 0%, transparent 65%);
    opacity: 0.22;
    pointer-events: none;
}

.schedule-stat__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--app-text-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.schedule-stat__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--stat-color, var(--app-primary));
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.schedule-stat__value {
    font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
    font-weight: 600;
    color: var(--app-text);
}

.schedule-filters .card-body {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.05));
    border-radius: inherit;
}

.schedule-filters__heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.schedule-filters__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.schedule-filters__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid var(--app-border);
    font-size: 0.85rem;
    color: var(--app-text);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.1);
}

.schedule-filters__chip i {
    color: rgba(148, 163, 184, 0.9);
}

.schedule-filters__hint {
    max-width: 36rem;
}

.schedule-filters .form-control,
.schedule-filters .form-select {
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid var(--app-border);
    border-radius: 16px;
    color: var(--app-text);
    padding: 0.75rem 1rem;
}

.schedule-filters .form-control:focus,
.schedule-filters .form-select:focus {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.schedule-filters .btn-outline-light {
    border-radius: 16px;
    border-color: rgba(148, 163, 184, 0.4);
    color: var(--app-text);
    background: rgba(248, 250, 252, 0.85);
    font-weight: 600;
}

.schedule-filters .btn-outline-light:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
    color: var(--app-text);
}

.schedule-calendar .card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid var(--app-border);
}

.schedule-calendar__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.schedule-calendar__body {
    padding: 1.5rem;
}

.schedule-calendar__grid {
    min-height: 680px;
}

@media (max-width: 991.98px) {
    .schedule-calendar__grid {
        min-height: 520px;
    }
}

.schedule-calendar .fc {
    font-family: var(--app-font-family);
}

.schedule-calendar .fc-toolbar-chunk {
    display: flex;
    gap: 0.5rem;
}

.schedule-calendar .fc-toolbar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--app-text);
}

.schedule-calendar .fc-button-primary {
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(37, 99, 235, 0.45);
    color: var(--app-text);
    border-radius: 12px;
    text-transform: none;
    font-weight: 500;
}

.schedule-calendar .fc-button-primary:not(:disabled).fc-button-active,
.schedule-calendar .fc-button-primary:not(:disabled):active {
    background: var(--app-primary);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.schedule-calendar .fc-button-primary:disabled {
    background: rgba(248, 250, 252, 0.8);
    border-color: rgba(148, 163, 184, 0.2);
    color: var(--app-text-soft);
    opacity: 1;
}

.schedule-calendar .fc-theme-standard .fc-scrollgrid {
    border: 1px solid var(--app-border);
    background: rgba(248, 250, 252, 0.95);
}

.schedule-calendar .fc-theme-standard td,
.schedule-calendar .fc-theme-standard th {
    border-color: var(--app-border);
}

.schedule-calendar .fc-col-header-cell-cushion {
    color: var(--app-text);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.schedule-calendar .fc-timegrid-slot,
.schedule-calendar .fc-timegrid-divider,
.schedule-calendar .fc-timegrid-axis {
    border-color: rgba(148, 163, 184, 0.16);
}

.schedule-calendar .fc-timegrid-slot-label-cushion {
    color: var(--app-text-soft);
    font-size: 0.85rem;
}

.schedule-calendar .fc-day-today {
    background: rgba(37, 99, 235, 0.12);
}

.schedule-calendar .fc-daygrid-event,
.schedule-calendar .fc-timegrid-event {
    border-radius: 14px;
    border: none;
    padding: 0.45rem 0.65rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
    font-weight: 500;
}

.schedule-calendar .fc-event-title {
    font-weight: 600;
}

.schedule-calendar .fc-list-empty {
    background: rgba(248, 250, 252, 0.9);
    color: var(--app-text-soft);
    border: 1px dashed var(--app-border);
    border-radius: 16px;
}

.analytics-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analytics-header .headline {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--app-text-soft);
    font-weight: 600;
}

.analytics-header h1 {
    font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
    margin-bottom: 0.25rem;
}

.analytics-header p {
    margin-bottom: 0;
    color: var(--app-text-soft);
    max-width: 38rem;
}

.analytics-period {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid var(--app-border);
    color: var(--app-text);
    font-weight: 500;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.analytics-period .badge-soft {
    margin-right: 0.2rem;
}

.analytics-card {
    background: var(--app-surface-strong);
}

.analytics-card .card-header {
    background: transparent;
    border-bottom: 1px solid var(--app-border);
    padding: 1.5rem 1.5rem 1rem;
}

.analytics-card .card-header h2,
.analytics-card .card-header h3,
.analytics-card .card-header h5,
.analytics-card .card-header h6 {
    margin-bottom: 0.35rem;
}

.analytics-card .card-subtitle {
    color: var(--app-text-soft);
    font-size: 0.9rem;
}

.analytics-card .card-body {
    padding: 1.5rem;
}

.analytics-stat {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(191, 219, 254, 0.4));
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 26px;
    padding: 1.75rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.analytics-stat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.22), transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.analytics-stat__icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    background: rgba(37, 99, 235, 0.12);
    color: var(--app-primary);
    margin-bottom: 1rem;
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.18);
    position: relative;
    z-index: 1;
}

.analytics-stat__value {
    font-size: clamp(2.1rem, 3vw + 1rem, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.analytics-stat__meta {
    color: var(--app-text-soft);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.analytics-stat__footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.15rem;
    font-size: 0.85rem;
    color: var(--app-text-muted);
    position: relative;
    z-index: 1;
}

.analytics-stat__footer i {
    font-size: 1rem;
    color: rgba(96, 165, 250, 0.85);
}

.analytics-empty {
    border: 1px dashed rgba(148, 163, 184, 0.35);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    color: var(--app-text-soft);
    background: rgba(248, 250, 252, 0.9);
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--app-border);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--app-text-soft);
}

.badge-soft.badge-soft-primary {
    border-color: rgba(37, 99, 235, 0.35);
    color: #dbeafe;
    background: rgba(37, 99, 235, 0.18);
}

.badge-soft.badge-soft-success {
    border-color: rgba(34, 197, 94, 0.35);
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.18);
}

.badge-soft.badge-soft-warning {
    border-color: rgba(234, 179, 8, 0.35);
    color: #fef08a;
    background: rgba(234, 179, 8, 0.18);
}

.badge-soft.badge-soft-danger {
    border-color: rgba(239, 68, 68, 0.35);
    color: #fecdd3;
    background: rgba(239, 68, 68, 0.18);
}

.performance-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.performance-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(76, 29, 149, 0.55));
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
}

.performance-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.32), transparent 60%);
    pointer-events: none;
}

.performance-card__icon {
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: rgba(168, 85, 247, 0.2);
    color: #ede9fe;
    box-shadow: 0 18px 36px rgba(168, 85, 247, 0.35);
    position: relative;
    z-index: 1;
}

.performance-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.performance-card__metric {
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.performance-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--app-text-muted);
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}

.performance-meta i {
    color: rgba(168, 85, 247, 0.8);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.performance-detail {
    background: var(--app-surface-strong);
    border-radius: 24px;
    border: 1px solid var(--app-border);
    padding: 1.75rem;
}

.progress {
    background: rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    height: 0.65rem;
}

.progress .progress-bar {
    background: linear-gradient(135deg, var(--app-primary), var(--app-primary-strong));
    border-radius: inherit;
}

.progress.success .progress-bar {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(16, 185, 129, 0.7));
}

.progress.warning .progress-bar {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.85), rgba(250, 204, 21, 0.7));
}

.progress.danger .progress-bar {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.85), rgba(248, 113, 113, 0.7));
}

main .card .card-title,
main .card .card-subtitle {
    color: var(--app-text);
}

main .card .text-muted {
    color: var(--app-text-soft) !important;
}

main .badge {
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-weight: 500;
}

main .table {
    color: var(--app-text);
    border-color: var(--app-border);
    background: var(--app-surface);
    border-radius: 18px;
    overflow: hidden;
}

main .table > :not(caption) > * > * {
    background: transparent;
    box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.12);
    border-color: transparent;
}

main .table thead th {
    color: var(--app-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    background: rgba(37, 99, 235, 0.12);
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background: rgba(226, 232, 240, 0.5) !important;
}

.table-hover > tbody > tr:hover {
    background: rgba(37, 99, 235, 0.18) !important;
    transition: background 0.2s ease;
}

.form-control,
.form-select,
.form-check-input,
.input-group-text,
textarea,
select {
    background: #ffffff;
    border: 1px solid var(--app-border);
    color: #0f172a;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


.form-control[type="date"],
input[type="date"].form-control {
    background: #ffffff;
    color: #0f172a;
}

.form-control[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"].form-control::-webkit-calendar-picker-indicator {
    filter: none;
}

.app-section--surface .form-select {
    background: #ffffff;
    color: #0f172a !important;
}

.form-select option {
    color: #000000;
    background-color: #ffffff;
}

.form-select option:checked,
.form-select option[selected],
.form-select option:hover {
    color: #000000;
    background-color: #d1d5db;
}

.equipamentos-filtro .form-select.filter-select--empty {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
}

.equipamentos-filtro .form-select.filter-select--empty:focus {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.65) !important;
}

.equipamentos-filtro .form-select.filter-select--filled {
    background-color: rgba(148, 163, 184, 0.35) !important;
    color: var(--app-text) !important;
    border-color: rgba(148, 163, 184, 0.6) !important;
}

.equipamentos-filtro .form-select.filter-select--filled:focus {
    background-color: rgba(148, 163, 184, 0.35) !important;
    color: var(--app-text) !important;
}

.equipamentos-filtro .app-form-actions {
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .equipamentos-filtro .app-form-actions {
        flex-direction: row;
        justify-content: flex-end;
        align-items: stretch;
    }
}

.equipamentos-filtro .app-form-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    min-width: 0;
    width: 100%;
    padding-block: 0.75rem;
}

@media (min-width: 768px) {
    .equipamentos-filtro .app-form-actions .btn {
        flex: 1 1 auto;
        width: auto;
    }
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
    background: #ffffff;
    color: #0f172a;
}

.form-control[type="date"]:focus,
input[type="date"].form-control:focus {
    background: #ffffff;
    color: #0f172a;
}

.form-control::placeholder {
    color: rgba(15, 23, 42, 0.5);
}

.form-check-input:checked {
    background-color: var(--app-primary);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

label,
.form-label {
    color: var(--app-text);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.form-text {
    color: var(--app-text-soft);
}

.form-check-label {
    color: var(--app-text-muted);
}

.input-group-text {
    background: rgba(15, 23, 42, 0.78);
    color: var(--app-text);
    border-radius: 16px;
    border: 1px solid var(--app-border);
}

.btn-primary {
    background: linear-gradient(135deg, var(--app-primary), var(--app-primary-strong));
    border: none;
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
    border-radius: 14px;
    padding: 0.7rem 1.25rem;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--app-primary-strong), #1e40af);
}

.btn-secondary,
.btn-dark {
    background: rgba(148, 163, 184, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--app-text);
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-dark:hover,
.btn-dark:focus {
    background: rgba(148, 163, 184, 0.3);
    color: var(--app-text);
}

.btn-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(16, 185, 129, 0.65));
    border: none;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(16, 185, 129, 0.32);
}

.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.95), rgba(5, 150, 105, 0.78));
}

.btn-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(248, 113, 113, 0.72));
    border: none;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(248, 113, 113, 0.32);
}

.btn-danger:hover,
.btn-danger:focus {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95), rgba(248, 113, 113, 0.8));
}

.btn-warning {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.92), rgba(250, 204, 21, 0.75));
    border: none;
    border-radius: 14px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 16px 32px rgba(234, 179, 8, 0.3);
}

.btn-warning:hover,
.btn-warning:focus {
    background: linear-gradient(135deg, rgba(202, 138, 4, 0.95), rgba(250, 204, 21, 0.82));
    color: #1f2937;
}

.btn-info {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.9), rgba(14, 165, 233, 0.7));
    border: none;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(14, 165, 233, 0.32);
}

.btn-info:hover,
.btn-info:focus {
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.95), rgba(14, 165, 233, 0.82));
}

.btn-outline-light,
.btn-outline-secondary {
    color: var(--app-text);
    border-color: var(--app-border-strong);
    border-radius: 14px;
}

.btn-outline-primary {
    color: var(--app-text);
    border-radius: 14px;
    border: 1px solid rgba(96, 165, 250, 0.5);
    background: rgba(59, 130, 246, 0.18);
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    color: #fff;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95), rgba(96, 165, 250, 0.75));
    border-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-secondary:hover {
    background: rgba(148, 163, 184, 0.14);
    color: var(--app-text);
}

.alert {
    border: 1px solid var(--app-border);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.95);
    color: var(--app-text);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
}

.alert.alert-success {
    border-color: rgba(34, 197, 94, 0.35);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(190, 242, 100, 0.45));
}

.alert.alert-danger,
.alert.alert-error {
    border-color: rgba(239, 68, 68, 0.35);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(254, 202, 202, 0.45));
}

.alert.alert-warning {
    border-color: rgba(234, 179, 8, 0.35);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.12), rgba(254, 240, 138, 0.45));
}

.alert.alert-info {
    border-color: rgba(56, 189, 248, 0.35);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(191, 219, 254, 0.45));
}

.app-alert {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
}

.app-alert__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.18);
    color: var(--app-text);
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.28);
}

.app-alert__icon .material-symbols-rounded,
.app-alert__icon i {
    font-size: 1.35rem;
}

.app-alert__icon--success {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
}

.app-alert__icon--warning {
    background: rgba(234, 179, 8, 0.2);
    color: #fef3c7;
}

.app-alert__icon--danger,
.app-alert__icon--error {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.app-alert__icon--info {
    background: rgba(14, 165, 233, 0.18);
    color: #bae6fd;
}

.app-alert__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--app-text);
    margin-bottom: 0.25rem;
    display: block;
}

.app-alert__message {
    color: var(--app-text);
    font-size: 0.92rem;
}

@media (max-width: 575.98px) {
    .app-alert {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .app-alert__icon {
        width: 42px;
        height: 42px;
    }
}

.badge.bg-primary,
.badge.bg-success,
.badge.bg-danger,
.badge.bg-warning,
.badge.bg-info,
.badge.bg-secondary {
    border: none;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.app-body .card.bg-primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85), rgba(59, 130, 246, 0.65)) !important;
    border: none;
    color: #eef2ff;
}

.app-body .card.bg-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(16, 185, 129, 0.6)) !important;
    border: none;
    color: #ecfdf5;
}

.app-body .card.bg-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.85), rgba(248, 113, 113, 0.6)) !important;
    border: none;
    color: #fee2e2;
}

.app-body .card.bg-warning {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.85), rgba(250, 204, 21, 0.6)) !important;
    border: none;
    color: #fefce8;
}

.app-body .card.bg-info {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.85), rgba(14, 165, 233, 0.6)) !important;
    border: none;
    color: #e0f2fe;
}

.dropdown-menu {
    color: var(--app-text);
}

.dropdown-item {
    color: var(--app-text);
}

.dropdown-item.text-danger {
    color: #fca5a5 !important;
}

.dropdown-item.text-danger:hover {
    background: rgba(239, 68, 68, 0.18);
}

.nav-tabs {
    border-bottom: 1px solid var(--app-border);
    gap: 0.5rem;
}

.nav-tabs .nav-link {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid transparent;
    border-radius: 14px 14px 0 0;
    color: var(--app-text-muted);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    color: var(--app-text);
    border-color: rgba(96, 165, 250, 0.28);
    background: rgba(37, 99, 235, 0.18);
}

.nav-tabs .nav-link.active {
    color: var(--app-text);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.75), rgba(96, 165, 250, 0.6));
    border-color: transparent;
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.25);
}

.nav-pills .nav-link {
    border-radius: 999px;
    font-weight: 600;
    color: var(--app-text-muted);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid transparent;
    padding: 0.65rem 1.2rem;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus {
    color: var(--app-text);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(96, 165, 250, 0.65));
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.breadcrumb,
.pagination {
    background: rgba(248, 250, 252, 0.9);
    border-radius: 999px;
    border: 1px solid var(--app-border);
    padding: 0.35rem 0.75rem;
}

.pagination .page-link {
    background: transparent;
    border: none;
    color: var(--app-text);
    border-radius: 12px;
}

.pagination .page-link:hover {
    background: rgba(37, 99, 235, 0.18);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.65));
    border: none;
}

.table-responsive {
    background: rgba(248, 250, 252, 0.95);
    border-radius: 22px;
    border: 1px solid var(--app-border);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    padding: 1rem;
}

.table-responsive.app-table {
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 24px 42px rgba(8, 16, 28, 0.45);
    padding: clamp(1rem, 0.8vw + 0.75rem, 1.35rem);
}

.table-responsive.app-table table {
    margin-bottom: 0;
    color: var(--app-text);
}

.table-responsive.app-table table th,
.table-responsive.app-table table td {
    color: var(--app-text) !important;
}

.table-responsive.app-table table thead th {
    color: var(--app-text) !important;
}

.table.dataTable thead th,
.table.dataTable thead td,
.table.dataTable tbody th,
.table.dataTable tbody td,
.table.dataTable > :not(caption) > * > * {
    color: var(--app-text) !important;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
    color: var(--app-text) !important;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    color: var(--app-text) !important;
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    border-radius: 0.75rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--app-text) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #fff !important;
    background: var(--app-primary) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: #fff !important;
    background: rgba(37, 99, 235, 0.35) !important;
    border-color: transparent !important;
}

.dataTables_wrapper .dataTables_filter input::placeholder,
.dataTables_wrapper .dataTables_length select option {
    color: var(--app-text-soft);
}

.app-body .bg-light,
.app-body .bg-white {
    background: #ffffff !important;
    color: var(--app-text);
    border: 1px solid var(--app-border);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.app-body .text-dark {
    color: var(--app-text) !important;
}

.accordion-item,
.list-group-item,
.modal-content {
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    color: var(--app-text);
}

.modal-header,
.modal-footer {
    border-color: var(--app-border);
}



.btn-close:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
}

.text-muted {
    color: var(--app-text-soft) !important;
}

hr {
    border-color: var(--app-border);
}

footer,
.footer {
    color: var(--app-text-muted);
}

.auth-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.auth-shell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
}

.auth-card {
    background: rgba(17, 24, 39, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 28px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 32px 72px rgba(8, 47, 73, 0.35);
    overflow: hidden;
    backdrop-filter: blur(22px);
}

.auth-card__header {
    padding: 2.25rem 2.5rem 1.75rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15), rgba(59, 130, 246, 0.1));
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.auth-brand {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    font-weight: 600;
    font-size: 1.65rem;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.85), rgba(59, 130, 246, 0.9));
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.35);
}

.auth-title {
    font-weight: 600;
    font-size: clamp(1.55rem, 1.2rem + 0.8vw, 1.9rem);
    margin-bottom: 0.45rem;
    color: var(--app-text);
}

.auth-subtitle {
    color: rgba(226, 232, 240, 0.75);
    margin: 0 auto;
    max-width: 20rem;
}

.auth-card__body {
    padding: 2.25rem 2.5rem 2.5rem;
    background: rgba(15, 23, 42, 0.65);
}

.auth-form .form-label {
    color: var(--app-text);
    font-weight: 500;
}

.auth-form .form-control {
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: var(--app-text);
    border-radius: 16px;
    padding: 0.9rem 1rem;
}

.auth-form .form-control:focus {
    border-color: rgba(96, 165, 250, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.18);
}

.auth-alert {
    border-radius: 16px;
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.14);
    color: #fecaca;
    padding: 0.85rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.auth-extra {
    margin-top: 2rem;
    text-align: center;
    color: rgba(226, 232, 240, 0.75);
    font-size: 0.9rem;
}

.auth-extra a {
    color: var(--app-primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-extra a:hover {
    color: var(--app-primary-strong);
}

.auth-button {
    border-radius: 16px;
    border: none;
    padding: 0.9rem 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(59, 130, 246, 0.95));
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-button:hover,
.auth-button:focus {
    transform: translateY(-1px);
    box-shadow: 0 20px 38px rgba(37, 99, 235, 0.35);
}

.auth-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.7);
}

.auth-meta .material-symbols-rounded {
    font-size: 1.2rem;
}

.portal-app {
    min-height: 100vh;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.25rem, 3vw, 2.5rem);
    position: relative;
}

.portal-shell {
    background: rgba(17, 24, 39, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    max-width: 1140px;
    margin: 0 auto;
    padding: clamp(2rem, 2.75rem, 3rem);
    box-shadow: 0 40px 80px rgba(8, 47, 73, 0.35);
    backdrop-filter: blur(24px);
}

.portal-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portal-header {
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding-bottom: 2.25rem;
    margin-bottom: 2.5rem;
}

.portal-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.92), rgba(168, 85, 247, 0.92));
    box-shadow: 0 20px 44px rgba(96, 165, 250, 0.35);
}

.portal-kicker {
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.75rem;
    color: rgba(148, 163, 184, 0.72);
}

.portal-title {
    font-size: clamp(1.75rem, 1.3rem + 1vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.portal-subtitle {
    color: rgba(226, 232, 240, 0.72);
    max-width: 36rem;
}

.portal-session {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 0.9rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.portal-session span {
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.92rem;
}

.portal-session .btn {
    border-radius: 14px;
    border: none;
    background: rgba(248, 250, 252, 0.14);
    color: var(--app-text);
    font-weight: 500;
    padding: 0.55rem 0.95rem;
}

.portal-session .btn:hover,
.portal-session .btn:focus {
    background: rgba(248, 250, 252, 0.22);
}

.portal-alert {
    border-radius: 20px;
    padding: 1.1rem 1.4rem;
    margin-bottom: 1.75rem;
    border: 1px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-weight: 500;
}

.portal-alert .material-symbols-rounded,
.portal-alert .bi {
    font-size: 1.35rem;
}

.portal-alert-success {
    background: rgba(52, 211, 153, 0.16);
    border-color: rgba(52, 211, 153, 0.32);
    color: #bbf7d0;
}

.portal-alert-info {
    background: rgba(96, 165, 250, 0.16);
    border-color: rgba(96, 165, 250, 0.32);
    color: #dbeafe;
}

.portal-alert-warning {
    background: rgba(250, 204, 21, 0.16);
    border-color: rgba(250, 204, 21, 0.32);
    color: #fef08a;
}

.portal-alert-danger {
    background: rgba(248, 113, 113, 0.16);
    border-color: rgba(248, 113, 113, 0.32);
    color: #fecaca;
}

.portal-card {
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    padding: 1.85rem;
    height: 100%;
}

.portal-card .form-label,
.portal-card .form-text,
.portal-card p,
.portal-card span,
.portal-card small {
    color: rgba(226, 232, 240, 0.78);
}

.portal-card .form-control {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 14px;
    color: var(--app-text);
    padding: 0.8rem 1rem;
}

.portal-card .form-control:focus {
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
}

.portal-card .btn-primary {
    border: none;
    border-radius: 14px;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(59, 130, 246, 0.95));
    color: #0f172a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portal-card .btn-primary:hover,
.portal-card .btn-primary:focus {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(59, 130, 246, 0.35);
}

.portal-inline-alert {
    background: rgba(248, 113, 113, 0.16);
    border: 1px solid rgba(248, 113, 113, 0.32);
    color: #fecaca;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.portal-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(168, 85, 247, 0.9));
    border-radius: 26px;
    padding: clamp(1.75rem, 1.35rem + 1vw, 2.6rem);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.portal-hero::after {
    content: '';
    position: absolute;
    inset: auto -30% -45% auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
    opacity: 0.35;
    transform: rotate(18deg);
}

.portal-stat-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portal-stat {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 16px;
    padding: 0.65rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.portal-stat span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(248, 250, 252, 0.8);
}

.portal-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portal-timeline-item {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.55);
}

.portal-timeline-item strong {
    color: var(--app-text);
}

.portal-timeline-item .badge {
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.portal-muted,
.portal-timeline-item .text-muted {
    color: rgba(148, 163, 184, 0.75) !important;
}

.portal-table-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 24px;
    padding: 2rem 2.25rem;
}

.portal-table {
    color: var(--app-text);
}

.portal-table thead {
    color: rgba(226, 232, 240, 0.6);
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.portal-table th,
.portal-table td {
    border-color: rgba(148, 163, 184, 0.16) !important;
}

.portal-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.1);
}

.portal-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(148, 163, 184, 0.75);
}

/* Página de assinatura de orçamento */
.signature-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signature-shell {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: clamp(2.5rem, 3vw + 2rem, 4.5rem) 1.75rem;
}

.signature-card {
    width: min(960px, 100%);
    background: linear-gradient(160deg, rgba(17, 24, 39, 0.94), rgba(15, 23, 42, 0.86));
    border-radius: 30px;
    border: 1px solid rgba(148, 163, 184, 0.26);
    box-shadow: 0 36px 72px rgba(8, 16, 28, 0.55);
    backdrop-filter: blur(22px);
    padding: clamp(2.2rem, 2vw + 2rem, 3rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.signature-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(1.5rem, 1vw + 1.5rem, 2.75rem);
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.signature-card__intro {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.signature-brand {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #0f172a;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(129, 140, 248, 0.92));
    box-shadow: 0 24px 40px rgba(59, 130, 246, 0.35);
}

.signature-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 600;
    display: block;
    margin-bottom: 0.45rem;
}

.signature-title {
    font-size: clamp(1.7rem, 1.25rem + 1.25vw, 2.3rem);
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--app-text);
}

.signature-subtitle {
    color: rgba(226, 232, 240, 0.72);
    max-width: 32rem;
    margin: 0;
}

.signature-chips {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.signature-card__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.signature-alert-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.signature-alert .app-alert__title {
    font-size: 1rem;
}

.signature-section {
    background: rgba(17, 24, 39, 0.72);
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.signature-section__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

.signature-section__subtitle {
    margin: 0;
    color: rgba(203, 213, 225, 0.75);
}

.signature-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.signature-metric {
    background: rgba(15, 23, 42, 0.65);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.signature-metric__label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.72rem;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 600;
}

.signature-metric__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--app-text);
}

.signature-note {
    background: rgba(96, 165, 250, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: #dbeafe;
    padding: 1.1rem 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.signature-note__label {
    display: block;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #bfdbfe;
    margin-bottom: 0.35rem;
}

.signature-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.signature-timeline__item {
    position: relative;
    padding-left: 1.85rem;
}

.signature-timeline__item::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: var(--app-primary);
    box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.2);
}

.signature-timeline__item::after {
    content: '';
    position: absolute;
    left: 0.82rem;
    top: 1.6rem;
    bottom: -1.1rem;
    width: 1px;
    background: rgba(148, 163, 184, 0.25);
}

.signature-timeline__item:last-child::after {
    display: none;
}

.signature-timeline__title {
    font-weight: 600;
    color: var(--app-text);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.signature-timeline__description {
    margin: 0.35rem 0 0;
    color: rgba(203, 213, 225, 0.75);
    font-size: 0.92rem;
}

.signature-canvas {
    width: 100%;
    min-height: 220px;
    border-radius: 20px;
    border: 1px dashed rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.72);
}

.signature-help {
    color: rgba(148, 163, 184, 0.85);
}

.signature-reset {
    border: none;
    background: none;
    color: var(--app-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
}

.signature-reset:hover,
.signature-reset:focus {
    color: #bfdbfe;
}

.signature-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .signature-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 991.98px) {
    .portal-shell {
        border-radius: 24px;
        padding: 2rem;
    }

    .portal-header {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1.5rem;
    }

    .portal-session {
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .signature-shell {
        padding: 2.5rem 1.5rem;
    }

    .signature-card {
        border-radius: 26px;
        padding: 2.25rem 1.9rem;
        gap: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .auth-card {
        border-radius: 22px;
    }

    .auth-card__header,
    .auth-card__body {
        padding: 2rem 1.75rem;
    }

    .portal-app {
        padding: 2rem 1.25rem;
    }

    .portal-shell {
        padding: 1.75rem;
    }

    .portal-card {
        border-radius: 18px;
        padding: 1.5rem;
    }

    .portal-hero {
        border-radius: 22px;
    }

    .portal-table-card {
        padding: 1.65rem;
    }

    .portal-session {
        flex-direction: column;
        align-items: stretch !important;
    }

    .signature-card__header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.65rem;
    }

    .signature-card__intro {
        align-items: flex-start;
    }

    .signature-chips {
        justify-content: flex-start;
    }

    .signature-section {
        padding: 1.45rem 1.3rem;
    }

    .signature-actions {
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .auth-shell {
        padding: 1.5rem 1.25rem;
    }

    .auth-card__header,
    .auth-card__body {
        padding: 1.75rem 1.5rem;
    }

    .portal-app {
        padding: 1.5rem 1rem;
    }

    .portal-shell {
        border-radius: 20px;
    }

    .portal-title {
        font-size: 1.55rem;
    }

    .portal-timeline-item {
        padding: 0.9rem;
    }
    .signature-shell {
        padding: 2rem 1.25rem;
    }

    .signature-card {
        padding: 1.85rem 1.4rem;
        border-radius: 22px;
    }

    .signature-brand {
        width: 52px;
        height: 52px;
        font-size: 1.05rem;
    }

    .signature-metrics {
        grid-template-columns: 1fr;
    }

    .signature-canvas {
        min-height: 200px;
    }
}

@media (max-width: 575.98px) {
    .navbar.app-navbar .navbar-brand span {
        display: none;
    }
}