/* ============================================================
   WisersOne — CSS global
   Identidade visual Wisers: paleta extraída de SpinwiserMPI/TPR
   ============================================================ */

:root {
    --wisers-blue:            #4298d3;
    --wisers-green:           #53b262;
    --wisers-indigo:          #3c4b8c;
    --wisers-teal:            #337876;
    --wisers-gradient:        linear-gradient(to right, #4298d3 0%, #53b262 100%);
    --wisers-gradient-dark:   linear-gradient(to right, #3c4b8c 0%, #337876 100%);
    --wisers-bg:              #f5f7fa;
    --wisers-surface:         #ffffff;
    --wisers-border:          #e9ecef;
    --wisers-text:            #1f2937;
    --wisers-text-soft:       #6b7280;
    --wisers-text-muted:      #9aa3af;
    --wisers-success:         #16a34a;
    --wisers-danger:          #dc2626;
    --wisers-warning:         #f59e0b;
    /* Layout shell (igual ao SpinwiserMPI) */
    --header-h:               60px;
    --sidebar-w:              240px;
    --border-soft:            1px solid #e9ecef;
}

/* ── Body ───────────────────────────────────────────────────── */
html, body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: var(--wisers-bg);
    color: var(--wisers-text);
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT SHELL — cópia fiel do SpinwiserMPI (spinwiser-admin.css)
   ═══════════════════════════════════════════════════════════════ */

/* ── Header ─────────────────────────────────────────────────── */
.tpr-header {
    height: var(--header-h);
    background: var(--wisers-gradient);
    color: #fff;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    display: flex;
    align-items: center;
    padding: 0 1.25rem;
    gap: .75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.tpr-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    padding: .25rem;
    opacity: .9;
    flex-shrink: 0;
}
.tpr-menu-btn:hover { opacity: 1; }

.tpr-header .brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    letter-spacing: .2px;
    line-height: 1;
}
.tpr-header .brand small {
    font-weight: 400;
    opacity: .85;
    font-size: .72rem;
    display: block;
    line-height: 1;
    margin-top: 2px;
}

.tpr-header .user-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
}
.tpr-header .user-box .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}
.tpr-header .user-box a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
}
.tpr-header .user-box a:hover { opacity: 1; }

/* ── Sidebar ─────────────────────────────────────────────────── */
.tpr-sidebar {
    position: fixed;
    top: var(--header-h);
    bottom: 0;
    left: 0;
    width: var(--sidebar-w);
    background: #fff;
    border-right: var(--border-soft);
    padding: 1rem 0;
    overflow-y: auto;
    z-index: 1020;
    transition: transform .2s ease;
}

.tpr-sidebar-fechada {
    transform: translateX(-100%);
}

/* ── Nav links ───────────────────────────────────────────────── */
.nav-section {
    font-size: .72rem;
    font-weight: 700;
    color: #9aa3af;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .85rem 1.25rem .4rem;
}

.nav-link {
    color: #374151;
    padding: .6rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    border-left: 3px solid transparent;
    font-size: .92rem;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.nav-link:hover {
    background: #f3f6fb;
    color: var(--wisers-blue);
    text-decoration: none;
}
.nav-link.active {
    background: #eaf3fb;
    color: var(--wisers-blue);
    border-left-color: var(--wisers-blue);
    font-weight: 600;
}

.nav-icon {
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .8;
    flex-shrink: 0;
}
.nav-link.active .nav-icon { opacity: 1; }

/* ── Main content ────────────────────────────────────────────── */
.tpr-main {
    margin-left: var(--sidebar-w);
    margin-top: var(--header-h);
    padding: 1.5rem 1.75rem;
    min-height: calc(100vh - var(--header-h));
    transition: margin-left .2s ease;
}

.tpr-main-expandido {
    margin-left: 0;
}

/* ── Valor de KPI com gradiente ─────────────────────────────── */
.kpi-value {
    background: var(--wisers-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    display: inline-block;
}

.kpi-value.positive { background: linear-gradient(to right, #16a34a, #53b262); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.kpi-value.negative { -webkit-text-fill-color: var(--wisers-danger); color: var(--wisers-danger); background: none; }

/* ── Badge de status (pill) ─────────────────────────────────── */
.wo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* Estados por nome semântico */
.wo-badge-neutro      { background: #f3f4f6; color: #6b7280; }
.wo-badge-simulacao   { background: #fef3c7; color: #92400e; }
.wo-badge-pendente    { background: #ffedd5; color: #9a3412; }
.wo-badge-aprovado    { background: #dbeafe; color: #1e40af; }
.wo-badge-rejeitado   { background: #fee2e2; color: #991b1b; }
.wo-badge-execucao    { background: #dcfce7; color: #166534; }
.wo-badge-fechado     { background: #e0e7ff; color: #3730a3; }

/* ── Título de página ───────────────────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.page-header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wisers-text);
    margin: 0;
}

.page-header .subtitle {
    font-size: 0.85rem;
    color: var(--wisers-text-soft);
    margin-top: 2px;
}

/* ── Tabelas — cabeçalho e linhas iguais ao SpinwiserMPI ─────── */
.mud-table-head .mud-table-cell {
    background: #f9fafb !important;
    font-size: .75rem !important;
    font-weight: 700 !important;
    color: #6b7280 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    border-bottom: 1px solid var(--wisers-border) !important;
    padding: .75rem 1rem !important;
}

.mud-table-body .mud-table-row:hover {
    background: #f9fbfd !important;
}

/* Tabelas densas (PCP / Comprador) */
.mud-table-dense .mud-table-cell {
    font-size: 0.88rem !important;
    padding: 0.5rem 0.75rem !important;
}

/* ── Cards ──────────────────────────────────────────────────── */
.wisers-card {
    background: var(--wisers-surface);
    border: 1px solid var(--wisers-border);
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(16,24,40,.04);
    transition: box-shadow 0.2s ease;
}

.wisers-card:hover {
    box-shadow: 0 4px 12px rgba(16,24,40,.08);
}

/* ── Login page — estrutura idêntica ao SpinwiserMPI ────────── */
.login-wrap {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--wisers-bg);
}

.login-hero {
    background: var(--wisers-gradient);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

.login-hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 1rem; margin-top: 0; }
.login-hero p  { opacity: .92; max-width: 420px; line-height: 1.55; margin: 0; }

.login-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Card do formulário */
.login-form {
    width: 100%;
    max-width: 380px;
    background: #fff;
    padding: 2.25rem 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(16,24,40,.08);
}

.login-form h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 .2rem;
    color: #1f2937;
}

.login-form .subtitle {
    color: #6b7280;
    font-size: .9rem;
    margin: 0 0 1.5rem;
}

/* Campo: label + input */
.lf-field {
    margin-bottom: 1rem;
}

.lf-field label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .3rem;
}

.lf-input {
    display: block;
    width: 100%;
    padding: .6rem .85rem;
    font-size: .95rem;
    font-family: 'Roboto', sans-serif;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: #1f2937;
    transition: border-color .15s ease, box-shadow .15s ease;
    outline: none;
    box-sizing: border-box;
}

.lf-input:focus {
    border-color: var(--wisers-blue);
    box-shadow: 0 0 0 3px rgba(66,152,211,.18);
}

/* Wrapper input + botão olho */
.lf-input-wrap {
    position: relative;
}

.lf-input-wrap .lf-input {
    padding-right: 2.8rem;
}

.lf-toggle-pw {
    position: absolute;
    right: .65rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    display: flex;
    align-items: center;
    padding: 0;
    line-height: 1;
}

.lf-toggle-pw:hover { color: var(--wisers-blue); }

/* Botão Entrar */
.lf-btn-submit {
    width: 100%;
    padding: .62rem 1rem;
    background: var(--wisers-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: transform .1s ease, box-shadow .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
}

.lf-btn-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(66,152,211,.28);
}

.lf-btn-submit:disabled {
    opacity: .75;
    cursor: not-allowed;
}

/* Spinner CSS puro */
.lf-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: lf-spin .7s linear infinite;
    flex-shrink: 0;
}

@keyframes lf-spin { to { transform: rotate(360deg); } }

/* Alerta de erro */
.lf-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: .7rem 1rem;
    border-radius: 8px;
    font-size: .88rem;
    margin-bottom: 1rem;
}

/* Rodapé do card */
.lf-footer {
    text-align: center;
    font-size: .78rem;
    color: #9aa3af;
    margin: 1.5rem 0 0;
}

@media (max-width: 900px) {
    .login-wrap { grid-template-columns: 1fr; }
    .login-hero { display: none; }
}

/* ── MudTextField Outlined — visual SpinwiserMPI form-control ── */
/* Borda padrão: cinza suave, 8px radius */
.mud-input-outlined .mud-input-outlined-border {
    border-color: #d1d5db !important;
    border-radius: 8px !important;
    border-width: 1px !important;
    transition: border-color .15s ease, box-shadow .15s ease !important;
}
/* Hover */
.mud-input-outlined:not(.mud-disabled):hover .mud-input-outlined-border {
    border-color: #9ca3af !important;
}
/* Focus: azul wisers + glow suave */
.mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: var(--wisers-blue) !important;
    border-width: 1px !important;
    box-shadow: 0 0 0 3px rgba(66,152,211,.18) !important;
}

/* Label flutuante: cor azul no focus */
.mud-input-outlined.mud-input-focused .mud-input-label-inputcontrol {
    color: var(--wisers-blue) !important;
}

/* MudSelect: mesma borda */
.mud-select .mud-input-outlined-border {
    border-color: #d1d5db !important;
    border-radius: 8px !important;
    border-width: 1px !important;
}
.mud-select.mud-input-focused .mud-input-outlined-border {
    border-color: var(--wisers-blue) !important;
    box-shadow: 0 0 0 3px rgba(66,152,211,.18) !important;
}

/* ── Buttons filled primary — gradiente Wisers ──────────────── */
.mud-button-filled-primary {
    background: var(--wisers-gradient) !important;
    border: none !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    transition: transform .1s ease, box-shadow .15s ease !important;
}
.mud-button-filled-primary:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(66,152,211,.28) !important;
}

/* ── Validation ─────────────────────────────────────────────── */
.valid.modified:not([type=checkbox]) { outline: 1px solid var(--wisers-success); }
.invalid { outline: 1px solid var(--wisers-danger); }
.validation-message { color: var(--wisers-danger); font-size: 0.8rem; }

/* ── Blazor error boundary ──────────────────────────────────── */
.blazor-error-boundary {
    background: #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
    border-radius: 8px;
}
.blazor-error-boundary::after { content: "Ocorreu um erro inesperado. Recarregue a página."; }

/* ── Scrollbar fina (webkit) ────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ── Detalhe de OP ──────────────────────────────────────────── */
.op-info-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.op-info-table tr { border-bottom: 1px solid var(--wisers-border); }
.op-info-table tr:last-child { border-bottom: none; }
.op-info-table td { padding: .5rem .25rem; vertical-align: middle; }
.op-info-table td:first-child {
    width: 38%;
    font-size: .78rem;
    font-weight: 600;
    color: var(--wisers-text-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.op-kpi { text-align: center; padding: .5rem; }
.op-kpi-label {
    font-size: .72rem;
    font-weight: 700;
    color: var(--wisers-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .25rem;
}
.op-kpi-value {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--wisers-text);
}

/* ── Barra de PE (dashboard) ────────────────────────────────── */
.pe-bar-wrap { position: relative; height: 36px; background: #fee2e2; border-radius: 8px; overflow: hidden; }
.pe-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(to right, #dcfce7, #16a34a33); transition: width 0.6s ease; }
.pe-bar-marker { position: absolute; top: 0; bottom: 0; width: 2px; background: #374151; }
.pe-bar-label { position: absolute; top: 50%; transform: translateY(-50%); font-size: 0.75rem; font-weight: 600; padding: 0 0.5rem; }

/* ── Editor de BOM ──────────────────────────────────────────── */
.wisers-bom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}
.wisers-bom-table thead tr {
    background: #f8f9fa;
    border-bottom: 2px solid var(--wisers-border);
}
.wisers-bom-table thead th {
    padding: .5rem .75rem;
    font-size: .72rem;
    font-weight: 700;
    color: var(--wisers-text-soft);
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}
.wisers-bom-table tbody tr {
    border-bottom: 1px solid var(--wisers-border);
    transition: background .1s ease;
}
.wisers-bom-table tbody tr:last-child { border-bottom: none; }
.wisers-bom-table tbody tr:hover { background: rgba(66,152,211,.04); }
.wisers-bom-table td { padding: .55rem .75rem; vertical-align: middle; }
.wisers-bom-table .text-center { text-align: center; }
.wisers-bom-table .text-right  { text-align: right;  }
.wisers-bom-table .bom-custo-cel { font-weight: 600; color: var(--wisers-indigo); }
.wisers-bom-table tfoot .bom-total-row {
    border-top: 2px solid var(--wisers-border);
    background: #f8f9fa;
}
.wisers-bom-table tfoot td { padding: .6rem .75rem; }

/* Card do form inline de item */
.bom-form-item {
    border-left: 3px solid var(--wisers-blue) !important;
}

/* cursor-pointer nas tabelas com clique na linha */
.cursor-pointer { cursor: pointer; }

/* ── Cadastro de Usuários ───────────────────────────────────── */
.usuario-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Cards de resumo por perfil */
.usuario-perfil-card {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: var(--wisers-surface);
    border: var(--border-soft);
    border-radius: 10px;
    padding: .6rem 1rem;
    min-width: 140px;
}
.usuario-perfil-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.usuario-perfil-nome {
    font-size: .78rem;
    font-weight: 700;
    color: var(--wisers-text-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.usuario-perfil-count {
    font-size: .88rem;
    font-weight: 600;
    color: var(--wisers-text);
}

/* ============================================================
   MRP — Planejamento de Necessidades
   ============================================================ */

/* Cards de resumo */
.mrp-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .mrp-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mrp-cards-grid { grid-template-columns: 1fr; } }

.mrp-stat-card {
    background: var(--wisers-surface);
    border: var(--border-soft);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow .15s;
}
.mrp-stat-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.07); }
.mrp-card-urgente { border-color: #fca5a5; background: #fff5f5; }

.mrp-stat-icon-wrap {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--wisers-bg);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mrp-stat-body { display: flex; flex-direction: column; min-width: 0; }
.mrp-stat-value { font-size: 1.8rem; font-weight: 700; line-height: 1; color: var(--wisers-text); }
.mrp-stat-value-sm { font-size: 1.05rem; font-weight: 700; line-height: 1.25; color: var(--wisers-text); }
.mrp-value-danger { color: #dc2626 !important; }
.mrp-stat-label { font-size: .78rem; color: var(--wisers-text-soft); margin-top: .2rem; display: flex; align-items: center; gap: .25rem; flex-wrap: wrap; }

/* Filtros */
.mrp-filtros-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; margin: 1rem 0 .75rem; }

/* Barra de ações em lote */
.mrp-bulk-bar { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 8px; padding: .5rem 1rem; margin-bottom: .75rem; }

/* Célula de item */
.mrp-item-cell { display: flex; flex-direction: column; line-height: 1.3; }
.mrp-item-codigo { font-size: .75rem; font-weight: 600; color: var(--wisers-blue); letter-spacing: .02em; }
.mrp-item-descricao { font-size: .88rem; color: var(--wisers-text); }
.mrp-item-origem { font-size: .72rem; color: var(--wisers-text-muted); }

.mrp-fornecedor { font-size: .85rem; max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-block; }

/* Datas com alerta */
.mrp-date-warn { color: #b45309; font-weight: 600; }
.mrp-date-danger { color: #dc2626; font-weight: 700; }

/* Detalhe de Rodada */
.rodada-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: .5rem; }
.rodada-stat { display: flex; flex-direction: column; align-items: center; background: var(--wisers-bg); border-radius: 8px; padding: .75rem; }
.rodada-stat-valor { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.rodada-stat-label { font-size: .75rem; color: var(--wisers-text-soft); margin-top: .3rem; text-align: center; }
.rodada-detalhe-campo { display: flex; flex-direction: column; gap: .15rem; }
.rodada-detalhe-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--wisers-text-muted); }
.rodada-detalhe-valor { font-size: .88rem; font-weight: 600; color: var(--wisers-text); }

/* ============================================================
   WO — Componentes comuns de página
   ============================================================ */

/* Cabeçalho de página padrão */
.wo-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.wo-page-header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--wisers-text);
    margin: 0 0 .15rem;
}
.wo-page-header p {
    font-size: .85rem;
    color: var(--wisers-text-soft);
    margin: 0;
}

/* Tabela padrão — sobrescreve estilo MudTable padrão */
.wo-table .mud-table-container {
    border-radius: 10px;
    border: 1px solid var(--wisers-border);
    overflow: hidden;
}
.wo-table .mud-table-head .mud-table-cell {
    background: #f9fafb !important;
    font-size: .74rem !important;
    font-weight: 700 !important;
    color: var(--wisers-text-soft) !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    border-bottom: 1px solid var(--wisers-border) !important;
    padding: .65rem .9rem !important;
}
.wo-table .mud-table-body .mud-table-row:hover {
    background: #f5f9ff !important;
}
.wo-table .mud-table-body .mud-table-cell {
    border-bottom: 1px solid var(--wisers-border) !important;
}
.wo-table .mud-table-body .mud-table-row:last-child .mud-table-cell {
    border-bottom: none !important;
}

/* Chips de filtro de status */
.wo-chip {
    display: inline-flex;
    align-items: center;
    padding: .3rem .75rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--wisers-border);
    background: var(--wisers-surface);
    color: var(--wisers-text-soft);
    transition: all .12s ease;
    white-space: nowrap;
}
.wo-chip:hover {
    background: #f0f4ff;
    border-color: var(--wisers-blue);
    color: var(--wisers-blue);
}
.wo-chip-active {
    background: var(--wisers-blue);
    border-color: var(--wisers-blue);
    color: #fff;
    font-weight: 600;
}

/* Card genérico */
.wo-card {
    background: var(--wisers-surface);
    border: 1px solid var(--wisers-border);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 1px 3px rgba(16,24,40,.04);
}
