/* ============================================================
   app-global.css — Design System Global Real
   Base visual: listTicket_new.css + listProjects.css
   Objetivo: centralizar o padrão soft UI real do projeto sem redesenhar o site.
   Ordem recomendada: Bootstrap -> app-global.css -> CSS específico de módulo.
   ============================================================ */

:root {
    /* Tipografia */
    --font-sans: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: .92rem;

    /* Cores estruturais — padrão real dos CSSs atuais */
    --text-main: #0f172a;
    --text-sec: #475569;
    --text-muted: #64748b;
    --bg-page: #f4f7fb;
    --bg-soft-1: #f8fafc;
    --bg-soft-2: #f1f5f9;
    --surface-main: #ffffff;
    --border-main: #e5e7eb;
    --border-strong: #dbe3ee;
    --hover-soft: #fcfcfd;
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, .055);
    --shadow-modal: 0 18px 38px rgba(15, 23, 42, .11);

    /* Paleta soft */
    --primary-bg: #eff6ff;
    --primary-text: #1d4ed8;
    --primary-border: #bfdbfe;

    --secondary-bg: #f8fafc;
    --secondary-text: #334155;
    --secondary-border: #e2e8f0;

    --success-bg: #ecfdf5;
    --success-text: #047857;
    --success-border: #a7f3d0;

    --warning-bg: #fffbeb;
    --warning-text: #92400e;
    --warning-border: #fde68a;

    --danger-bg: #fef2f2;
    --danger-text: #b91c1c;
    --danger-border: #fecaca;

    --info-bg: #f0f9ff;
    --info-text: #0369a1;
    --info-border: #bae6fd;

    --dark-bg: #f1f5f9;
    --dark-text: #0f172a;
    --dark-border: #cbd5e1;

    /* Radius / spacing */
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --radius-pill: 999px;

    --space-xs: .35rem;
    --space-sm: .65rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;

    /* Aliases pm-* para módulos novos */
    --pm-font-family-sans: var(--font-sans);
    --pm-font-size-base: var(--font-size-base);
    --pm-color-bg: var(--bg-page);
    --pm-color-bg-alt: var(--bg-soft-1);
    --pm-color-bg-subtle: var(--bg-soft-2);
    --pm-color-surface: var(--surface-main);
    --pm-color-surface-soft: var(--bg-soft-1);
    --pm-color-border: var(--border-main);
    --pm-color-border-strong: var(--border-strong);
    --pm-color-text: var(--text-main);
    --pm-color-text-secondary: var(--text-sec);
    --pm-color-text-muted: var(--text-muted);
    --pm-color-hover-soft: var(--hover-soft);
    --pm-color-primary-bg: var(--primary-bg);
    --pm-color-primary-text: var(--primary-text);
    --pm-color-primary-border: var(--primary-border);
    --pm-color-secondary-bg: var(--secondary-bg);
    --pm-color-secondary-text: var(--secondary-text);
    --pm-color-secondary-border: var(--secondary-border);
    --pm-color-success-bg: var(--success-bg);
    --pm-color-success-text: var(--success-text);
    --pm-color-success-border: var(--success-border);
    --pm-color-warning-bg: var(--warning-bg);
    --pm-color-warning-text: var(--warning-text);
    --pm-color-warning-border: var(--warning-border);
    --pm-color-danger-bg: var(--danger-bg);
    --pm-color-danger-text: var(--danger-text);
    --pm-color-danger-border: var(--danger-border);
    --pm-color-info-bg: var(--info-bg);
    --pm-color-info-text: var(--info-text);
    --pm-color-info-border: var(--info-border);
    --pm-radius-lg: var(--radius-lg);
    --pm-radius-md: var(--radius-md);
    --pm-radius-sm: var(--radius-sm);
    --pm-radius-pill: var(--radius-pill);
    --pm-shadow-soft: var(--shadow-soft);
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    background: var(--bg-page);
    color: var(--text-main);
    font-size: var(--font-size-base);
    font-family: var(--font-sans);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

/* ============================================================
   Layout administrativo
   ============================================================ */
.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 290px 1fr;
    background: var(--bg-page);
}

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

.admin-content {
    padding: 1.5rem;
}

.sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-right: 1px solid var(--border-main);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-head,
.topbar-brand,
.topbar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-head {
    align-items: flex-start;
    margin-bottom: 2rem;
}

.sidebar-icon,
.topbar-logo,
.auth-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    color: var(--primary-text);
    border: 1px solid var(--primary-border);
    flex: 0 0 auto;
}

.sidebar-title,
.topbar-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
}

.sidebar-subtitle,
.topbar-subtitle,
.page-subtitle,
.item-card-subtitle,
.modal-subtitle,
.pm-modal-subtitle {
    color: var(--text-muted);
    font-size: .88rem;
}

.sidebar-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .72rem;
    color: var(--text-muted);
    margin-bottom: .9rem;
}

.sidebar-menu,
.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item+.sidebar-item {
    margin-top: .3rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem .95rem;
    border-radius: 14px;
    color: var(--text-sec);
    transition: .18s ease-in-out;
    border: 1px solid transparent;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: var(--primary-bg);
    color: var(--primary-text);
    border-color: var(--primary-border);
}

.sidebar-caret {
    margin-left: auto;
    font-size: .8rem;
}

.sidebar-submenu {
    margin-left: 1.25rem;
    margin-top: .3rem;
}

/* .topbar {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-bottom: 1px solid var(--border-main);
    padding: 1rem 1.5rem;
} */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;

    width: 100%;

    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-bottom: 1px solid var(--border-main);

    padding: 1rem 1.5rem;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;

    min-width: 0;
    flex-shrink: 1;
}

.topbar .dropdown {
    margin-left: auto;

    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.topbar-user {
    background: #fff;
    padding: .45rem .65rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-main);
}

.topbar-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-soft-2);
    flex: 0 0 auto;
}

/* .topbar-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
    max-width: 180px;
} */
.topbar-user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1.2;

    min-width: 220px;
    max-width: 320px;
}

.topbar-user-info strong,
.topbar-user-info span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-user-info span {
    color: var(--text-muted);
    font-size: .8rem;
}

.topbar-dropdown {
    border-radius: 14px;
    border: 1px solid var(--border-main);
    box-shadow: var(--shadow-soft);
    padding: .4rem;
}

.topbar-dropdown .dropdown-item,
.pm-modal .dropdown-item {
    border-radius: 10px;
    font-weight: 600;
    padding: .6rem .75rem;
}

.topbar-dropdown .dropdown-item:hover,
.pm-modal .dropdown-item:hover {
    background: var(--bg-soft-1);
}

/* ============================================================
   Shell / headers
   ============================================================ */
.standalone-shell {
    width: calc(100% - 32px);
    margin: 24px auto;
}

.page-shell,
.pm-page-shell,
.app-shell,
.module-shell {
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pm-page-shell,
.app-shell,
.module-shell {
    padding: 0;
}

.page-header,
.pm-page-header,
.hero-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-main);
}

.page-header-title h1,
.page-header-title h2,
.page-title,
.pm-page-header-title,
.hero-title {
    margin: 0 0 .25rem;
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -.02em;
}

.page-header-title p,
.pm-page-header p,
.hero-subtitle {
    margin: .35rem 0 0;
    color: var(--text-muted);
    font-size: .92rem;
}

.page-header-actions,
.pm-page-header-actions,
.hero-actions,
.preview-card-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.content-wrap,
.pm-content-wrap {
    padding: 1.25rem 1.25rem 1.5rem;
    background: #fff;
}

/* ============================================================
   Cards / grids / KPIs
   ============================================================ */
.pm-card,
.pm-kpi-card,
.pm-table-card,
.filter-card,
.table-card,
.mini-card,
.stat-card,
.detail-card,
.info-box,
.preview-card,
.pm-section {
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.pm-card,
.pm-kpi-card,
.mini-card,
.stat-card,
.detail-card,
.info-box {
    padding: 1rem;
}

.pm-card--soft,
.preview-card {
    background: var(--bg-soft-1);
}

.pm-grid,
.stats-grid,
.pm-kpi-grid,
.detail-grid,
.grid-2,
.pm-modal-grid {
    display: grid;
    gap: 1rem;
}

.stats-grid,
.pm-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
}

.pm-grid--2,
.grid-2,
.pm-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.pm-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-label,
.pm-kpi-label,
.kpi-label,
.detail-label,
.info-label {
    color: var(--text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem;
}

.stat-value,
.pm-kpi-value,
.kpi-value {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
}

.detail-value,
.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.stat-subtitle,
.pm-kpi-meta,
.kpi-meta {
    margin-top: .4rem;
    color: var(--text-muted);
    font-size: .78rem;
}

.pm-card-title,
.item-card-title,
.pm-section-title,
.pm-section-title-text h6,
.info-title {
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
}

.pm-section-title,
.section-head h3,
.pm-card-head h2 {
    margin: 0;
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.module-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.module-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.module-card-copy {
    min-width: 0;
    flex: 1;
}

.module-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
}

.module-card-subtitle {
    margin: .35rem 0 0;
    color: var(--text-muted);
    font-size: .86rem;
    line-height: 1.45;
}

.module-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

.module-meta-item {
    padding: .85rem .95rem;
    margin: 0;
}

.module-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
    margin-top: auto;
}

.module-card-actions form {
    margin: 0;
    display: flex;
}

.module-card-actions .btn {
    min-height: 38px;
}

.info-sub,
.info-subtitle,
.project-subtitle {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.3;
}

/* ============================================================
   Toolbars / filtros / chips de navegação
   ============================================================ */
.toolbar-shell,
.quick-filters-shell {
    padding: 1rem 1.25rem 0;
}

.toolbar-card,
.quick-filters-card,
.filter-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.toolbar-card form {
    margin: 0;
}

.toolbar-info,
.quick-filters-actions,
.quick-filters-group,
.filter-summary {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    align-items: center;
}

.quick-filters-label {
    color: var(--text-muted);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.nav-chip,
.toolbar-chip,
.mini-chip,
.pm-chip,
.chip-id,
.project-id,
.item-card-pill,
.report-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: var(--radius-pill);
    background: var(--bg-soft-1);
    border: 1px solid var(--border-main);
    color: var(--text-sec);
    font-weight: 600;
    line-height: 1;
}

.nav-chip {
    padding: .65rem .9rem;
    text-decoration: none;
}

.toolbar-chip,
.mini-chip,
.pm-chip {
    padding: .45rem .75rem;
    font-size: .78rem;
    font-weight: 600;
}

.chip-id {
    min-width: 78px;
    padding: .42rem .7rem;
    color: var(--text-main);
    font-size: .83rem;
}

.project-id {
    min-width: 44px;
    padding: .35rem .6rem;
    font-size: .8rem;
}

.item-card-pill {
    padding: .32rem .65rem;
    background: var(--primary-bg);
    border-color: var(--primary-border);
    color: var(--primary-text);
    font-size: .72rem;
}

.nav-chip.is-active,
.filter-chip-btn.is-active {
    background: var(--primary-bg);
    color: var(--primary-text);
    border-color: var(--primary-border);
}

.filter-chip-btn {
    appearance: none;
    border: 1px solid var(--border-main);
    background: var(--bg-soft-1);
    color: var(--text-sec);
    border-radius: var(--radius-pill);
    padding: .52rem .85rem;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 600;
    line-height: 1;
    transition: .18s ease-in-out;
    cursor: pointer;
}

.filter-chip-btn:hover {
    background: #fff;
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.filter-chip-btn.filter-warning.is-active {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-color: var(--warning-border);
}

.filter-chip-btn.filter-danger.is-active {
    background: var(--danger-bg);
    color: var(--danger-text);
    border-color: var(--danger-border);
}

.filter-chip-btn.filter-success.is-active {
    background: var(--success-bg);
    color: var(--success-text);
    border-color: var(--success-border);
}

/* ============================================================
   Botões soft + Bootstrap adapter seguro
   ============================================================ */
.btn-soft,
.pm-btn-soft,
.btn-soft-primary,
.btn-soft-secondary,
.btn-soft-success,
.btn-soft-warning,
.btn-soft-danger,
.btn-soft-info {
    border-radius: var(--radius-sm);
    font-weight: 600;
    box-shadow: none;
}

.btn-soft,
.pm-btn-soft,
.btn-soft-primary,
.btn-soft-secondary,
.btn-soft-success,
.btn-soft-warning,
.btn-soft-danger,
.btn-soft-info {
    border: 1px solid transparent;
    padding: .68rem 1rem;
}

.btn-soft.btn-sm,
.pm-btn-soft.btn-sm,
.btn-soft-primary.btn-sm,
.btn-soft-secondary.btn-sm,
.btn-soft-success.btn-sm,
.btn-soft-warning.btn-sm,
.btn-soft-danger.btn-sm,
.btn-soft-info.btn-sm,
.btn-group-sm>.btn-soft {
    padding: .48rem .8rem;
}

.btn-soft-primary,
.pm-btn-soft--primary {
    background: var(--primary-bg);
    color: var(--primary-text);
    border-color: var(--primary-border);
}

.btn-soft-secondary,
.pm-btn-soft--secondary {
    background: var(--secondary-bg);
    color: var(--secondary-text);
    border-color: var(--secondary-border);
}

.btn-soft-success,
.pm-btn-soft--success {
    background: var(--success-bg);
    color: var(--success-text);
    border-color: var(--success-border);
}

.btn-soft-warning,
.pm-btn-soft--warning {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-color: var(--warning-border);
}

.btn-soft-danger,
.pm-btn-soft--danger {
    background: var(--danger-bg);
    color: var(--danger-text);
    border-color: var(--danger-border);
}

.btn-soft-info,
.pm-btn-soft--info {
    background: var(--info-bg);
    color: var(--info-text);
    border-color: var(--info-border);
}

.btn-soft:hover,
.pm-btn-soft:hover,
.btn-soft-primary:hover,
.btn-soft-secondary:hover,
.btn-soft-success:hover,
.btn-soft-warning:hover,
.btn-soft-danger:hover,
.btn-soft-info:hover {
    filter: brightness(.99);
    color: inherit;
}

/* ============================================================
   Badges / status
   ============================================================ */
.badge-soft,
.status-badge,
.pm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: .42rem .8rem;
    border-radius: var(--radius-pill);
    font-size: .74rem;
    font-weight: 600;
    line-height: 1;
    border: 1px solid transparent;
    white-space: nowrap;
}

.status-badge {
    min-width: 96px;
    font-size: .76rem;
}

.soft-primary,
.status-info,
.pm-badge--primary,
.badge-soft-primary {
    background: var(--primary-bg);
    color: var(--primary-text);
    border-color: var(--primary-border);
}

.soft-secondary,
.status-default,
.pm-badge--secondary,
.badge-soft-secondary {
    background: var(--secondary-bg);
    color: var(--secondary-text);
    border-color: var(--secondary-border);
}

.soft-success,
.status-success,
.pm-badge--success,
.badge-soft-success {
    background: var(--success-bg);
    color: var(--success-text);
    border-color: var(--success-border);
}

.soft-warning,
.status-warning,
.pm-badge--warning,
.badge-soft-warning {
    background: var(--warning-bg);
    color: var(--warning-text);
    border-color: var(--warning-border);
}

.soft-danger,
.status-danger,
.pm-badge--danger,
.badge-soft-danger {
    background: var(--danger-bg);
    color: var(--danger-text);
    border-color: var(--danger-border);
}

.soft-dark,
.pm-badge--dark {
    background: var(--dark-bg);
    color: var(--dark-text);
    border-color: var(--dark-border);
}

.pm-badge--info,
.badge-soft-info {
    background: var(--info-bg);
    color: var(--info-text);
    border-color: var(--info-border);
}

/* ============================================================
   Tabelas / DataTables
   ============================================================ */
.table-card,
.projects-table-card,
.pm-table-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
}

.projects-table-wrap {
    padding: 1rem 1.25rem 1.25rem;
}

.table,
.pm-table,
#ListProjects {
    --bs-table-bg: transparent;
    margin-bottom: 0;
}

.table thead th,
.pm-table thead th,
#ListProjects thead th {
    background: var(--bg-soft-1);
    color: #4b5563;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    border-bottom: 1px solid var(--border-main);
    padding: 1rem .9rem;
    white-space: nowrap;
    vertical-align: middle;
}

.table tbody td,
.pm-table tbody td,
#ListProjects tbody td {
    padding: 1rem .9rem;
    vertical-align: middle;
    border-color: #eef2f7;
}

.table tbody tr:hover,
.pm-table tbody tr:hover,
#ListProjects tbody tr:hover {
    background: var(--hover-soft);
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    min-height: 40px;
    border-radius: 13px;
    border: 1px solid var(--border-main);
    background: #fff;
    box-shadow: none;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: .5rem;
    padding: .35rem .75rem;
}

.dataTables_wrapper .dataTables_length select {
    padding: .35rem 2rem .35rem .75rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 10px !important;
    border: 1px solid transparent !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--primary-bg) !important;
    color: var(--primary-text) !important;
    border-color: var(--primary-border) !important;
}

/* ============================================================
   Forms
   ============================================================ */
.form-label,
.pm-form .form-label {
    font-size: .82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: .45rem;
}

.pm-form .form-control,
.pm-form .form-select,
.pm-modal .form-control,
.pm-modal .form-select,
.filter-card .form-control,
.filter-card .form-select,
.auth-card .form-control,
.auth-card .form-select {
    min-height: 42px;
    border-radius: var(--radius-sm);
    border-color: var(--border-strong);
    box-shadow: none;
}

textarea.form-control,
.pm-form textarea.form-control,
.pm-modal textarea.form-control {
    min-height: 120px;
}

.pm-form .form-control:focus,
.pm-form .form-select:focus,
.pm-modal .form-control:focus,
.pm-modal .form-select:focus,
.filter-card .form-control:focus,
.filter-card .form-select:focus,
.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: var(--primary-border);
    box-shadow: 0 0 0 .2rem rgba(29, 78, 216, .08);
}

/* ============================================================
   Modais
   ============================================================ */
.pm-modal .modal-dialog {
    max-width: 1200px;
}

.pm-modal .modal-dialog.modal-xl {
    --bs-modal-width: 1200px;
}

.pm-modal .modal-content {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-modal);
    overflow: visible;
}

.pm-modal .modal-header {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-main);
    padding: 1rem 1.25rem;
}

.pm-modal .modal-body {
    background: #fbfdff;
    padding: 1.2rem;
    overflow-y: auto;
    max-height: calc(100vh - 220px);
}

.pm-modal .modal-footer {
    background: #fff;
    border-top: 1px solid var(--border-main);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.modal-title-wrap h5,
.pm-modal-title-wrap h5,
.pm-modal-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.modal-title-wrap,
.pm-modal-title-wrap {
    display: flex;
    flex-direction: column;
}

.modal-title-wrap p,
.pm-modal-subtitle {
    margin: .25rem 0 0;
    color: var(--text-muted);
    font-size: .88rem;
}

/* ============================================================
   Seções / itens / timeline / arquivos
   ============================================================ */
.pm-section {
    padding: 1rem;
    margin-bottom: 1rem;
}

.pm-section:last-child {
    margin-bottom: 0;
}

.section-head,
.pm-section-title,
.item-card-head {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
}

.section-head,
.pm-section-title {
    margin-bottom: 1rem;
}

.section-icon,
.pm-section-title-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex: 0 0 auto;
}

.section-head h6,
.pm-section-title-text h6 {
    margin: 0;
    font-size: .95rem;
}

.section-head p,
.pm-section-title-text p {
    margin: .2rem 0 0;
    color: var(--text-muted);
    font-size: .86rem;
}

.item-card {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: #fff;
    padding: .95rem;
    margin-bottom: .75rem;
}

.item-card:last-child {
    margin-bottom: 0;
}

.item-card-head {
    justify-content: space-between;
    margin-bottom: .6rem;
}

.timeline-item {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: #fff;
    padding: .85rem .95rem;
    margin-bottom: .75rem;
}

.timeline-item strong {
    font-weight: 600;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .75rem;
    margin-bottom: .45rem;
    color: var(--text-muted);
    font-size: .8rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .8rem .9rem;
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    margin-bottom: .65rem;
}

.file-name {
    font-weight: 600;
    color: var(--text-main);
}

.file-meta {
    color: var(--text-muted);
    font-size: .82rem;
    margin-top: .2rem;
}

.file-item-main {
    flex: 1;
    min-width: 0;
}

.file-item-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.file-item-actions form {
    margin: 0;
}

.empty-state,
.empty-box,
.pm-empty-state,
.pm-empty {
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-lg);
    background: #fff;
    padding: 1.25rem;
    text-align: center;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    display: inline-block;
}

/* ============================================================
   Progress
   ============================================================ */
.progress-track,
.pm-progress {
    width: 160px;
    height: 8px;
    border-radius: var(--radius-pill);
    background: #e2e8f0;
    overflow: hidden;
}

.pm-progress {
    width: 100%;
    height: 10px;
}

.progress-bar-soft,
.pm-progress .progress-bar {
    height: 100%;
    border-radius: var(--radius-pill);
}

.pm-progress .progress-bar {
    width: var(--progress, auto);
}

.progress-default {
    background: linear-gradient(90deg, #cbd5e1 0%, #64748b 100%);
}

.progress-info {
    background: linear-gradient(90deg, #93c5fd 0%, #2563eb 100%);
}

.progress-warning {
    background: linear-gradient(90deg, #fde68a 0%, #f59e0b 100%);
}

.progress-success {
    background: linear-gradient(90deg, #86efac 0%, #10b981 100%);
}

/* ============================================================
   Projetos / tickets — classes reais mantidas
   ============================================================ */
.project-main,
.info-block,
.info-stack {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.project-main {
    min-width: 280px;
}

.project-title,
.info-title {
    margin: 0;
    font-size: .98rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    word-break: break-word;
}

.project-subtitle,
.info-subtitle {
    color: var(--text-muted);
    font-size: .82rem;
    line-height: 1.3;
    word-break: break-word;
}

.mini-chip-wrap,
.ticket-side-badges {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
}

.task-row-actions,
.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.col-actions {
    width: 132px;
    min-width: 132px;
    max-width: 132px;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
}

/* ============================================================
   Relatório / impressão — mantido do padrão de projetos
   ============================================================ */
.modal-report {
    max-width: 1180px;
}

.report-modal-content {
    border: 1px solid #d9e2ec;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.report-print-area {
    background: #fff;
    padding: 28px 30px 24px;
    overflow: visible !important;
    max-height: none !important;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    border-bottom: 1px solid #d9e2ec;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.report-title {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.report-subtitle {
    margin-top: 6px;
    color: var(--text-sec);
    font-size: .95rem;
}

.report-meta {
    min-width: 220px;
    text-align: right;
    font-size: .9rem;
    color: #334155;
    line-height: 1.6;
}

.report-filter-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.report-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.report-kpi {
    border: 1px solid #d9e2ec;
    border-radius: 12px;
    background: var(--bg-soft-1);
    padding: 12px 14px;
}

.report-kpi-label {
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 700;
}

.report-kpi-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.report-section {
    margin-top: 16px;
    page-break-inside: avoid;
    break-inside: avoid;
}

.report-section-title {
    font-size: .98rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.report-table-wrap {
    overflow: visible !important;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: .86rem;
    color: #1e293b;
}

.report-table thead th {
    background: #eef2f7;
    color: var(--text-main);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-weight: 700;
    border: 1px solid #d9e2ec;
    padding: 8px 9px;
    vertical-align: middle;
}

.report-table tbody td {
    border: 1px solid #d9e2ec;
    padding: 8px 9px;
    vertical-align: top;
    line-height: 1.35;
    word-break: break-word;
}

.report-project-name {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
}

.report-project-desc {
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.35;
}

@media print {
    body {
        background: #fff !important;
    }

    .modal-header,
    .modal-footer,
    .btn,
    .no-print {
        display: none !important;
    }

    .report-print-area {
        padding: 0 !important;
    }

    .report-table {
        font-size: .76rem;
    }
}

/* ============================================================
   Compatibilidade com módulo instalável de projetos
   ============================================================ */
.mod_projects-module,
.projects-module {
    color: var(--text-main);
}

.mod_projects-module .pm-page-header,
.projects-module .pm-page-header {
    margin-bottom: 0;
}

.mod_projects-module .pm-page-header h1,
.projects-module .pm-page-header h1 {
    margin: 0 0 .25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -.02em;
}

.mod_projects-module .pm-page-header p,
.projects-module .pm-page-header p {
    margin: .35rem 0 0;
    color: var(--text-muted);
    font-size: .92rem;
}

.mod_projects-module .pm-eyebrow,
.projects-module .pm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--primary-text);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.mod_projects-module .pm-header-actions,
.projects-module .pm-header-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mod_projects-module .pm-toolbar,
.projects-module .pm-toolbar {
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 0;
}

.mod_projects-module .pm-grid,
.projects-module .pm-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.mod_projects-module .pm-kpi-grid,
.projects-module .pm-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 0;
}

.mod_projects-module .pm-kpi,
.projects-module .pm-kpi {
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.mod_projects-module .pm-kpi span,
.projects-module .pm-kpi span {
    display: block;
    color: var(--text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem;
}

.mod_projects-module .pm-kpi strong,
.projects-module .pm-kpi strong {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
}

.mod_projects-module .pm-card,
.projects-module .pm-card {
    background: #fff;
    border: 1px solid var(--border-main);
    border-radius: var(--radius-lg);
    box-shadow: none;
    padding: 1rem;
}

.mod_projects-module .pm-card-head,
.projects-module .pm-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .85rem;
}

.mod_projects-module .pm-card-head h2,
.projects-module .pm-card-head h2 {
    margin: 0 0 .25rem;
    font-size: .98rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.25;
}

.mod_projects-module .pm-card-head p,
.projects-module .pm-card-head p,
.projects-module .pm-card p {
    color: var(--text-muted);
    margin: 0;
    font-size: .82rem;
    line-height: 1.35;
}

.mod_projects-module .pm-meta-grid,
.projects-module .pm-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin: 1rem 0;
}

.mod_projects-module .pm-meta-grid>div,
.projects-module .pm-meta-grid>div {
    border: 1px solid var(--border-main);
    border-radius: var(--radius-md);
    background: #fff;
    padding: .85rem;
}

.mod_projects-module .pm-meta-grid span,
.projects-module .pm-meta-grid span {
    display: block;
    font-size: .74rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .35rem;
}

.mod_projects-module .pm-meta-grid strong,
.projects-module .pm-meta-grid strong {
    display: block;
    font-size: .96rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

.mod_projects-module .pm-actions,
.projects-module .pm-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.mod_projects-module .pm-empty,
.projects-module .pm-empty {
    grid-column: 1 / -1;
}

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1399px) {

    .mod_projects-module .pm-grid,
    .projects-module .pm-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {

    .stats-grid,
    .pm-kpi-grid,
    .detail-grid,
    .pm-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        height: auto;
    }

    .page-header,
    .pm-page-header,
    .hero-card,
    /* .topbar, */
    .toolbar-card,
    .quick-filters-card,
    .item-card-head {
        flex-direction: column;
        align-items: stretch;
    }

    .page-header-actions,
    .pm-page-header-actions,
    .hero-actions,
    .mod_projects-module .pm-header-actions,
    .projects-module .pm-header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .mod_projects-module .pm-kpi-grid,
    .projects-module .pm-kpi-grid,
    .mod_projects-module .pm-grid,
    .projects-module .pm-grid,
    .pm-grid--3,
    .pm-grid--4,
    .detail-grid,
    .grid-2,
    .pm-modal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .module-card-head {
        flex-direction: column;
        align-items: stretch;
    }

    .module-card-head .status-badge {
        align-self: flex-start;
    }
}

@media (max-width: 767px) {

    .admin-content,
    .topbar,
    .sidebar {
        padding: 1rem;
    }

    .standalone-shell {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .stats-grid,
    .pm-kpi-grid,
    .detail-grid,
    .grid-2,
    .pm-modal-grid,
    .pm-grid--2,
    .pm-grid--3,
    .pm-grid--4,
    .mod_projects-module .pm-kpi-grid,
    .projects-module .pm-kpi-grid,
    .mod_projects-module .pm-grid,
    .projects-module .pm-grid,
    .mod_projects-module .pm-meta-grid,
    .projects-module .pm-meta-grid,
    .report-kpis {
        grid-template-columns: 1fr;
    }

    .projects-table-wrap,
    .toolbar-shell,
    .quick-filters-shell {
        padding-left: .9rem;
        padding-right: .9rem;
    }

    .status-badge {
        width: 100%;
    }

    .module-meta-grid {
        grid-template-columns: 1fr;
    }

    .module-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .module-card-actions form,
    .module-card-actions .btn {
        width: 100%;
    }

    .module-card-head .status-badge {
        width: auto;
    }

    .project-main {
        min-width: auto;
    }

    .report-header {
        flex-direction: column;
    }

    .report-meta {
        text-align: left;
        min-width: 0;
    }
}

/* ============================================================
   V2 — Ajustes finos de consistência visual
   Objetivo: reduzir cantos exagerados, aliviar peso tipográfico
   e criar respiro entre cards/blocos sem redesenhar o sistema.
   ============================================================ */

:root {
    --font-size-base: .92rem;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --shadow-soft: 0 10px 24px rgba(15, 23, 42, .055);
    --shadow-modal: 0 18px 38px rgba(15, 23, 42, .11);

    --pm-radius-lg: var(--radius-lg);
    --pm-radius-md: var(--radius-md);
    --pm-radius-sm: var(--radius-sm);
    --pm-shadow-soft: var(--shadow-soft);
}

body {
    line-height: 1.45;
    font-weight: 400;
}

/* Tipografia menos pesada */
h1,
h2,
h3,
.page-title,
.page-header-title h1,
.page-header-title h2,
.pm-page-header-title,
.hero-title,
.mod_projects-module .pm-page-header h1,
.projects-module .pm-page-header h1 {
    font-weight: 600;
}

h4,
h5,
h6,
.sidebar-title,
.topbar-title,
.page-header-title strong,
.pm-card-title,
.item-card-title,
.info-title,
.project-title,
.mod_projects-module .pm-card-head h2,
.projects-module .pm-card-head h2 {
    font-weight: 600;
}

.stat-value,
.pm-kpi-value,
.kpi-value,
.detail-value,
.info-value,
.mod_projects-module .pm-kpi strong,
.projects-module .pm-kpi strong,
.mod_projects-module .pm-meta-grid strong,
.projects-module .pm-meta-grid strong {
    font-weight: 700;
}

/* Cantos menores e consistentes */
.page-shell,
.pm-page-shell,
.app-shell,
.module-shell,
.page-header,
.pm-page-header,
.hero-card,
.pm-card,
.pm-kpi-card,
.pm-table-card,
.filter-card,
.table-card,
.mini-card,
.stat-card,
.detail-card,
.info-box,
.preview-card,
.pm-section,
.toolbar-card,
.quick-filters-card,
.projects-table-card,
.pm-modal .modal-content,
.mod_projects-module .pm-page-header,
.projects-module .pm-page-header,
.mod_projects-module .pm-card,
.projects-module .pm-card,
.mod_projects-module .pm-kpi,
.projects-module .pm-kpi,
.mod_projects-module .pm-toolbar,
.projects-module .pm-toolbar {
    border-radius: var(--radius-lg);
}

.btn-soft,
.pm-btn-soft,
.btn-soft-primary,
.btn-soft-secondary,
.btn-soft-success,
.btn-soft-warning,
.btn-soft-danger,
.btn-soft-info,
.topbar-dropdown .dropdown-item,
.pm-modal .dropdown-item,
.section-icon,
.pm-section-title-icon {
    border-radius: var(--radius-sm);
}

/* Respiro entre blocos principais sem agredir Bootstrap */
.admin-content>.page-shell+.page-shell,
.admin-content>.pm-page-shell+.pm-page-shell,
.admin-content>.module-shell+.module-shell,
.page-shell>.content-wrap>*+*,
.pm-page-shell>.pm-content-wrap>*+*,
.content-wrap>.pm-section+.pm-section,
.content-wrap>.table-card+.table-card,
.content-wrap>.filter-card+.table-card,
.content-wrap>.stats-grid+.table-card,
.content-wrap>.toolbar-card+.table-card {
    margin-top: 1rem;
}

/* Corrige telas com grids/rows coladas sem alterar a estrutura */
.stats-grid,
.pm-kpi-grid,
.detail-grid,
.grid-2,
.pm-grid,
.pm-modal-grid,
.mod_projects-module .pm-grid,
.projects-module .pm-grid,
.mod_projects-module .pm-kpi-grid,
.projects-module .pm-kpi-grid,
.mod_projects-module .pm-meta-grid,
.projects-module .pm-meta-grid {
    gap: 1rem;
}

.row.g-0>[class*="col"],
.row.g-0>[class^="col"] {
    padding: .5rem;
}

/* Fallback para cards antigos que aparecem grudados */
.admin-content .card,
.admin-content .box,
.admin-content .panel {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-main);
    background: #fff;
    box-shadow: none;
}

.admin-content .card+.card,
.admin-content .box+.box,
.admin-content .panel+.panel,
.mini-card+.mini-card,
.detail-card+.detail-card,
.item-card+.item-card,
.timeline-item+.timeline-item,
.file-item+.file-item {
    margin-top: .75rem;
}

/* Botões/badges mais leves */
.btn-soft,
.pm-btn-soft,
.nav-chip,
.toolbar-chip,
.mini-chip,
.pm-chip,
.badge-soft,
.status-badge,
.pm-badge,
.filter-chip-btn {
    font-weight: 600;
}

.pm-modal-grid>.pm-section,
.pm-modal-grid>.pm-card,
.pm-modal-grid>.detail-card {
    margin-bottom: 0;
    height: 100%;
}

/* Reduz peso excessivo em labels sem perder hierarquia */
.form-label,
.quick-filters-label,
.stat-label,
.pm-kpi-label,
.kpi-label,
.detail-label,
.info-label,
.mod_projects-module .pm-kpi span,
.projects-module .pm-kpi span,
.mod_projects-module .pm-meta-grid span,
.projects-module .pm-meta-grid span {
    font-weight: 600;
}

/* ============================================================
   AUTH / LOGIN
   ============================================================ */

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 2rem;

    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, .07), transparent 28%),
        radial-gradient(circle at bottom left, rgba(14, 165, 233, .05), transparent 30%),
        var(--bg-page);
}

.auth-shell {
    width: 100%;
    max-width: 460px;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 1.4rem;
}

.auth-brand h1 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.auth-brand p {
    margin: .25rem 0 0;
    font-size: .9rem;
    color: var(--text-muted);
}

.auth-card {
    background: #fff;

    border: 1px solid var(--border-main);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-soft);

    padding: 2rem;
}

.auth-card .page-header,
.auth-card .pm-page-header {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;

    background: transparent;
    border-bottom: 0;
}

.auth-card .form-control,
.auth-card .form-select {
    min-height: 48px;
}

.auth-password-field .form-control {
    border-right: 0;
}

.auth-password-toggle {
    min-width: 46px;
}

.auth-password-toggle i {
    pointer-events: none;
}

.auth-card .btn {
    min-height: 48px;
}

.auth-footnote {
    margin-top: 1.5rem;

    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

/* ============================================================
   MODULE MANAGER — CLEAN STATS
   ============================================================ */

.module-stats-list {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    margin-top: .5rem;
}

.module-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}

.module-stat-row:last-child {
    border-bottom: 0;
}

.module-stat-label {
    color: var(--text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.module-stat-value {
    color: var(--text-main);
    font-size: .92rem;
    font-weight: 700;
    text-align: right;
    word-break: break-word;
}

.module-meta-item .detail-label {
    margin-bottom: .45rem;
}

.module-meta-item .detail-value {
    flex: 1;
    display: flex;
    align-items: flex-start;
    line-height: 1.35;
    word-break: break-word;
}

.module-meta-item.is-small .detail-value {
    font-size: .88rem;
}

.module-meta-item.is-stat .detail-value {
    font-size: 1.15rem;
    font-weight: 700;
}
