:root {
    --bg-base: #080c14;
    --bg-surface: #0d1421;
    --bg-card: #111827;
    --border: rgba(99,179,237,0.12);
    --accent-blue: #38bdf8;
    --accent-cyan: #06b6d4;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-red: #ef4444;
    --accent-purple: #818cf8;
    --text-primary: #f0f6ff;
    --text-secondary: #8ba3c7;
    --text-muted: #4a6080;
    --sidebar-w: 240px;
    --radius: 10px;
    --radius-lg: 14px;
}

/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    font-size: 14px;
    overflow: hidden;
}

/* UTILITÁRIOS */
.blue { color: var(--accent-blue); }
.green { color: var(--accent-green); }
.red { color: var(--accent-red); }
.amber { color: var(--accent-amber); }
.purple { color: var(--accent-purple); }

.td-right { text-align: right; }
.td-center { text-align: center; }

/* LAYOUT */
.app {
    display: flex;
    height: 100vh;
}

.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
}

/* SIDEBAR */
.sidebar {
    width: var(--sidebar-w);
    background: var(--bg-surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.sidebar-logo {
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo img {
    height: 32px;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.05);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Serif', serif;
    font-weight: 800;
    font-size: 16px;
    color: #001a2e;
    flex-shrink: 0;
}

.logo-text {
    font-family: Syne, sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: var(--text-primary);
    letter-spacing: .02em;
}

.logo-sub,
.sidebar-logo .logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.sidebar-section-label {
    padding: 16px 16px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    margin: 1px 8px;
    font-size: 13.5px;
    font-weight: 500;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(56,189,248,0.1);
    color: var(--accent-blue);
}

.nav-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .72;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    opacity: 1;
}

.nav-count {
    margin-left: auto;
    min-width: 24px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(239,68,68,0.16);
    color: #fca5a5;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.sidebar-bottom {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 12px;
}

.user-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

.user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-name {
    font-size: 13px;
    font-weight: 600;
}

.user-role {
    font-size: 11px;
    color: var(--text-secondary);
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    gap: 16px;
}

.page-title {
    font-size: 24px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-count {
    padding: 1px 7px;
    border-radius: 999px;
    background: rgba(239,68,68,0.16);
    color: #fca5a5;
    font-size: 12px;
    font-weight: 800;
}

/* CARDS E KPI */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.kpi-card,
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.kpi-card {
    padding: 20px;
    position: relative;
}

.kpi-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 700;
}

.kpi-value {
    font-size: 20px;
    font-weight: 700;
}

.card {
    padding: 20px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 12px;
}

/* ALERTAS */
.alert {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(245,158,11,0.25);
    background: rgba(245,158,11,0.08);
}

.alert-success {
    border-color: rgba(16,185,129,0.25);
    background: rgba(16,185,129,0.08);
    color: #6ee7b7;
}

.alert-danger {
    border-color: rgba(239,68,68,0.25);
    background: rgba(239,68,68,0.08);
    color: #fca5a5;
}

/* BOTÕES */
.btn {
    padding: 9px 18px;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #001a2e;
    text-decoration: none;
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    text-decoration: none;
}

.btn-danger {
    background: rgba(239,68,68,0.14);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.28);
}

.btn-sm {
    padding: 6px 10px;
    font-size: 12px;
}

.btn-sidebar-logout {
    width: 100%;
    justify-content: center;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

/* MODAIS */
body.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3,7,18,0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(0);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        backdrop-filter 180ms ease;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(3px);
}

.modal-backdrop[hidden] {
    display: none;
}

.modal-backdrop.closing {
    display: flex;
    visibility: visible;
}

.modal-panel {
    width: min(780px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 80px rgba(0,0,0,0.42);
    opacity: 0;
    transform: translateY(14px) scale(.985);
    transition:
        opacity 180ms ease,
        transform 180ms cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
}

.modal-backdrop.open .modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal-backdrop.closing .modal-panel {
    opacity: 0;
    transform: translateY(10px) scale(.985);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-size: 17px;
    font-weight: 800;
}

.modal-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

@media (prefers-reduced-motion: reduce) {
    .modal-backdrop,
    .modal-panel {
        transition: none;
    }
}

/* FORMULÁRIOS */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

label,
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

input,
select,
textarea,
.form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 13.5px;
    outline: none;
}

.form-input {
    padding: 12px 16px;
    font-size: 14px;
}

input:focus,
select:focus,
textarea:focus,
.form-input:focus {
    border-color: var(--accent-blue);
}

/* TABELAS */
.table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    padding: 12px 14px;
    text-align: left;
}

th {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

td {
    border-bottom: 1px solid rgba(99,179,237,0.05);
}

tbody tr:hover td {
    background: rgba(56,189,248,0.03);
}

/* BADGES */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-review {
    background: rgba(56,189,248,0.14);
    color: var(--accent-blue);
}

.badge-active {
    background: rgba(16,185,129,0.12);
    color: var(--accent-green);
}

.badge-inactive {
    background: rgba(239,68,68,0.12);
    color: var(--accent-red);
}

/* LOGIN */
.login-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.login-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.login-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
}

.login-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 40px;
    width: 420px;
    max-width: 92vw;
    overflow: hidden;
}

.login-logo {
    margin-bottom: 32px;
}

.login-logo img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 220px;
    max-height: 48px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.05);
}

.login-subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.login-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 13px;
    color: #fca5a5;
    margin-bottom: 16px;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border: none;
    border-radius: var(--radius);
    color: #001a2e;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}

.login-hint {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* MENU DE AÇÕES */
.action-menu {
    position: relative;
    display: inline-flex;
    justify-content: center;
}

.action-menu-btn {
    width: 34px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.action-menu-btn:hover {
    color: var(--text-primary);
    border-color: var(--accent-blue);
}

.action-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 36px;
    min-width: 130px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    z-index: 50;
}

.action-menu.open .action-menu-dropdown {
    display: block;
}

.action-menu-dropdown a,
.action-menu-dropdown button {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    text-align: left;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
}

.action-menu-dropdown a:hover {
    background: rgba(56,189,248,0.08);
    color: var(--accent-blue);
}

.action-menu-dropdown button:hover {
    background: rgba(239,68,68,0.10);
    color: #fca5a5;
}

/* MOBILE */
.mobile-menu-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius);
    padding: 8px 10px;
    cursor: pointer;
}

.mobile-overlay {
    display: none;
}

@media (max-width: 900px) {
    body {
        overflow: auto;
    }

    .app {
        display: block;
        height: auto;
        min-height: 100vh;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 260px;
        height: 100vh;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        width: 100%;
        padding: 18px 14px;
        overflow-y: visible;
    }

    .topbar {
        gap: 12px;
        align-items: flex-start;
        flex-direction: column;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.55);
        z-index: 9998;
    }

    .mobile-overlay.show {
        display: block;
    }

    .kpi-grid,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    table {
        min-width: 760px;
    }
}
.pagination-wrap {
    margin-top: 16px;
}

.pagination-wrap nav {
    display: flex;
    justify-content: flex-end;
}

.pagination-wrap a,
.pagination-wrap span {
    background: var(--bg-card) !important;
    color: var(--text-secondary) !important;
    border-color: var(--border) !important;
}

.pagination-wrap a:hover {
    color: var(--accent-blue) !important;
}
.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(56,189,248,0.10);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 999px;
}

.progress-fill.danger-fill {
    background: var(--accent-red);
}
.progress-fill {
    transition: width 0.4s ease;
}
.login-premium {
    padding: 24px;
}

.login-shell {
    position: relative;
    z-index: 2;
    width: min(1040px, 100%);
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: rgba(17, 24, 39, .62);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.login-brand-panel {
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 20% 20%, rgba(56,189,248,.16), transparent 36%),
        linear-gradient(135deg, rgba(13,20,33,.92), rgba(8,12,20,.98));
    border-right: 1px solid var(--border);
}

.login-brand-logo {
    height: 42px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 22px;
}

.login-product-name {
    font-size: 11px;
    color: var(--accent-blue);
    letter-spacing: .28em;
    font-weight: 800;
    margin-bottom: 28px;
}

.login-brand-panel h1 {
    font-family: Syne, sans-serif;
    font-size: 38px;
    line-height: 1.08;
    max-width: 540px;
    margin-bottom: 18px;
}

.login-brand-panel p {
    color: var(--text-secondary);
    max-width: 500px;
    font-size: 14px;
}

.login-brand-footer {
    color: var(--text-muted);
    font-size: 12px;
}

.login-card-premium {
    width: auto;
    max-width: none;
    border: none;
    border-radius: 0;
    background: rgba(13, 20, 33, .92);
    padding: 56px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card-header {
    margin-bottom: 28px;
}

.login-card-kicker {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.login-card-header h2 {
    font-family: Syne, sans-serif;
    font-size: 26px;
    margin-bottom: 6px;
}

.login-card-header p {
    color: var(--text-secondary);
    font-size: 13px;
}

.login-options {
    margin: 4px 0 18px;
}

.login-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-transform: none;
    font-size: 13px;
}

.login-options input {
    width: auto;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .15s ease, opacity .15s ease;
}

.btn-login:hover {
    transform: translateY(-1px);
    opacity: .92;
}

@media (max-width: 900px) {
    .login-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-brand-panel {
        padding: 34px 28px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .login-brand-panel h1 {
        font-size: 28px;
    }

    .login-card-premium {
        padding: 34px 28px;
    }
}
.login-forgot {
    text-align: right;
    margin: -4px 0 18px;
}

.login-forgot a,
.login-hint a {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.login-forgot a:hover,
.login-hint a:hover {
    text-decoration: underline;
}

.categoria-cor {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.dash-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(99,179,237,0.06);
}

.dash-list-item:last-child {
    border-bottom: none;
}

.text-muted {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 2px;
}

.empty-message {
    color: var(--text-secondary);
    padding: 18px 0;
}

@media (max-width: 900px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.action-menu {
    position: relative;
    display: inline-flex;
    justify-content: center;
}

.action-menu-dropdown {
    position: absolute;
    right: 0;
    top: 36px;
    min-width: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}

.card:has(.action-menu.open),
.table-wrap:has(.action-menu.open) {
    overflow: visible !important;
}
.sidebar {
    height: 100vh;
    overflow: hidden;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 12px;
}

.sidebar-bottom {
    flex-shrink: 0;
    margin-top: 0;
    border-top: 1px solid var(--border);
    padding: 12px;
    background: var(--bg-surface);
}
.nav-item {
    padding: 8px 14px;
    font-size: 13px;
}

.sidebar-section-label {
    padding: 12px 16px 5px;
}

/* =========================
   SCROLL GLOBAL (SISTEMA)
========================= */

/* largura */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* fundo */
::-webkit-scrollbar-track {
    background: transparent;
}

/* barra */
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    transition: all 0.2s ease;
}

/* hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.35);
}

.metas-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: end;
}

.metas-grid .col-2 {
    grid-column: span 2;
}

.metas-grid .col-full {
    grid-column: 1 / -1;
}

.metas-grid input,
.metas-grid select,
.metas-grid textarea {
    width: 100%;
}

@media (max-width: 900px) {
    .metas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .metas-grid .col-2,
    .metas-grid .col-full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .metas-grid {
        grid-template-columns: 1fr;
    }
}

.actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 8px;
}
.pagination-footer {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-info {
    font-size: 13px;
    color: var(--text-secondary);
}

.pagination {
    display: flex;
    gap: 6px;
    list-style: none; /* REMOVE BOLINHA */
    margin: 0;
    padding: 0;
}

.pagination li {
    list-style: none;
}

.pagination a,
.pagination span {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .active span {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination .disabled span {
    opacity: .4;
}
/* botão pagar dentro do menu */
.action-menu-dropdown form button {
    width: 100%;
    text-align: left;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* hover geral (fallback) */
.action-menu-dropdown form button:hover {
    background: rgba(255,255,255,0.05);
}

/* específico para pagar */
.action-menu-dropdown form button.btn-pagar:hover {
    background: #22c55e; /* verde */
    color: #fff;
}

.action-menu-dropdown form button.btn-receber:hover {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
}

/* badges por status */

.badge-pago {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.badge-prevista {
    background: rgba(234,179,8,0.15);
    color: #eab308;
}

.badge-vencida {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
}

.badge-cancelada {
    background: rgba(148,163,184,0.15);
    color: #94a3b8;
}

.badge {
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}
.action-menu-dropdown form button.btn-emitir:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

.action-menu-dropdown > button:hover {
    background: rgba(56,189,248,0.08);
    color: var(--accent-blue);
}
