@import url('https://fonts.googleapis.com/css?family=Jost:300,400,600,700&display=swap');

:root {
    --cor-fundo: #000000;
    --cor-fundo-dashboard: #060606;
    --cor-card: #0d0d0d;
    --cor-card-secundaria: #111111;
    --cor-card-terciaria: #141414;
    --cor-primaria: #d4af37;
    --cor-primaria-hover: #b8962f;
    --cor-borda: #161616;
    --cor-borda-clara: #222222;
    --cor-texto: #ffffff;
    --cor-texto-suave: #aaaaaa;
    --cor-texto-secundario: #777777;
    --cor-erro: #e54848;
    --cor-bg-erro: #2a0808;
    --raio-card: 32px;
    --raio-input: 14px;
    --sombra-card:
        0 45px 100px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-width: 100%;
    min-height: 100%;
    background: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    min-height: 100vh;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
}

.page-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    overflow-x: hidden;
    overflow-y: auto;
}

.page-scroll {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.bg-glow {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(
            circle,
            rgba(170, 119, 28, 0.07) 0%,
            rgba(0, 0, 0, 1) 75%
        );
    pointer-events: none;
}

.card-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    padding: 80px 50px;
    background: var(--cor-card);
    border: 1px solid var(--cor-borda);
    border-radius: var(--raio-card);
    box-shadow: var(--sombra-card);
    text-align: center;
}

.com-linha-topo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #bf953f,
            #fcf6ba,
            #aa771c,
            transparent
        );
}

/* Landing */

.landing-card {
    padding: 65px 50px;
    animation: landing-flutuar 4s ease-in-out infinite;
}

.landing-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.landing-logo img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
}

.landing-headline {
    margin: 0 0 4px;
    color: var(--cor-texto-suave);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.landing-divider {
    width: 100%;
    height: 1px;
    margin: 18px auto;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.5),
            transparent
        );
}

.landing-subline {
    margin: 0;
    color: var(--cor-texto-secundario);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.6;
    text-transform: uppercase;
}

@keyframes landing-flutuar {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        box-shadow:
            0 50px 100px rgba(212, 175, 55, 0.05),
            0 35px 80px rgba(0, 0, 0, 0.95);
    }
}

/* Formulários */

.label-vip {
    display: block;
    margin-bottom: 10px;
    color: var(--cor-texto-suave);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
}

.input-vip {
    width: 100%;
    padding: 15px 20px;
    background: var(--cor-fundo);
    border: 1px solid var(--cor-borda-clara);
    border-radius: var(--raio-input);
    color: var(--cor-texto);
    font-size: 15px;
    font-weight: 300;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.input-vip:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.1);
}

.input-vip:-webkit-autofill,
.input-vip:-webkit-autofill:hover,
.input-vip:-webkit-autofill:active {
    -webkit-text-fill-color: var(--cor-texto);
    caret-color: var(--cor-texto);
    border-color: var(--cor-borda-clara);
    -webkit-box-shadow:
        0 0 0 1000px var(--cor-fundo) inset;
    box-shadow:
        0 0 0 1000px var(--cor-fundo) inset;
    transition:
        background-color 9999s ease-out 0s;
}

.input-vip:-webkit-autofill:focus {
    border-color: var(--cor-primaria);
    -webkit-box-shadow:
        0 0 0 1000px var(--cor-fundo) inset,
        0 0 12px rgba(212, 175, 55, 0.1);
    box-shadow:
        0 0 0 1000px var(--cor-fundo) inset,
        0 0 12px rgba(212, 175, 55, 0.1);
}

.input-vip:autofill {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    caret-color: var(--cor-texto);
    border-color: var(--cor-borda-clara);
    box-shadow:
        0 0 0 1000px var(--cor-fundo) inset;
}

.input-vip:autofill:focus {
    border-color: var(--cor-primaria);
    box-shadow:
        0 0 0 1000px var(--cor-fundo) inset,
        0 0 12px rgba(212, 175, 55, 0.1);
}

.btn-vip {
    width: 100%;
    padding: 16px;
    background: var(--cor-primaria);
    border: 0;
    border-radius: var(--raio-input);
    color: #000000;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

.btn-vip:hover {
    background: var(--cor-primaria-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.btn-vip:active {
    transform: translateY(0);
}

.btn-vip:disabled {
    cursor: wait;
    opacity: 0.6;
}

.texto-link {
    color: var(--cor-texto-secundario);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.texto-link:hover {
    color: var(--cor-primaria);
}

/* Login */

.login-card {
    max-width: 520px;
    padding: 48px 50px 44px;
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.login-logo img {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
}

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

.login-password-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.login-password-header .label-vip {
    margin-bottom: 0;
}

.toast-erro {
    position: fixed;
    top: -100px;
    left: 50%;
    z-index: 9999;
    max-width: calc(100% - 32px);
    padding: 14px 28px;
    opacity: 0;
    transform: translateX(-50%);
    background: var(--cor-bg-erro);
    border: 1px solid var(--cor-erro);
    border-radius: 16px;
    color: var(--cor-erro);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition:
        top 0.4s ease,
        opacity 0.4s ease;
}

.toast-erro.mostrar {
    top: 30px;
    opacity: 1;
}

@keyframes login-shake {
    0%,
    100% {
        transform: translateX(0);
    }

    25%,
    75% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }
}

.shake-error {
    animation: login-shake 0.4s ease-in-out;
}

/* Office do agente */

.office-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 24px);
    max-width: 380px;
    margin: 0 auto;
    padding: 10px 0 80px;
}

.office-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 4px;
}

.office-logo img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
}

.office-card {
    position: relative;
    width: 100%;
    padding-bottom: 24px;
    overflow: hidden;
    background: var(--cor-card);
    border: 1px solid var(--cor-borda);
    border-radius: var(--raio-card);
    box-shadow: var(--sombra-card);
}

.office-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #bf953f,
            #fcf6ba,
            #aa771c,
            transparent
        );
    pointer-events: none;
}

.office-header {
    position: relative;
    padding: 20px 64px;
    background: var(--cor-card-secundaria);
    border-bottom: 1px solid var(--cor-borda-clara);
    text-align: center;
}

.office-title {
    margin: 0;
    color: var(--cor-primaria);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.office-welcome {
    margin: 4px 0 0;
    color: #888888;
    font-size: 12px;
}

.office-logout {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #c93c3c;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 20px 16px 16px;
}

.office-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 24px 12px;
    background: var(--cor-card-terciaria);
    border: 1px solid var(--cor-borda-clara);
    border-radius: 16px;
    color: var(--cor-texto);
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.office-button:hover {
    border-color: var(--cor-primaria);
    background: #171717;
}

.office-button:active {
    transform: scale(0.96);
}

.office-button-icon {
    margin-bottom: 8px;
    font-size: 36px;
    line-height: 1;
}

.office-button-label {
    color: #d4d4d4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

/* Dashboard do gestor */

.dashboard-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--cor-fundo-dashboard);
}

.dashboard-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: var(--cor-card-secundaria);
    border-bottom: 1px solid var(--cor-borda-clara);
}

.dashboard-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 32px, 1280px);
    min-height: 80px;
    margin: 0 auto;
}

.dashboard-brand {
    display: flex;
    align-items: center;
    min-width: 260px;
}

.dashboard-brand img {
    display: block;
    width: auto;
    max-width: 280px;
    max-height: 72px;
}

.dashboard-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-menu a {
    padding: 10px 14px;
    color: #999999;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.dashboard-menu a:hover,
.dashboard-menu a.ativo {
    color: var(--cor-texto);
}

.dashboard-menu a.ativo {
    border-bottom: 2px solid var(--cor-primaria);
}

.dashboard-logout {
    color: #777777;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.dashboard-logout:hover {
    color: #be3535;
}

.dashboard-mobile-button {
    display: none;
    padding: 8px;
    background: transparent;
    border: 0;
    color: #aaaaaa;
    cursor: pointer;
}

.dashboard-mobile-button svg {
    display: block;
    width: 24px;
    height: 24px;
}

.dashboard-mobile-menu {
    display: none;
    padding: 8px 16px 16px;
    background: var(--cor-card-secundaria);
    border-top: 1px solid var(--cor-borda-clara);
}

.dashboard-mobile-menu.aberto {
    display: block;
}

.dashboard-mobile-menu a {
    display: block;
    padding: 12px;
    color: #cccccc;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.dashboard-mobile-menu a.ativo {
    color: var(--cor-primaria);
    background: #1a1a1a;
    border-radius: 8px;
}

.dashboard-main {
    flex: 1;
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
    padding: 40px 0;
}

.dashboard-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cor-borda-clara);
}

.dashboard-header h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
}

.dashboard-header h1 span {
    color: var(--cor-primaria);
    font-weight: 600;
}

.dashboard-header p {
    margin: 6px 0 0;
    color: #888888;
    font-size: 14px;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.dashboard-panel {
    padding: 24px;
    background: var(--cor-card-secundaria);
    border: 1px solid var(--cor-borda-clara);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.dashboard-panel:hover {
    border-color: var(--cor-primaria);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.dashboard-panel-label {
    margin: 0;
    color: #777777;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dashboard-panel-value {
    margin: 8px 0 0;
    color: var(--cor-primaria);
    font-size: 30px;
    font-weight: 700;
}

.dashboard-welcome-panel {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dashboard-welcome-icon {
    margin-bottom: 16px;
    color: var(--cor-primaria);
    font-size: 36px;
}

.dashboard-welcome-panel h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.dashboard-welcome-panel p {
    max-width: 520px;
    margin: 8px 0 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.6;
}

.dashboard-footer {
    width: 100%;
    padding: 24px 16px;
    background: var(--cor-card-secundaria);
    border-top: 1px solid var(--cor-borda-clara);
    color: #666666;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}


@media (min-width: 521px) and (max-height: 820px) {
    .page-centered {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .login-card {
        padding-top: 42px;
        padding-bottom: 40px;
    }
}

@media (max-width: 900px) {
    .dashboard-brand {
        min-width: 0;
    }

    .dashboard-brand img {
        max-width: 220px;
        max-height: 60px;
    }

    .dashboard-menu,
    .dashboard-logout {
        display: none;
    }

    .dashboard-mobile-button {
        display: block;
    }

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

@media (max-width: 520px) {
    body.page-centered {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        padding:
            max(10px, env(safe-area-inset-top))
            12px
            max(10px, env(safe-area-inset-bottom));
        overflow: hidden;
        overscroll-behavior: none;
    }

    .card-container,
    .landing-card {
        padding: 48px 24px;
    }

    .login-card {
        padding: 32px 24px 30px;
        transform: translateY(-8px);
    }

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

    .login-form {
        gap: 18px;
    }

    .login-card .label-vip,
    .login-password-header {
        margin-bottom: 8px;
    }

    .landing-logo {
        margin-bottom: 24px;
    }

    .landing-headline {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .landing-subline {
        font-size: 12px;
    }

    .office-logo img {
        max-width: 330px;
    }

    .dashboard-main {
        padding: 28px 0;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dashboard-header h1 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   TEMA LENTEVIP
   Dark permanece o padrão. Light usa branco quente e cinza-neblina.
   ============================================================ */

html[data-theme="dark"] {
    color-scheme: dark;
}

html[data-theme="light"] {
    color-scheme: light;

    --cor-fundo: #e9ebec;
    --cor-fundo-dashboard: #eef0f1;
    --cor-card: #fdfdfc;
    --cor-card-secundaria: #f7f8f8;
    --cor-card-terciaria: #eceeef;
    --cor-primaria: #b58a20;
    --cor-primaria-hover: #956f13;
    --cor-borda: #dde0e1;
    --cor-borda-clara: #d1d5d6;
    --cor-texto: #202426;
    --cor-texto-suave: #4e5558;
    --cor-texto-secundario: #737a7d;
    --cor-erro: #bf3d3d;
    --cor-bg-erro: #fff1f1;
    --sombra-card:
        0 24px 72px rgba(32, 38, 41, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

html,
body,
.dashboard-page,
.dashboard-nav,
.dashboard-footer,
.dashboard-panel,
.office-card,
.office-header,
.office-button,
.card-container,
.input-vip {
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.theme-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 88px;
    min-height: 34px;
    padding: 5px 8px;
    border: 1px solid var(--cor-borda-clara);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--cor-texto-secundario);
    cursor: pointer;
}

.theme-switch:focus-visible {
    outline: 2px solid rgba(212, 175, 55, 0.42);
    outline-offset: 2px;
}

.theme-switch-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    opacity: 0.42;
    transition:
        color 0.18s ease,
        opacity 0.18s ease;
}

.theme-switch-icon svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.theme-switch-moon svg path {
    fill: currentColor;
    stroke: none;
}

.theme-switch-track {
    position: relative;
    display: block;
    width: 34px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
    transition:
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.theme-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d9d9d6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.34);
    transform: translateX(0);
    transition:
        background-color 0.2s ease,
        transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html[data-theme="dark"] .theme-switch-moon,
html[data-theme="light"] .theme-switch-sun {
    color: var(--cor-primaria);
    opacity: 1;
}

html[data-theme="light"] .theme-switch {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 5px 18px rgba(38, 35, 27, 0.06);
}

html[data-theme="light"] .theme-switch-track {
    border-color: rgba(181, 139, 22, 0.28);
    background: rgba(181, 139, 22, 0.16);
}

html[data-theme="light"] .theme-switch-thumb {
    background: #ffffff;
    transform: translateX(16px);
}

.dashboard-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.dashboard-mobile-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 7px 0 10px;
    padding: 11px 12px;
    border: 1px solid var(--cor-borda-clara);
    border-radius: 10px;
    color: var(--cor-texto-secundario);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.office-theme-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 10px;
    margin: 8px 0 2px;
    color: var(--cor-texto-secundario);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

html[data-theme="light"] .bg-glow {
    background:
        radial-gradient(
            circle at 50% 14%,
            rgba(181, 138, 32, 0.10) 0%,
            rgba(242, 244, 244, 0.96) 52%,
            #e7e9ea 100%
        );
}

html[data-theme="light"] .dashboard-nav,
html[data-theme="light"] .dashboard-footer {
    box-shadow: 0 7px 24px rgba(38, 35, 27, 0.045);
}

html[data-theme="light"] .dashboard-menu a {
    color: #6e6b64;
}

html[data-theme="light"] .dashboard-menu a:hover,
html[data-theme="light"] .dashboard-menu a.ativo {
    color: #1d1d1b;
}

html[data-theme="light"] .dashboard-logout {
    color: #76736c;
}

html[data-theme="light"] .dashboard-mobile-button {
    color: #5e5b55;
}

html[data-theme="light"] .dashboard-mobile-menu a {
    color: #4d4a44;
}

html[data-theme="light"] .dashboard-mobile-menu a.ativo {
    background: #e5e8e9;
}

html[data-theme="light"] .dashboard-panel {
    box-shadow: 0 10px 30px rgba(38, 35, 27, 0.07);
}

html[data-theme="light"] .dashboard-panel:hover {
    box-shadow: 0 12px 34px rgba(181, 139, 22, 0.10);
}

html[data-theme="light"] .dashboard-panel-label,
html[data-theme="light"] .dashboard-header p,
html[data-theme="light"] .dashboard-welcome-panel p,
html[data-theme="light"] .dashboard-footer,
html[data-theme="light"] .office-welcome {
    color: #77746d;
}

html[data-theme="light"] .office-button {
    box-shadow: 0 6px 18px rgba(38, 35, 27, 0.055);
}

html[data-theme="light"] .office-button:hover {
    background: #e5e8e9;
}

html[data-theme="light"] .office-button-label {
    color: #3d3b37;
}

html[data-theme="light"] .input-vip {
    background: #ffffff;
}

html[data-theme="light"] .toast-erro {
    box-shadow: 0 18px 36px rgba(120, 25, 25, 0.14);
}

@media (max-width: 900px) {
    .dashboard-theme-desktop {
        display: none;
    }

    .dashboard-actions {
        gap: 4px;
    }
}

@media (min-width: 901px) {
    .dashboard-mobile-theme {
        display: none;
    }
}


.theme-save-error {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 500;
    max-width: min(360px, calc(100% - 36px));
    padding: 12px 15px;
    border: 1px solid rgba(239, 68, 68, 0.32);
    border-radius: 11px;
    background: var(--cor-card);
    color: var(--cor-erro);
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
    box-shadow: var(--sombra-card);
}

.theme-save-error.mostrar {
    opacity: 1;
    transform: translateY(0);
}
