:root {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-display: var(--font-sans);
    --color-red-500: oklch(63.7% .237 25.331);
    --color-red-600: oklch(57.7% .245 27.325);
    --color-orange-500: oklch(70.5% .213 47.604);
    --color-green-400: oklch(79.2% .209 151.711);
    --color-green-500: oklch(72.3% .219 149.579);
    --color-green-900: oklch(39.3% .095 152.535);
    --color-emerald-400: oklch(76.5% .177 163.223);
    --color-emerald-500: oklch(69.6% .17 162.48);
    --color-cyan-500: oklch(71.5% .143 215.221);
    --color-blue-400: oklch(70.7% .165 254.624);
    --color-blue-500: oklch(62.3% .214 259.815);
    --color-blue-600: oklch(54.6% .245 262.881);
    --color-blue-900: oklch(37.9% .146 265.522);
    --color-indigo-300: oklch(78.5% .115 274.713);
    --color-indigo-400: oklch(67.3% .182 276.935);
    --color-indigo-500: oklch(58.5% .233 277.117);
    --color-indigo-900: oklch(35.9% .144 278.697);
    --color-purple-400: oklch(71.4% .203 305.504);
    --color-purple-500: oklch(62.7% .265 303.9);
    --color-purple-600: oklch(55.8% .288 302.321);
    --color-purple-900: oklch(38.1% .176 304.987);
    --color-pink-400: oklch(71.8% .202 349.761);
    --color-pink-500: oklch(65.6% .241 354.308);
    --color-slate-300: oklch(86.9% .022 252.894);
    --color-slate-400: oklch(70.4% .04 256.788);
    --color-slate-500: oklch(55.4% .046 257.417);
    --color-slate-600: oklch(44.6% .043 257.281);
    --color-slate-700: oklch(37.2% .044 257.287);
    --color-slate-800: oklch(27.9% .041 260.031);
    --color-slate-900: oklch(20.8% .042 265.755);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-black: #000;
    --color-white: #fff;
    --radius-xl: .75rem;
    --radius-lg: .5rem;
    --radius-md: .375rem;
    --radius-sm: .25rem;
    --sidebar-width: 270px;
    --sidebar-collapsed: 92px;
    --shadow-soft: 0 25px 25px #00000026;
    --shadow-card: 0 25px 25px #00000026;
}

:root[data-theme="light"] {
    --app-bg: radial-gradient(900px 500px at 15% 10%, rgba(200, 210, 255, 0.55), transparent 60%),
        radial-gradient(700px 500px at 85% 0%, rgba(191, 228, 255, 0.5), transparent 60%),
        linear-gradient(180deg, #f5f7ff 0%, #eef1fb 50%, #f1f3fb 100%);
    --surface: #ffffff;
    --surface-2: #f6f7ff;
    --surface-3: #eef0ff;
    --sidebar-bg: #ffffff;
    --border-subtle: rgba(122, 132, 170, 0.18);
    --text-primary: #1f2440;
    --text-secondary: #6b7397;
    --accent: #6c63ff;
    --accent-strong: #8b5cf6;
    --accent-rgb: 108, 99, 255;
    --accent-strong-rgb: 139, 92, 246;
    --success-rgb: 34, 197, 94;
    --warning-rgb: 245, 158, 11;
    --danger-rgb: 239, 68, 68;
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
}

:root[data-theme="dark"] {
    --app-bg: #020617;
    --surface: oklch(20.8% .042 265.755 / 0.92);
    --surface-2: oklch(27.9% .041 260.031 / 0.92);
    --surface-3: oklch(37.2% .044 257.287 / 0.72);
    --sidebar-bg: oklch(20.8% .042 265.755 / 0.96);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --text-primary: var(--color-slate-300);
    --text-secondary: var(--color-slate-400);
    --accent: var(--color-indigo-500);
    --accent-strong: var(--color-purple-500);
    --accent-rgb: 99, 102, 241;
    --accent-strong-rgb: 168, 85, 247;
    --success-rgb: 34, 197, 94;
    --warning-rgb: 245, 158, 11;
    --danger-rgb: 239, 68, 68;
    --success: var(--color-green-500);
    --warning: var(--color-orange-500);
    --danger: var(--color-red-500);
}

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

body {
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--app-bg);
    overflow-x: hidden;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

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

.app-body {
    position: relative;
    padding: 16px;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

.bg-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.bg-orb--left {
    top: -120px;
    left: -80px;
    background: #5a66ff;
}

.bg-orb--right {
    top: -140px;
    right: -60px;
    background: #2b78ff;
}

:root[data-theme="dark"] .bg-orb {
    display: none;
}

.shell {
    width: min(1200px, 100%);
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 0 auto;
    flex: 1;
}

.app-shell {
    width: 100%;
    max-width: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 0;
    flex: 1;
    min-height: calc(100vh - 32px);
    position: relative;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 16px;
    left: 16px;
    height: calc(100vh - 32px);
    max-height: calc(100vh - 32px);
    transition: width 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

@media (max-width: 1300px) {
    :root {
        --sidebar-width: 230px;
    }

    .sidebar {
        width: 230px;
    }

    .app-shell {
        gap: 14px;
    }

    .app-main {
        margin-left: 246px;
    }
}

.sidebar__collapse {
    display: none;
}

.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sidebar__brand {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.logo-image {
    height: 44px;
    width: auto;
    border-radius: 0;
    border: none;
    object-fit: contain;
}

.logo-image--guest {
    width: 160px;
    height: auto;
    border-radius: 0;
    border: none;
    object-fit: contain;
}

.logo-fallback {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.brand {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    padding-right: 6px;
    margin-right: -6px;
    flex: 1;
    min-height: 0;
}

.color-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.nav-section {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin: 8px 0 4px;
}

.nav-group {
    border-radius: 16px;
    border: 1px solid transparent;
}

.nav-group summary {
    list-style: none;
    cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
    display: none;
}

.nav-caret {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.nav-group[open] .nav-caret {
    transform: rotate(180deg);
}

.nav-sub {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 6px 0 4px 36px;
}

.nav-sub .nav-link {
    padding: 8px 12px;
    font-size: 13px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: transparent;
    color: var(--text-secondary);
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover {
    border-color: var(--border-subtle);
    color: var(--text-primary);
    background: rgba(var(--accent-rgb), 0.08);
}

.nav-link.is-active {
    background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-strong-rgb), 0.18));
    border-color: rgba(var(--accent-rgb), 0.45);
    color: var(--text-primary);
}

.nav-link.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.sidebar__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    font-size: 12px;
}

.profile-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 13px;
}

.profile-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}

.profile-card__avatar--fallback {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

.sidebar.is-collapsed {
    width: var(--sidebar-collapsed);
}

.sidebar.is-collapsed .nav-text,
.sidebar.is-collapsed .nav-section,
.sidebar.is-collapsed .sidebar__brand .brand,
.sidebar.is-collapsed .sidebar__brand .eyebrow,
.sidebar.is-collapsed .profile-card {
    display: none;
}

.sidebar.is-collapsed .nav-link {
    justify-content: center;
}

.sidebar.is-collapsed .sidebar__brand {
    justify-content: center;
}

.sidebar__nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar__nav::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-rgb), 0.3);
    border-radius: 999px;
}

.sidebar__nav::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-rgb), 0.25);
    border-radius: 999px;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 24, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 20;
}

.sidebar-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-bottom-nav {
    display: none;
}

.mobile-bottom-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    min-width: 0;
}

.mobile-bottom-nav__icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-bottom-nav__icon svg {
    width: 20px;
    height: 20px;
}

.mobile-bottom-nav__link.is-active {
    background: linear-gradient(120deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-strong-rgb), 0.14));
    border-color: rgba(var(--accent-rgb), 0.38);
    color: var(--text-primary);
}

.app-main {
    flex: 1 1 0%;
    min-width: 0;
    width: calc(100% - var(--sidebar-width) - 16px);
    margin-left: calc(var(--sidebar-width) + 16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

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

.topbar__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-2);
    color: var(--text-primary);
    cursor: pointer;
}

.topbar__menu-toggle svg {
    width: 24px;
    height: 24px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 22px;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    padding: 8px 16px;
    min-width: 230px;
}

.search__icon {
    font-size: 14px;
    color: var(--text-secondary);
}

.search input {
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    width: 100%;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-2);
    color: var(--text-primary);
    cursor: pointer;
}

.icon-button svg {
    width: 20px;
    height: 20px;
}

.icon-button.is-mobile {
    display: none;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panel {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.alert-card {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-strong-rgb), 0.08));
    border: 1px solid rgba(var(--accent-rgb), 0.3);
    border-radius: var(--radius-xl);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: var(--shadow-card);
}

.alert-card.is-warning {
    background: linear-gradient(135deg, rgba(var(--warning-rgb), 0.12), rgba(var(--warning-rgb), 0.04));
    border-color: rgba(var(--warning-rgb), 0.35);
}

.alert-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 6px;
}

.alert-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.alert-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.overdue-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(var(--danger-rgb), 0.08) 0%, rgba(var(--danger-rgb), 0.04) 100%);
    border: 1px solid rgba(var(--danger-rgb), 0.25);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.overdue-banner:hover {
    background: linear-gradient(135deg, rgba(var(--danger-rgb), 0.12) 0%, rgba(var(--danger-rgb), 0.06) 100%);
    border-color: rgba(var(--danger-rgb), 0.4);
}

.overdue-banner__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(var(--danger-rgb), 0.15);
    color: var(--danger);
}

.overdue-banner__icon svg {
    width: 26px;
    height: 26px;
}

.overdue-banner__content {
    flex: 1;
    min-width: 0;
}

.overdue-banner__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.overdue-banner__text {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.45;
}

.overdue-banner__cta {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: var(--danger);
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overdue-banner:hover .overdue-banner__cta {
    box-shadow: 0 4px 14px rgba(var(--danger-rgb), 0.4);
}

@media (max-width: 520px) {
    .overdue-banner {
        flex-wrap: wrap;
    }

    .overdue-banner__cta {
        width: 100%;
        text-align: center;
    }
}

.maintenance-note {
    background: rgba(var(--warning-rgb), 0.15);
    border: 1px solid rgba(var(--warning-rgb), 0.35);
    color: var(--warning);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    box-shadow: var(--shadow-card);
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-line;
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.client-alert {
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.client-alert strong {
    display: block;
    margin-bottom: 4px;
}

.client-alert p {
    color: var(--text-secondary);
    font-size: 14px;
    white-space: pre-line;
}

.client-alert--warning {
    border-color: rgba(var(--warning-rgb), 0.5);
    background: rgba(var(--warning-rgb), 0.12);
    color: #8a5a07;
}

.client-alert--warning p {
    color: #8a5a07;
}

.client-alert--danger {
    border-color: rgba(var(--danger-rgb), 0.5);
    background: rgba(var(--danger-rgb), 0.12);
    color: #991b1b;
}

.client-alert--danger p {
    color: #991b1b;
}

.client-alert--success {
    border-color: rgba(var(--success-rgb), 0.5);
    background: rgba(var(--success-rgb), 0.1);
    color: #166534;
}

.client-alert--success p {
    color: #166534;
}

.panel--form {
    max-width: 760px;
}

.settings-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.settings-grid .panel--form {
    max-width: none;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.panel-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.panel-search input {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-2);
    color: var(--text-primary);
    font-size: 13px;
    min-width: 220px;
}

.panel-search--table {
    margin: 6px 0 16px;
}

.grid-two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal__content--wide {
    max-width: 860px;
}

.pix-content {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.pix-qr img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: #fff;
    padding: 8px;
}

.pix-code textarea {
    width: 100%;
    resize: none;
}

.pix-actions {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pix-copy-status {
    font-size: 12px;
}

.subscription-content p {
    margin: 0 0 12px;
}

.subscription-link {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.subscription-iframe {
    margin-top: 16px;
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: #fff;
    overflow: hidden;
    min-height: 360px;
}

.subscription-iframe iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.challenge-body p {
    margin: 0 0 12px;
}

.challenge-frame {
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    background: #fff;
    overflow: hidden;
    min-height: 420px;
}

.challenge-frame iframe {
    width: 100%;
    height: 520px;
    border: 0;
}

.modal-status {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    min-height: 160px;
    width: 100%;
}

.modal-status--error {
    color: var(--danger);
}

.modal-status.is-hidden {
    display: none;
}

.spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(var(--accent-rgb), 0.2);
    border-top-color: var(--accent);
    animation: spin 1s linear infinite;
}

.modal-status__message {
    font-size: 14px;
}

.is-hidden {
    display: none !important;
}

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

@media (max-width: 700px) {
    .pix-content {
        grid-template-columns: 1fr;
    }
}

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

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-card);
    position: relative;
    min-height: 170px;
}

.stat-card .status-line {
    margin-top: auto;
}

.stat-card strong {
    font-size: 26px;
    font-family: var(--font-display);
}

.stat-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.stat-card--benefits {
    background: linear-gradient(135deg, rgba(var(--accent-strong-rgb), 0.18), rgba(var(--accent-rgb), 0.08));
    border-color: rgba(var(--accent-strong-rgb), 0.6);
}

.stat-card--benefits .muted {
    color: rgba(255, 255, 255, 0.9);
}

.stat-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.stat-card__icon-button {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    padding: 0;
}

.stat-card__icon-button svg {
    width: 16px;
    height: 16px;
}

.stat-card__icon-button:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: #fff;
    transform: translateY(-1px);
}

.stat-card__icon-button:active {
    transform: translateY(0);
}

/* Ajustes de legibilidade do card de beneficios no tema claro */
html[data-theme="light"] .stat-card--benefits {
    color: var(--text-primary);
}

html[data-theme="light"] .stat-card--benefits strong {
    color: var(--text-primary);
}

html[data-theme="light"] .stat-card--benefits .muted,
html[data-theme="light"] .stat-card--benefits .benefits-progress__labels {
    color: var(--text-secondary);
}

.benefits-progress {
    margin-top: 1rem;
}

.benefits-progress__labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.35rem;
}

.benefits-progress__bar {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
    overflow: hidden;
}

.benefits-progress__fill {
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(90deg, #facc15, #a3e635, #22c55e);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.7);
    transition: width 0.4s ease-out;
}

.benefits-levels {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.75rem;
}

.benefits-levels__item {
    padding: 0.75rem 0.85rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border-subtle, rgba(15, 23, 42, 0.08));
    background: var(--surface-subtle, rgba(15, 23, 42, 0.015));
}

.benefits-levels__item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}

.table-wrap {
    width: 100%;
    overflow-x: auto;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

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

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--surface);
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.data-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    background: var(--surface-2);
}

.data-table tbody tr:nth-child(even) {
    background: rgba(var(--accent-rgb), 0.02);
}

.data-table tbody tr:hover {
    background: rgba(var(--accent-rgb), 0.06);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.table-actions {
    position: relative;
    display: inline-block;
}

.table-actions__toggle {
    list-style: none;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.table-actions__toggle::-webkit-details-marker {
    display: none;
}

.table-actions__icon svg {
    width: 18px;
    height: 18px;
}

.table-actions__menu {
    position: absolute;
    right: 0;
    margin-top: 6px;
    min-width: 200px;
    padding: 8px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    z-index: 40;
}

.table-actions__menu .actions {
    flex-direction: column;
    align-items: stretch;
}

.link-button {
    border: none;
    background: transparent;
    padding: 4px 0;
    text-align: left;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
}

.table-actions__menu a,
.table-actions__menu .link-button {
    width: 100%;
    padding: 4px 0;
}

.table-actions__menu a:hover,
.table-actions__menu .link-button:hover {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-button {
    cursor: pointer;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.badge-danger {
    background: rgba(var(--danger-rgb), 0.15);
    color: var(--danger);
}

.badge-warning {
    background: rgba(var(--warning-rgb), 0.15);
    color: var(--warning);
}

.status-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    --pulse-color: rgba(var(--success-rgb), 0.4);
    box-shadow: 0 0 0 0 var(--pulse-color);
    animation: pulse 1.6s infinite;
}

.status-dot.is-danger {
    background: var(--danger);
    --pulse-color: rgba(var(--danger-rgb), 0.4);
}

.status-dot.is-warning {
    background: var(--warning);
    --pulse-color: rgba(var(--warning-rgb), 0.4);
}
.status-connection {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 36px);
}

.status-connection__line {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--success-rgb), 0.2), rgba(var(--success-rgb), 0.7), rgba(var(--success-rgb), 0.2));
    background-size: 200% 100%;
    animation: flow 2s linear infinite;
}

.status-connection__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    box-shadow: var(--shadow-card);
}

.status-connection__icon svg {
    width: 20px;
    height: 20px;
}

.status-connection.is-danger .status-connection__line {
    background: linear-gradient(90deg, rgba(var(--danger-rgb), 0.2), rgba(var(--danger-rgb), 0.7), rgba(var(--danger-rgb), 0.2));
}

.status-connection.is-danger .status-connection__icon {
    color: var(--danger);
}

.status-connection.is-warning .status-connection__line {
    background: linear-gradient(90deg, rgba(var(--warning-rgb), 0.2), rgba(var(--warning-rgb), 0.7), rgba(var(--warning-rgb), 0.2));
}

.status-connection.is-warning .status-connection__icon {
    color: var(--warning);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 var(--pulse-color);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.empty {
    text-align: center;
    padding: 32px 0;
    color: var(--text-secondary);
}

/* Tela de faturas - estilo inspirado em painel de operadora */
.invoice-screen {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.invoice-screen__title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.invoice-tabs-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    margin: 0 -4px;
    padding: 8px 4px 12px;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-behavior: smooth;
}

.invoice-tabs-wrap::-webkit-scrollbar {
    height: 6px;
}

.invoice-tabs-wrap::-webkit-scrollbar-thumb {
    background: rgba(var(--accent-rgb), 0.25);
    border-radius: 999px;
}

.invoice-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    min-width: min-content;
}

.invoice-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 18px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-green-500);
    background: transparent;
    color: var(--color-green-500);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    min-width: 140px;
}

.invoice-tab:hover {
    background: rgba(34, 197, 94, 0.08);
}

.invoice-tab.is-active {
    background: var(--color-green-900);
    border-color: var(--color-green-900);
    color: #fff;
}

.invoice-tab strong {
    font-size: 15px;
}

.invoice-current {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.invoice-current__month {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.invoice-current__amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-green-500);
    margin: 0;
}

.invoice-current__status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.invoice-current__status.is-success {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.invoice-current__status.is-danger {
    background: rgba(var(--danger-rgb), 0.15);
    color: var(--danger);
}

.invoice-current__status.is-warning {
    background: rgba(var(--warning-rgb), 0.15);
    color: var(--warning);
}

.invoice-shortcuts__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px;
}

.invoice-shortcuts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.invoice-shortcut-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 12px;
    min-height: 96px;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 13px;
    text-align: center;
    transition: all 0.2s ease;
}

.invoice-shortcut-card:hover {
    border-color: rgba(var(--accent-rgb), 0.4);
    background: rgba(var(--accent-rgb), 0.06);
}

.invoice-shortcut-card__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--danger);
}

.invoice-shortcut-card__icon svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 760px) {
    .invoice-shortcuts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .invoice-shortcut-card {
        min-height: 86px;
        padding: 12px 10px;
        gap: 6px;
    }
}

@media (max-width: 430px) {
    .invoice-shortcuts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .invoice-shortcut-card {
        min-height: 80px;
        font-size: 12px;
    }

    .invoice-shortcut-card__icon {
        width: 30px;
        height: 30px;
    }

    .invoice-shortcut-card__icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Historico de faturas - layout moderno em cards */
.history-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-panel__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}

.history-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.history-card:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    background: rgba(var(--accent-rgb), 0.04);
}

.history-card__main {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.history-card__month {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.history-card__amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-green-500);
}

.history-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

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

.history-card__date {
    font-size: 12px;
    color: var(--text-secondary);
}

.history-card__status {
    grid-column: 1 / -1;
    align-self: start;
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.history-card__status--success {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--success);
}

.history-card__status--danger {
    background: rgba(var(--danger-rgb), 0.15);
    color: var(--danger);
}

.history-card__status--warning {
    background: rgba(var(--warning-rgb), 0.15);
    color: var(--warning);
}

.history-pagination {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

@media (min-width: 520px) {
    .history-card {
        grid-template-columns: 1fr auto auto;
        grid-template-rows: 1fr;
        align-items: center;
    }

    .history-card__status {
        grid-column: auto;
        align-self: center;
    }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    background: var(--surface-2);
    color: var(--text-primary);
    font-size: 14px;
}

.field input::placeholder {
    color: var(--text-secondary);
    opacity: 0.9;
}

.field-error {
    font-size: 12px;
    color: var(--danger);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 26px rgba(98, 95, 255, 0.35);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-ghost {
    background: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-small {
    padding: 8px 14px;
    font-size: 12px;
}

.btn-danger {
    background: rgba(var(--danger-rgb), 0.14);
    color: var(--danger);
    border: 1px solid rgba(var(--danger-rgb), 0.3);
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 28px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(96, 112, 199, 0.18);
    color: var(--text-secondary);
    width: fit-content;
}

.hero-info h1 {
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1.15;
}

.hero-info p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(88, 98, 180, 0.18);
    color: var(--text-secondary);
}

.hero-form {
    background: var(--surface-2);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-form h2 {
    font-family: var(--font-display);
    font-size: 20px;
}

.muted {
    color: var(--text-secondary);
    font-size: 14px;
}

.download-card {
    align-items: stretch;
}

.download-panel {
    gap: 10px;
}

.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-progress {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--surface-3);
    overflow: hidden;
}

.download-progress__bar {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.35), var(--accent), rgba(var(--accent-strong-rgb), 0.9));
    transition: width 0.2s ease;
}

.download-progress__bar.is-indeterminate {
    width: 38%;
    animation: download-indeterminate 1.1s linear infinite;
}

.download-progress__bar.is-complete {
    animation: none;
}

@keyframes download-indeterminate {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(280%);
    }
}

.logo-preview {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-preview img {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid var(--border-subtle);
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 10, 24, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 60;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__content {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: min(620px, 94%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--shadow-soft);
    max-height: 85vh;
    overflow-y: auto;
}

.modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.error-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--danger);
}

@media (max-width: 1100px) {
    .app-shell {
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: 16px;
        left: 16px;
        height: calc(100vh - 32px);
        max-height: calc(100vh - 32px);
        transform: translateX(-110%);
    }

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

    .sidebar.is-collapsed {
        width: var(--sidebar-width);
    }

    .icon-button.is-mobile {
        display: inline-flex;
    }


    .app-main {
        width: 100%;
        margin-left: 0;
    }

    .app-body--client .sidebar,
    .app-body--client .sidebar-overlay {
        display: none;
    }

    .app-body--client .icon-button.is-mobile {
        display: none;
    }

    .app-body--client .app-main {
        margin-left: 0;
        width: 100%;
        padding-bottom: 92px;
    }

    .app-body--client .mobile-bottom-nav {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 4px;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: 480px;
        bottom: 12px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        border-radius: 18px;
        background: var(--surface);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-soft);
        z-index: 70;
    }

    .app-body--client .mobile-bottom-nav .mobile-bottom-nav__link {
        flex: 1;
        min-width: 0;
        max-width: 80px;
    }
}

@media (max-width: 700px) {
    .app-body--client .topbar {
        flex-direction: row;
        align-items: center;
    }

    .app-body--client .topbar__left {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .app-body--client .topbar__left .page-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .app-body--client .topbar__menu-toggle {
        display: flex;
        flex-shrink: 0;
        align-self: center;
    }

    .app-body--client .topbar__right {
        position: relative;
        flex: 0;
    }

    .app-body--client .topbar__actions {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        flex-direction: column;
        align-items: stretch;
        min-width: 180px;
        padding: 8px;
        border-radius: var(--radius-lg);
        background: var(--surface);
        border: 1px solid var(--border-subtle);
        box-shadow: var(--shadow-soft);
        z-index: 50;
        display: none;
    }

    .app-body--client .topbar__actions.is-open {
        display: flex;
    }

    .app-body--client .topbar__actions .btn,
    .app-body--client .topbar__actions form {
        width: 100%;
        justify-content: flex-start;
    }

    .app-body--client .topbar__actions form button {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .app-body--client .topbar {
        flex-direction: row;
        align-items: center;
    }

    .app-body--client .topbar__left {
        flex: 1;
        min-width: 0;
    }

    .app-body--client .topbar__right {
        flex: 0;
    }

    .alert-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar__right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .search {
        width: 100%;
        min-width: 0;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .app-body {
        padding: 12px;
    }

    .app-shell {
        width: 100%;
    }

    .panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.app-content > * {
    width: 100%;
}

.panel-divider {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    margin: 24px 0;
}

.banner-config {
    display: grid;
    gap: 12px;
}

.banner-config .section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.banner-preview {
    display: grid;
    gap: 10px;
}

.banner-preview img {
    width: 100%;
    max-width: 560px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.banner-preview--login img {
    aspect-ratio: 16 / 9;
}

.banner-preview--dashboard img {
    aspect-ratio: 10 / 3;
}

.login-banner {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 24px;
}

.login-banner__content {
    width: min(960px, 96%);
    background: #0f172a;
    border-radius: 28px;
    overflow: hidden;
    color: #f8fafc;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
    display: grid;
}

.login-banner__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.login-banner__body {
    padding: 24px 28px 30px;
    display: grid;
    gap: 8px;
}

.login-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.dashboard-banner {
    display: grid;
    gap: 16px;
    background: #0f172a;
    border-radius: 22px;
    overflow: hidden;
    color: #f8fafc;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.dashboard-banner__image {
    width: 100%;
    aspect-ratio: 10 / 3;
    object-fit: cover;
}

.dashboard-banner__content {
    padding: 20px 24px 24px;
    display: grid;
    gap: 6px;
}
