/* /Components/Layout/AuthLayout.razor.rz.scp.css */
/* Telas de conta — Tinta & Latão: marca em tinta à esquerda, formulário no papel à direita. */

.auth-shell[b-8pnnzr1go0] { min-height: 100dvh; background: var(--ivory); }

.auth-split[b-8pnnzr1go0] {
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 860px) {
    .auth-split[b-8pnnzr1go0] { grid-template-columns: 42% 58%; }
}

.auth-aside[b-8pnnzr1go0] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: clamp(1.4rem, 3vw, 2.2rem);
    background: var(--sidebar-bg);
    color: var(--sidebar-ink);
}

.auth-aside-top[b-8pnnzr1go0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.auth-aside-foot[b-8pnnzr1go0] { margin-top: auto; }

.auth-tagline[b-8pnnzr1go0] {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0;
}

.auth-claim[b-8pnnzr1go0] {
    max-width: 20rem;
    margin: .8rem 0 0;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--sidebar-muted);
    text-wrap: pretty;
}

.auth-brand[b-8pnnzr1go0] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -.02em;
    color: #fff;
    text-decoration: none;
}
.auth-brand:hover[b-8pnnzr1go0] { color: #fff; }

.auth-brand-mark[b-8pnnzr1go0] {
    display: inline-grid;
    place-items: center;
    flex: none;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}
.auth-brand-mark svg[b-8pnnzr1go0] { width: 1.1rem; height: 1.1rem; }

.auth-brand-dot[b-8pnnzr1go0] { color: var(--sidebar-accent); }   /* ".ai" em latão */

/* O logotipo é UM item flex: texto solto viraria item anônimo e o gap do lockup
   abriria um espaço no meio da palavra ("SeMove .ai"). */
.auth-brand-word[b-8pnnzr1go0] { white-space: nowrap; }

/* O toggle de tema mora sobre a tinta aqui, e não sobre o papel do painel: as cores de
   superfície do app.css o deixariam como um bloco claro solto no meio da coluna escura. */
.auth-aside .theme-toggle[b-8pnnzr1go0] {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
    color: var(--sidebar-muted);
}
.auth-aside .theme-toggle:hover[b-8pnnzr1go0] {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.auth-panel[b-8pnnzr1go0] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 4vw, 3rem);
}

.auth-card[b-8pnnzr1go0] { width: min(400px, 100%); }

.auth-card[b-8pnnzr1go0]  h1 { font-size: 1.4rem; margin-bottom: .3rem; }
.auth-card[b-8pnnzr1go0]  .auth-sub { color: var(--muted); font-size: .85rem; margin-bottom: 1.6rem; }
.auth-card[b-8pnnzr1go0]  .form-floating > label { color: var(--muted); }
.auth-card[b-8pnnzr1go0]  hr { border-color: var(--border); opacity: 1; margin: 1.4rem 0; }
.auth-card[b-8pnnzr1go0]  .btn-lg { font-size: .95rem; padding: .7rem 1rem; }

.auth-foot[b-8pnnzr1go0] { margin: 1.4rem 0 0; font-size: .78rem; color: var(--muted); }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Casca do painel — Tinta & Latão.
   A altura da topbar continua 3.75rem: /conversas depende desse valor em
   calc(100vh - 3.75rem) no app.css. Se mudar aqui, mude lá também. */

.page[b-cd8snigmfv] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-cd8snigmfv] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sidebar[b-cd8snigmfv] {
    display: flex;
    flex-direction: column;
    background: var(--sidebar-bg);   /* chapado: o gradiente saiu */
    color: var(--sidebar-ink);
}

.topbar[b-cd8snigmfv] {
    height: 3.75rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 0 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 5;
}

.content[b-cd8snigmfv] {
    width: 100%;
    max-width: 1280px;
    padding: 1.5rem 1.25rem 3.5rem;
}

@media (min-width: 641px) {
    .page[b-cd8snigmfv] {
        flex-direction: row;
    }

    .sidebar[b-cd8snigmfv] {
        width: 240px;                /* era 268px: 28px devolvidos ao conteúdo */
        flex-shrink: 0;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    /* No tema escuro a sidebar é o ponto mais fundo da tela; o fio a separa do conteúdo. */
    [data-bs-theme="dark"] .sidebar[b-cd8snigmfv] {
        border-right: 1px solid var(--border);
    }

    .content[b-cd8snigmfv] {
        padding: 1.9rem 2rem 3.5rem;
    }
}

#blazor-error-ui[b-cd8snigmfv] {
    color-scheme: light only;
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: .65rem 1.25rem .7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .reload[b-cd8snigmfv] {
        margin-left: .5rem;
        font-weight: 600;
    }

    #blazor-error-ui .dismiss[b-cd8snigmfv] {
        cursor: pointer;
        position: absolute;
        right: .85rem;
        top: .6rem;
        display: inline-flex;
        width: 1rem;
        height: 1rem;
        opacity: .7;
    }

    #blazor-error-ui .dismiss:hover[b-cd8snigmfv] { opacity: 1; }
    #blazor-error-ui .dismiss svg[b-cd8snigmfv] { width: 100%; height: 100%; }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ===== Marca ===== */
.sidebar-brand[b-qllfocyptv] {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1.15rem 1rem 1.4rem;
    border-bottom: 0;   /* a sidebar é chapada: o fio embaixo da marca sobrava */
}

.brand[b-qllfocyptv] {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    color: var(--sidebar-ink);
}

.brand-mark[b-qllfocyptv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;   /* nome longo de tenant não pode espremer o tile */
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

    .brand-mark svg[b-qllfocyptv] {
        width: 1.15rem;
        height: 1.15rem;
    }

.brand-text[b-qllfocyptv] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

/* O logotipo é a linha forte; a empresa em operação vira a legenda. */
.brand-word[b-qllfocyptv] {
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #fff;
    white-space: nowrap;   /* "SeMove" e ".ai" são UMA palavra */
}

.brand-tenant[b-qllfocyptv] {
    font-size: .72rem;
    color: var(--sidebar-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 10.5rem;
}

/* ===== Toggler (mobile) ===== */
.navbar-toggler[b-qllfocyptv] {
    appearance: none;
    cursor: pointer;
    width: 2.75rem;
    height: 2.25rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.4rem rgba(255, 255, 255, 0.06);
}

    .navbar-toggler:checked[b-qllfocyptv] {
        background-color: rgba(255, 255, 255, 0.18);
    }

/* ===== Seções ===== */
.nav-section[b-qllfocyptv] {
    padding: 1rem 1.35rem .4rem;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--sidebar-muted);
    opacity: 1;
}

/* ===== Itens de navegação ===== */
.nav-item[b-qllfocyptv] {
    padding: 0 .75rem;
    margin-bottom: .1rem;
    font-size: .85rem;
    position: relative;
}

    .nav-item[b-qllfocyptv]  .nav-link {
        color: var(--sidebar-muted);
        background: none;
        border: none;
        border-radius: 8px;
        height: 2.35rem;
        display: flex;
        align-items: center;
        padding: 0 .85rem;
        width: 100%;
        font-weight: 400;
        position: relative;
        transition: background .15s ease, color .15s ease;
    }

        .nav-item[b-qllfocyptv]  .nav-link:hover {
            background: var(--sidebar-hover);
            color: var(--sidebar-ink);
        }

    .nav-item[b-qllfocyptv]  a.active {
        background: var(--sidebar-active);
        color: #fff;
        font-weight: 600;
    }

        /* Marcador do item ativo: dentro do item, em latão (era barra índigo à esquerda, fora) */
        .nav-item[b-qllfocyptv]  a.active::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            border-radius: 0;
            background: var(--sidebar-accent);
        }

/* Badge de conversas novas (alerta de handoff) no item Conversas. Terracota da fila humana;
   cor fixa como o resto deste arquivo — a sidebar é escura nos dois temas. */
.nav-badge-nova[b-qllfocyptv] {
    margin-left: auto;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 .32rem;
    border-radius: 999px;
    background: #a33a32;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ===== Rodapé (usuário) ===== */
.sidebar-footer[b-qllfocyptv] {
    margin-top: auto;
    padding: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.user-chip[b-qllfocyptv] {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .6rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--sidebar-ink);
    transition: background .15s ease;
}

    .user-chip:hover[b-qllfocyptv] {
        background: var(--sidebar-hover);
        color: var(--sidebar-ink);
    }

.user-avatar[b-qllfocyptv] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
}

.user-info[b-qllfocyptv] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.user-name[b-qllfocyptv] {
    font-weight: 600;
    font-size: .82rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 11.5rem;
}

.user-sub[b-qllfocyptv] {
    font-size: .68rem;
    color: var(--sidebar-muted);
}

.logout-form[b-qllfocyptv] {
    margin-top: .35rem;
}

.logout-btn[b-qllfocyptv] {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--sidebar-muted);
    padding: .5rem .6rem;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

    .logout-btn:hover[b-qllfocyptv] {
        background: var(--sidebar-hover);
        color: #fff;
    }

/* ===== Rolagem / colapso ===== */
.nav-scrollable[b-qllfocyptv] {
    display: none;
    flex-direction: column;
}

.navbar-toggler:checked ~ .nav-scrollable[b-qllfocyptv] {
    display: flex;
}

@media (min-width: 641px) {
    .navbar-toggler[b-qllfocyptv] {
        display: none;
    }

    .nav-scrollable[b-qllfocyptv] {
        display: flex;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }
}

/* ===== Ícones (SVG brancos) ===== */
.bi[b-qllfocyptv] {
    display: inline-block;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: .6rem;
    top: -1px;
    background-size: cover;
    opacity: .85;
}

.bi-house-door-fill-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-door-open-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-door-open' viewBox='0 0 16 16'%3E%3Cpath d='M8.5 10c-.276 0-.5-.448-.5-1s.224-1 .5-1 .5.448.5 1-.224 1-.5 1'/%3E%3Cpath d='M10.828.122A.5.5 0 0 1 11 .5V1h.5A1.5 1.5 0 0 1 13 2.5V15h1.5a.5.5 0 0 1 0 1h-13a.5.5 0 0 1 0-1H3V1.5a.5.5 0 0 1 .43-.495l7-1a.5.5 0 0 1 .398.117M11.5 2H11v13h1V2.5a.5.5 0 0 0-.5-.5M4 1.934V15h6V1.077z'/%3E%3C/svg%3E");
}

.bi-journal-check-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-journal-check' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10.854 6.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 8.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z'/%3E%3C/svg%3E");
}

.bi-calendar3-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar3' viewBox='0 0 16 16'%3E%3Cpath d='M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857z'/%3E%3Cpath d='M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2m-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2m3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3C/svg%3E");
}

.bi-chat-dots-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chat-dots' viewBox='0 0 16 16'%3E%3Cpath d='M5 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0m4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0m3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2'/%3E%3Cpath d='m2.165 15.803.02-.004c1.83-.363 2.948-.842 3.468-1.105A9 9 0 0 0 8 15c4.418 0 8-3.134 8-7s-3.582-7-8-7-8 3.134-8 7c0 1.76.743 3.37 1.97 4.6a10.4 10.4 0 0 1-.524 2.318l-.003.011a11 11 0 0 1-.244.637c-.079.186.074.394.273.362a22 22 0 0 0 .693-.125m.8-3.108a1 1 0 0 0-.287-.801C1.618 10.83 1 9.468 1 8c0-3.192 3.004-6 7-6s7 2.808 7 6-3.004 6-7 6a8 8 0 0 1-2.088-.272 1 1 0 0 0-.711.074c-.387.196-1.24.57-2.634.893a11 11 0 0 0 .398-2z'/%3E%3C/svg%3E");
}

.bi-whatsapp-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-whatsapp' viewBox='0 0 16 16'%3E%3Cpath d='M13.601 2.326A7.85 7.85 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.9 7.9 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93A7.9 7.9 0 0 0 13.6 2.326zM7.994 14.521a6.6 6.6 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.56 6.56 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.114.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.114-.198-.011-.304.088-.403.087-.088.197-.232.296-.346.1-.114.133-.198.198-.33.065-.134.034-.248-.015-.347-.05-.099-.445-1.076-.612-1.47-.16-.389-.323-.335-.445-.34-.114-.007-.247-.007-.38-.007a.73.73 0 0 0-.529.247c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.326 1.129.418.475.152.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z'/%3E%3C/svg%3E");
}

.bi-gear-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-gear' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492M5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0'/%3E%3Cpath d='M9.796.099c.208-.86 1.42-.86 1.63 0l.146.598a1.63 1.63 0 0 0 2.34.97l.527-.295c.755-.424 1.612.433 1.188 1.188l-.295.527a1.62 1.62 0 0 0 .97 2.34l.598.145c.86.21.86 1.423 0 1.632l-.598.145a1.63 1.63 0 0 0-.97 2.341l.295.526c.424.755-.433 1.612-1.188 1.189l-.527-.295a1.63 1.63 0 0 0-2.34.97l-.146.598c-.209.86-1.421.86-1.63 0l-.145-.598a1.63 1.63 0 0 0-2.341-.97l-.527.295c-.755.423-1.612-.434-1.189-1.189l.295-.527a1.63 1.63 0 0 0-.969-2.34l-.598-.145c-.86-.21-.86-1.422 0-1.632l.598-.145a1.63 1.63 0 0 0 .969-2.34l-.295-.527c-.423-.755.434-1.612 1.189-1.189l.527.295a1.63 1.63 0 0 0 2.34-.969zM8 1.05a.92.92 0 0 0-.913.807l-.146.598A2.63 2.63 0 0 1 3.63 3.021l-.527-.295a.92.92 0 0 0-.673-.673l.295.527A2.63 2.63 0 0 1 1.463 6.34l-.598.145a.92.92 0 0 0 0 1.79l.598.145A2.63 2.63 0 0 1 2.695 12.4l-.295.527a.92.92 0 0 0 .673.673l.527-.295a2.63 2.63 0 0 1 3.311 1.566l.146.598a.92.92 0 0 0 1.79 0l.145-.598a2.63 2.63 0 0 1 3.312-1.566l.527.295a.92.92 0 0 0 .673-.673l-.295-.527a2.63 2.63 0 0 1 1.566-3.311l.598-.146a.92.92 0 0 0 0-1.789l-.598-.145a2.63 2.63 0 0 1-1.566-3.312l.295-.527a.92.92 0 0 0-.673-.673l-.527.295A2.63 2.63 0 0 1 9.13 1.463z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.bi-clock-history-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-clock' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 0-1 0V9a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 8.71z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

.bi-cash-coin-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-cash-coin' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M11 15a4 4 0 1 0 0-8 4 4 0 0 0 0 8m5-4a5 5 0 1 1-10 0 5 5 0 0 1 10 0'/%3E%3Cpath d='M9.438 11.944c.047.596.518 1.06 1.363 1.116v.44h.375v-.443c.875-.061 1.386-.529 1.386-1.207 0-.618-.39-.936-1.09-1.1l-.296-.07v-1.2c.376.043.614.248.671.532h.658c-.047-.575-.54-1.024-1.329-1.073V8.5h-.375v.45c-.747.073-1.255.522-1.255 1.158 0 .562.378.92 1.007 1.066l.248.061v1.272c-.384-.058-.639-.27-.696-.563h-.668z'/%3E%3Cpath d='M1 0a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h4.083q.088-.517.258-1H3a2 2 0 0 0-2-2V3a2 2 0 0 0 2-2h7a2 2 0 0 0 2 2v.083q.483.17 1 .258V1a1 1 0 0 0-1-1z'/%3E%3Cpath d='M9.998 5.083 10 5a2 2 0 1 0-3.132 1.65 6 6 0 0 1 3.13-1.567'/%3E%3C/svg%3E");
}

/* Novidades (bi-stars): três brilhos — "o que há de novo". */
.bi-stars-nav-menu[b-qllfocyptv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-stars' viewBox='0 0 16 16'%3E%3Cpath d='M7.657 6.247c.11-.33.576-.33.686 0l.645 1.937a2.89 2.89 0 0 0 1.829 1.828l1.936.645c.33.11.33.576 0 .686l-1.937.645a2.89 2.89 0 0 0-1.828 1.829l-.645 1.936a.361.361 0 0 1-.686 0l-.645-1.937a2.89 2.89 0 0 0-1.828-1.828l-1.937-.645a.361.361 0 0 1 0-.686l1.937-.645a2.89 2.89 0 0 0 1.828-1.828zM3.794 1.148a.217.217 0 0 1 .412 0l.387 1.162c.173.518.579.924 1.097 1.097l1.162.387a.217.217 0 0 1 0 .412l-1.162.387A1.73 1.73 0 0 0 4.593 5.69l-.387 1.162a.217.217 0 0 1-.412 0L3.407 5.69A1.73 1.73 0 0 0 2.31 4.593l-1.162-.387a.217.217 0 0 1 0-.412l1.162-.387A1.73 1.73 0 0 0 3.407 2.31zM10.863.099a.145.145 0 0 1 .274 0l.258.774c.115.346.386.617.732.732l.774.258a.145.145 0 0 1 0 .274l-.774.258a1.16 1.16 0 0 0-.732.732l-.258.774a.145.145 0 0 1-.274 0l-.258-.774a1.16 1.16 0 0 0-.732-.732L9.1 2.137a.145.145 0 0 1 0-.274l.774-.258c.346-.115.617-.386.732-.732z'/%3E%3C/svg%3E");
}

/* "Novo" no item Novidades: pílula neutra — sem tinta de significado (não é fila nem dinheiro),
   só o contraste sobre o fundo escuro. Apaga quando o usuário abre a página. */
.nav-badge-novo[b-qllfocyptv] {
    margin-left: auto;
    padding: .16rem .42rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--sidebar-ink);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    line-height: 1;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-43fbbfbjon],
.components-reconnect-repeated-attempt-visible[b-43fbbfbjon],
.components-reconnect-failed-visible[b-43fbbfbjon],
.components-pause-visible[b-43fbbfbjon],
.components-resume-failed-visible[b-43fbbfbjon],
.components-rejoining-animation[b-43fbbfbjon] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-retrying[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-failed[b-43fbbfbjon],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-43fbbfbjon] {
    display: block;
}


#components-reconnect-modal[b-43fbbfbjon] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-43fbbfbjon 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-43fbbfbjon 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-43fbbfbjon 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-43fbbfbjon]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-43fbbfbjon 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-43fbbfbjon {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-43fbbfbjon {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-43fbbfbjon {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-43fbbfbjon] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-43fbbfbjon] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-43fbbfbjon] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-43fbbfbjon] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-43fbbfbjon] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-43fbbfbjon] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-43fbbfbjon] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-43fbbfbjon 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-43fbbfbjon] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-43fbbfbjon {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/TenantSwitcher.razor.rz.scp.css */
/* A topbar alinha à direita; o seletor fica na ponta oposta, longe do botão de tema. */
.tenant-switch[b-1ufn7164lj] {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0;
    margin-right: auto;
}

.tenant-switch-label[b-1ufn7164lj] {
    margin: 0;
    font-size: .7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

.tenant-switch select[b-1ufn7164lj] {
    min-width: 11rem;
    max-width: 18rem;
    background-color: var(--surface);
    color: var(--ink);
    border-color: var(--border);
}
/* /Components/Pages/Landing.razor.rz.scp.css */
/* ============================================================
   Landing pública SeMove.ai — "editorial em papel + conversa viva".
   Hero em papel quente (o mesmo do painel) com um WhatsApp que se
   digita sozinho em CSS puro; as seções usam os tokens do app.
   Uma tinta = um significado: tinta = ação e IA · latão = dinheiro ·
   verde = pago. Verde-WhatsApp só no botão de contato.
   ============================================================ */

.lp[b-qpte4j8cr9] {
    /* Paleta própria do hero/band (constante nos dois temas).
       Os NOMES vêm da versão noturna anterior; os valores agora são de papel. */
    --lp-night: #f6f4f0;         /* o "fundo" da landing agora é papel */
    --lp-night-2: #fffefb;
    --lp-ink-dark: #10203a;      /* texto sobre o papel (nome mantido por compatibilidade) */
    --lp-muted-dark: #5f6b7e;
    --lp-line-dark: #e5e1d9;
    --lp-indigo: #16386b;        /* tinta */
    --lp-emerald: #b4863b;       /* latão */
    --lp-wa: #146b45;            /* verde de WhatsApp, escurecido para fundo claro */
    --lp-wa-deep: #0f5434;
    --lp-wa-ink: #ffffff;

    /* Ritmo */
    --lp-cut: clamp(2rem, 4vw, 3.5rem);   /* altura dos cortes diagonais */
    --lp-radius: 10px;

    font-family: var(--font-body);
    color: var(--ink);
    background: var(--ivory);
    overflow-x: clip;
}

/* FocusOnNavigate aponta para o h1: sem anel de foco na vitrine. */
.lp h1:focus[b-qpte4j8cr9] { outline: none; }

.lp h1[b-qpte4j8cr9], .lp h2[b-qpte4j8cr9], .lp h3[b-qpte4j8cr9] {
    font-family: var(--font-display);
    letter-spacing: -.03em;
    text-wrap: balance;
}

.lp-container[b-qpte4j8cr9] {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.lp-container-narrow[b-qpte4j8cr9] { max-width: 780px; }

.lp-ico[b-qpte4j8cr9] {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

/* ===== Navegação (flutua sobre o hero) ===== */
.lp-nav[b-qpte4j8cr9] {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    max-width: 1180px;
    margin-inline: auto;
    padding: 1.1rem clamp(1.1rem, 4vw, 2rem);
}

.lp-brand[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.22rem;
    letter-spacing: -.04em;
    color: var(--lp-ink-dark);
    text-decoration: none;
}
.lp-brand:hover[b-qpte4j8cr9] { color: var(--lp-ink-dark); }

.lp-brand-mark[b-qpte4j8cr9] {
    display: inline-grid;
    place-items: center;
    flex: none;
    width: 2rem;
    height: 2rem;
    border-radius: 9px;
    background: #10203a;
    color: #fff;
}
.lp-brand-mark svg[b-qpte4j8cr9] { width: 1.25rem; height: 1.25rem; }

/* Latão profundo: o #b4863b do token fica em 2,98:1 sobre o papel — abaixo do mínimo
   até para texto grande. Vale para a marca da nav e a do rodapé. */
.lp-brand-dot[b-qpte4j8cr9] { color: #8a6524; }

/* O logotipo é UM item flex: texto solto viraria item anônimo e o gap do lockup
   abriria um espaço no meio da palavra ("SeMove .ai"). */
.lp-brand-word[b-qpte4j8cr9] { white-space: nowrap; }

.lp-nav-links[b-qpte4j8cr9] {
    display: flex;
    gap: 1.4rem;
    margin-inline: auto;
}
.lp-nav-links a[b-qpte4j8cr9] {
    color: var(--lp-muted-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    transition: color .15s ease;
}
.lp-nav-links a:hover[b-qpte4j8cr9] { color: var(--lp-ink-dark); }

.lp-nav-actions[b-qpte4j8cr9] {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-left: auto;
}
.lp-nav .lp-nav-actions[b-qpte4j8cr9] { margin-left: 0; }
.lp-nav-links + .lp-nav-actions[b-qpte4j8cr9] { margin-left: 0; }

/* ===== Botões ===== */
.lp-btn[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .78rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .005em;
    text-decoration: none;
    cursor: pointer;
    transition: transform .14s ease, box-shadow .18s ease, background .18s ease,
                border-color .18s ease, color .18s ease;
}
.lp-btn:active[b-qpte4j8cr9] { transform: translateY(1px) scale(.99); }
.lp-btn:focus-visible[b-qpte4j8cr9] {
    outline: 3px solid color-mix(in srgb, var(--lp-emerald) 65%, transparent);
    outline-offset: 2px;
}

.lp-btn-wa[b-qpte4j8cr9] {
    background: var(--lp-wa);
    color: var(--lp-wa-ink);
    box-shadow: none;
}
.lp-btn-wa:hover[b-qpte4j8cr9] {
    background: var(--lp-wa-deep);
    color: var(--lp-wa-ink);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 107, 69, .22);
}

.lp-btn-ghost[b-qpte4j8cr9] {
    background: var(--lp-night-2);
    border-color: var(--lp-line-dark);
    color: var(--lp-ink-dark);
}
.lp-btn-ghost:hover[b-qpte4j8cr9] {
    border-color: color-mix(in srgb, var(--lp-indigo) 45%, transparent);
    background: var(--lp-night-2);
    color: var(--lp-indigo);
}

.lp-btn-sm[b-qpte4j8cr9] { padding: .5rem .95rem; font-size: .88rem; }
.lp-btn-lg[b-qpte4j8cr9] { padding: .95rem 1.9rem; font-size: 1.08rem; }

/* ===== Hero ===== */
.lp-hero[b-qpte4j8cr9] {
    position: relative;
    background:
        radial-gradient(58rem 34rem at 12% -6%, rgba(22, 56, 107, .07), transparent 60%),
        radial-gradient(44rem 30rem at 96% 108%, rgba(180, 134, 59, .09), transparent 55%),
        linear-gradient(165deg, var(--lp-night) 40%, var(--lp-night-2));
    color: var(--lp-ink-dark);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--lp-cut)), 0 100%);
    padding: clamp(6.5rem, 11vw, 8.5rem) 0 calc(4rem + var(--lp-cut));
}

/* Grão sutil por cima da atmosfera (mais discreto no papel do que era no escuro). */
.lp-hero[b-qpte4j8cr9]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .03;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.lp-hero-inner[b-qpte4j8cr9] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 4.5rem);
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.lp-overline[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--lp-indigo);
    background: rgba(22, 56, 107, .05);
    border: 1px solid rgba(22, 56, 107, .18);
    border-radius: 999px;
    padding: .38rem .9rem;
    margin-bottom: 1.4rem;
    animation: sm-rise-b-qpte4j8cr9 .6s ease .05s both;
}

.lp-pulse[b-qpte4j8cr9] {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--lp-indigo);
    box-shadow: 0 0 0 0 rgba(22, 56, 107, .45);
    animation: sm-pulse-b-qpte4j8cr9 2.4s ease-out 1s infinite;
}

.lp-hero h1[b-qpte4j8cr9] {
    font-size: clamp(2.35rem, 4.4vw + .8rem, 4.05rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -.035em;
    color: var(--lp-ink-dark);
    margin-bottom: 1.15rem;
    animation: sm-rise-b-qpte4j8cr9 .6s ease .12s both;
}

/* A hora é o gancho do título: no papel o brilho não existe — quem marca é o latão
   por baixo da palavra. */
.lp-hl[b-qpte4j8cr9] {
    color: #8a6524;
    border-bottom: 4px solid #e2c184;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.lp-lead[b-qpte4j8cr9] {
    font-size: clamp(1.02rem, .5vw + .9rem, 1.18rem);
    line-height: 1.6;
    color: var(--lp-muted-dark);
    max-width: 34rem;
    margin-bottom: 1.8rem;
    animation: sm-rise-b-qpte4j8cr9 .6s ease .2s both;
}

.lp-cta-row[b-qpte4j8cr9] {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.6rem;
    animation: sm-rise-b-qpte4j8cr9 .6s ease .28s both;
}

.lp-trust[b-qpte4j8cr9] {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem 1.4rem;
    padding: 0;
    margin: 0;
    font-size: .88rem;
    font-weight: 600;
    color: var(--lp-muted-dark);
    animation: sm-rise-b-qpte4j8cr9 .6s ease .36s both;
}
.lp-trust li[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.lp-trust .lp-ico[b-qpte4j8cr9] { color: var(--lp-indigo); }

/* ===== Telefone (demonstração animada) ===== */
.lp-hero-visual[b-qpte4j8cr9] { min-width: 0; }

.lp-phone-wrap[b-qpte4j8cr9] {
    position: relative;
    width: min(340px, 88vw);
    margin-inline: auto;
    animation: sm-rise-b-qpte4j8cr9 .7s ease .25s both;
}

/* Halo atrás do aparelho */
.lp-phone-wrap[b-qpte4j8cr9]::before {
    content: "";
    position: absolute;
    inset: 8% -12% 4% -12%;
    background:
        radial-gradient(60% 55% at 35% 30%, rgba(22, 56, 107, .12), transparent 70%),
        radial-gradient(55% 50% at 70% 75%, rgba(180, 134, 59, .12), transparent 70%);
    filter: blur(28px);
    z-index: 0;
}

/* O aparelho é a única peça de tinta profunda do hero: a moldura fecha com o cabeçalho
   e o conteúdo dentro dele fala a língua do sistema, não a do WhatsApp real. */
.lp-phone[b-qpte4j8cr9] {
    position: relative;
    z-index: 1;
    background: #10203a;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 34px;
    padding: .65rem;
    box-shadow: 0 30px 60px rgba(16, 32, 58, .18);
    transform: rotate(-2.2deg);
    animation: sm-float-b-qpte4j8cr9 7s ease-in-out 1.5s infinite alternate;
}

.lp-chat-header[b-qpte4j8cr9] {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #10203a;
    border-radius: 26px 26px 0 0;
    padding: .75rem .9rem;
}

.lp-chat-avatar[b-qpte4j8cr9] {
    display: inline-grid;
    place-items: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
}

.lp-chat-id[b-qpte4j8cr9] { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.lp-chat-id strong[b-qpte4j8cr9] { color: #fff; font-size: .9rem; }
.lp-chat-id small[b-qpte4j8cr9] { color: #b8c4d6; font-size: .72rem; }

.lp-chat-ai[b-qpte4j8cr9] {
    margin-left: auto;
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #d9ae63;   /* latão claro: o #b4863b do token não sustenta o texto sobre a tinta */
    border: 1px solid rgba(217, 174, 99, .4);
    border-radius: 999px;
    padding: .18rem .5rem;
}

/* Corpo da conversa */
.lp-chat-body[b-qpte4j8cr9] {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    background:
        radial-gradient(rgba(16, 32, 58, .05) 1px, transparent 1.5px) 0 0 / 18px 18px,
        #f6f4f0;
    border-radius: 0 0 26px 26px;
    padding: .85rem .8rem 1rem;
    min-height: 24rem;
}

.lp-chat-day[b-qpte4j8cr9] {
    display: flex;
    justify-content: center;
    margin-bottom: .2rem;
}
.lp-chat-day span[b-qpte4j8cr9] {
    font-size: .66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6f7f99;
    background: #f4f1eb;
    border: 1px solid #e5e1d9;
    border-radius: 8px;
    padding: .18rem .55rem;
}

.lp-msg[b-qpte4j8cr9] {
    position: relative;
    max-width: 84%;
    border-radius: 14px;
    padding: .5rem .65rem .32rem;
    font-size: .84rem;
    line-height: 1.42;
    animation: sm-pop-b-qpte4j8cr9 .45s cubic-bezier(.2, .9, .3, 1.2) var(--d, 0s) both;
}
.lp-msg p[b-qpte4j8cr9] { margin: 0; }
.lp-msg strong[b-qpte4j8cr9] { font-weight: 700; }

.lp-msg-in[b-qpte4j8cr9] {
    align-self: flex-start;
    background: #fffefb;
    border: 1px solid #e5e1d9;
    color: #10203a;
    border-bottom-left-radius: 4px;
}

.lp-msg-out[b-qpte4j8cr9] {
    align-self: flex-end;
    background: #e7ecf4;
    border: 1px solid #d5deec;
    color: #14304f;
    border-bottom-right-radius: 4px;
}

.lp-msg-meta[b-qpte4j8cr9] {
    display: block;
    text-align: right;
    font-size: .62rem;
    color: #6f7f99;   /* o mesmo --chat-meta-out do painel */
    font-variant-numeric: tabular-nums;
    margin-top: .18rem;
}
.lp-ticks[b-qpte4j8cr9] { color: #6f7f99; letter-spacing: -.08em; }

/* Mensagens do agente: primeiro os três pontinhos, depois o texto. */
.lp-msg-typed .lp-typing[b-qpte4j8cr9] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    opacity: 0;
    animation: sm-typing-window-b-qpte4j8cr9 var(--t, 1s) linear var(--d, 0s) both;
}
.lp-msg-typed .lp-typing i[b-qpte4j8cr9] {
    width: .42rem;
    height: .42rem;
    border-radius: 50%;
    background: #8b9ab3;
    animation: sm-dot-b-qpte4j8cr9 1s ease-in-out infinite;
}
.lp-msg-typed .lp-typing i:nth-child(2)[b-qpte4j8cr9] { animation-delay: .16s; }
.lp-msg-typed .lp-typing i:nth-child(3)[b-qpte4j8cr9] { animation-delay: .32s; }

.lp-msg-typed .lp-msg-content[b-qpte4j8cr9] {
    opacity: 0;
    animation: sm-show-b-qpte4j8cr9 .3s ease calc(var(--d, 0s) + var(--t, 1s)) both;
}

/* Pílula de pagamento dentro do balão — dinheiro é latão, aqui como no painel. */
.lp-msg-pay[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .45rem;
    padding: .42rem .7rem;
    border-radius: 6px;
    background: #faf3e6;
    border: 1px solid #eee0c4;
    color: #8a6524;
    font-weight: 700;
    font-size: .78rem;
    font-variant-numeric: tabular-nums;
}
.lp-msg-pay svg[b-qpte4j8cr9] { width: .8rem; height: .8rem; color: #8a6524; }

/* Evento de sistema no meio da conversa: a ferramenta roda ANTES de o agente
   responder — o visitante vê a IA agir, não só falar. */
.lp-chat-event[b-qpte4j8cr9] {
    display: flex;
    justify-content: center;
    animation: sm-pop-b-qpte4j8cr9 .4s ease var(--d, 0s) both;
}
/* A ferramenta rodando é AÇÃO DA IA — tinta, não latão: latão fica reservado a dinheiro
   (a pílula de cobrança logo abaixo) e verde à confirmação do pagamento. */
.lp-chat-event span[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--lp-indigo);
    background: rgba(22, 56, 107, .07);
    border: 1px solid rgba(22, 56, 107, .2);
    border-radius: 999px;
    padding: .26rem .7rem;
}
.lp-chat-event .lp-ico[b-qpte4j8cr9] { width: .78rem; height: .78rem; }

.lp-chat-status[b-qpte4j8cr9] {
    display: flex;
    justify-content: center;
    margin-top: .35rem;
    animation: sm-pop-b-qpte4j8cr9 .45s ease var(--d, 0s) both;
}
/* Sinal pago: verde — a mesma tinta de "pago" no painel. */
.lp-chat-status span[b-qpte4j8cr9] {
    font-size: .7rem;
    font-weight: 700;
    color: #2f6b4f;
    background: #e8f1ec;
    border: 1px solid rgba(47, 107, 79, .25);
    border-radius: 999px;
    padding: .3rem .8rem;
}

/* Chips flutuantes ao redor do telefone */
.lp-chip[b-qpte4j8cr9] {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lp-indigo);
    background: rgba(255, 254, 251, .92);
    border: 1px solid var(--lp-line-dark);
    border-radius: 10px;
    padding: .5rem .75rem;
    box-shadow: 0 14px 34px rgba(16, 32, 58, .12);
    backdrop-filter: blur(8px);
    animation: sm-pop-b-qpte4j8cr9 .5s cubic-bezier(.2, .9, .3, 1.2) var(--d, 0s) both;
}

.lp-chip-done[b-qpte4j8cr9] {
    bottom: -1.1rem;
    right: -1.4rem;
    color: #8a6524;   /* latão profundo: o token claro fica em 2,98:1 sobre o chip */
    border-color: rgba(180, 134, 59, .38);
}

/* ===== Seções claras ===== */
.lp-section[b-qpte4j8cr9] { padding: clamp(3.6rem, 7vw, 5.5rem) 0; }

/* Sora vem em 400–700: 800 não existe e o navegador teria de engordar o traço. */
.lp-kicker[b-qpte4j8cr9] {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: .6rem;
}

.lp-section h2[b-qpte4j8cr9] {
    font-size: clamp(1.7rem, 2.4vw + .8rem, 2.5rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: .8rem;
}

.lp-section-lead[b-qpte4j8cr9] {
    color: var(--muted);
    font-size: 1.04rem;
    max-width: 40rem;
    margin-bottom: 2.4rem;
}

.lp-hl-ink[b-qpte4j8cr9] { color: var(--accent); }

/* ===== Passos ===== */
.lp-steps[b-qpte4j8cr9] { background: var(--ivory); }

.lp-steps-grid[b-qpte4j8cr9] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.lp-step[b-qpte4j8cr9] {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--lp-radius);
    padding: 1.5rem 1.4rem 1.4rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
/* Fio chapado de tinta: o degradê tinta→latão punha a cor do dinheiro num passo que
   não fala de dinheiro. */
.lp-step[b-qpte4j8cr9]::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: var(--brand);
}

.lp-step-num[b-qpte4j8cr9] {
    display: block;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
    color: var(--brand);
    margin-bottom: .75rem;
}

.lp-step h3[b-qpte4j8cr9] { font-size: 1.08rem; font-weight: 700; margin-bottom: .45rem; }
.lp-step p[b-qpte4j8cr9] { color: var(--muted); font-size: .93rem; line-height: 1.55; margin: 0; }

/* ===== Recursos (bento) ===== */
.lp-features[b-qpte4j8cr9] { background: var(--surface); }
[data-bs-theme="dark"] .lp-features[b-qpte4j8cr9] { background: var(--ivory); }

.lp-bento[b-qpte4j8cr9] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.lp-card[b-qpte4j8cr9] {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: var(--lp-radius);
    padding: 1.45rem 1.4rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
[data-bs-theme="dark"] .lp-card[b-qpte4j8cr9] { background: var(--surface); }
.lp-card:hover[b-qpte4j8cr9] {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
    box-shadow: var(--shadow);
}

.lp-card-wide[b-qpte4j8cr9] { grid-column: span 2; }

/* 6 cards com um span-2 = 7 células: sobraria um card órfão no canto esquerdo.
   O último card também vira largo, ancorado à direita — bento em diagonal com a
   célula vazia como respiro intencional (espelho do destaque do topo). */
.lp-bento article:last-child[b-qpte4j8cr9] { grid-column: 2 / span 2; }

.lp-card-ico[b-qpte4j8cr9] {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand);
    margin-bottom: .9rem;
}
.lp-card-ico .lp-ico[b-qpte4j8cr9] { width: 1.25rem; height: 1.25rem; }

.lp-card h3[b-qpte4j8cr9] { font-size: 1.06rem; font-weight: 700; margin-bottom: .45rem; }
.lp-card p[b-qpte4j8cr9] { color: var(--muted); font-size: .93rem; line-height: 1.55; margin: 0; }

/* Mini-log de ferramentas (card largo) */
.lp-toollog[b-qpte4j8cr9] {
    margin-top: 1.1rem;
    font-family: var(--font-mono);
    font-size: .8rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    overflow: hidden;
}
[data-bs-theme="dark"] .lp-toollog[b-qpte4j8cr9] { background: var(--surface-2); }
.lp-toollog > div[b-qpte4j8cr9] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .5rem .8rem;
    border-bottom: 1px dashed var(--border);
    color: var(--muted);
}
.lp-toollog > div:last-child[b-qpte4j8cr9] { border-bottom: 0; }
.lp-toollog-ok[b-qpte4j8cr9] { color: var(--success); font-weight: 700; white-space: nowrap; }

/* ===== FAQ ===== */
.lp-faq[b-qpte4j8cr9] { background: var(--ivory); }

.lp-faq-list[b-qpte4j8cr9] {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.lp-faq details[b-qpte4j8cr9] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 0;
    transition: border-color .15s ease;
}
.lp-faq details[open][b-qpte4j8cr9] { border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); }

.lp-faq summary[b-qpte4j8cr9] {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    font-weight: 700;
    font-size: .98rem;
}
.lp-faq summary[b-qpte4j8cr9]::-webkit-details-marker { display: none; }
.lp-faq summary[b-qpte4j8cr9]::after {
    content: "+";
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--brand);
    transition: transform .18s ease;
}
.lp-faq details[open] summary[b-qpte4j8cr9]::after { transform: rotate(45deg); }
.lp-faq summary:focus-visible[b-qpte4j8cr9] {
    outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent);
    outline-offset: -3px;
    border-radius: 14px;
}

.lp-faq details p[b-qpte4j8cr9] {
    margin: 0;
    padding: 0 1.2rem 1.1rem;
    color: var(--muted);
    font-size: .94rem;
    line-height: 1.6;
    max-width: 60ch;
}

/* ===== Chamada final ===== */
.lp-final[b-qpte4j8cr9] {
    background:
        radial-gradient(50rem 30rem at 85% -20%, rgba(22, 56, 107, .08), transparent 60%),
        radial-gradient(40rem 26rem at 8% 120%, rgba(180, 134, 59, .1), transparent 55%),
        linear-gradient(200deg, var(--lp-night-2), var(--lp-night) 65%);
    color: var(--lp-ink-dark);
    clip-path: polygon(0 var(--lp-cut), 100% 0, 100% 100%, 0 100%);
    padding: calc(3.6rem + var(--lp-cut)) 0 4.4rem;
    text-align: center;
}

.lp-kicker-dark[b-qpte4j8cr9] { color: var(--lp-emerald); }

.lp-final h2[b-qpte4j8cr9] {
    font-size: clamp(1.9rem, 3vw + .8rem, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--lp-ink-dark);
    margin-bottom: .9rem;
}

/* Classe própria: um ".lp-final p" genérico venceria o .lp-kicker-dark por
   especificidade e apagaria o esmeralda do kicker. */
.lp-final-lead[b-qpte4j8cr9] {
    color: var(--lp-muted-dark);
    font-size: 1.05rem;
    max-width: 34rem;
    margin: 0 auto 1.8rem;
}

/* ===== Rodapé ===== */
.lp-footer[b-qpte4j8cr9] {
    background: var(--ivory);
    border-top: 1px solid var(--border);
    padding: 1.4rem 0;
}

.lp-footer-inner[b-qpte4j8cr9] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--muted);
}

.lp-footer-brand[b-qpte4j8cr9] {
    font-family: var(--font-brand);
    font-weight: 700;
    letter-spacing: -.04em;
    font-size: 1.02rem;
    color: var(--ink);
}

.lp-footer-note[b-qpte4j8cr9] { margin-inline: auto; }

.lp-footer-links[b-qpte4j8cr9] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.lp-footer-links a[b-qpte4j8cr9] { color: var(--brand); font-weight: 600; }

/* ===== Botão flutuante de WhatsApp ===== */
.lp-float-wa[b-qpte4j8cr9] {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--lp-wa);
    color: var(--lp-wa-ink);
    box-shadow: 0 12px 30px rgba(20, 107, 69, .3);
    animation: sm-pop-b-qpte4j8cr9 .5s cubic-bezier(.2, .9, .3, 1.2) 1.4s both;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-float-wa .lp-ico[b-qpte4j8cr9] { width: 1.6rem; height: 1.6rem; }
.lp-float-wa:hover[b-qpte4j8cr9] {
    transform: scale(1.07);
    background: var(--lp-wa-deep);
    color: var(--lp-wa-ink);
    box-shadow: 0 16px 36px rgba(20, 107, 69, .38);
}
.lp-float-wa[b-qpte4j8cr9]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(20, 107, 69, .45);
    animation: sm-ring-b-qpte4j8cr9 2.6s ease-out 2.2s infinite;
}
.lp-float-wa:focus-visible[b-qpte4j8cr9] {
    outline: 3px solid color-mix(in srgb, var(--lp-emerald) 70%, transparent);
    outline-offset: 3px;
}

/* ===== Animações ===== */
@keyframes sm-rise-b-qpte4j8cr9 {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

@keyframes sm-pop-b-qpte4j8cr9 {
    from { opacity: 0; transform: translateY(10px) scale(.94); }
    to   { opacity: 1; transform: none; }
}

@keyframes sm-show-b-qpte4j8cr9 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Janela de digitação: aparece, segura e some para dar lugar ao texto. */
@keyframes sm-typing-window-b-qpte4j8cr9 {
    0%   { opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

@keyframes sm-dot-b-qpte4j8cr9 {
    0%, 60%, 100% { transform: translateY(0); opacity: .5; }
    30%           { transform: translateY(-3px); opacity: 1; }
}

@keyframes sm-float-b-qpte4j8cr9 {
    from { transform: rotate(-2.2deg) translateY(0); }
    to   { transform: rotate(-2.2deg) translateY(-9px); }
}

@keyframes sm-pulse-b-qpte4j8cr9 {
    from { box-shadow: 0 0 0 0 rgba(22, 56, 107, .45); }
    to   { box-shadow: 0 0 0 12px rgba(22, 56, 107, 0); }
}

@keyframes sm-ring-b-qpte4j8cr9 {
    from { transform: scale(1); opacity: 1; }
    to   { transform: scale(1.65); opacity: 0; }
}

/* ===== Responsivo ===== */
@media (max-width: 991.98px) {
    .lp-hero-inner[b-qpte4j8cr9] { grid-template-columns: 1fr; }
    .lp-hero-copy[b-qpte4j8cr9] { text-align: center; }
    .lp-lead[b-qpte4j8cr9] { margin-inline: auto; }
    .lp-cta-row[b-qpte4j8cr9], .lp-trust[b-qpte4j8cr9] { justify-content: center; }
    .lp-hero-visual[b-qpte4j8cr9] { margin-top: 1.5rem; }

    .lp-steps-grid[b-qpte4j8cr9] { grid-template-columns: 1fr; max-width: 34rem; }
    .lp-bento[b-qpte4j8cr9] { grid-template-columns: 1fr 1fr; }
    .lp-card-wide[b-qpte4j8cr9] { grid-column: span 2; }
    /* Em 2 colunas o fluxo fecha certinho: 2 / 1+1 / 1+1 / 2. */
    .lp-bento article:last-child[b-qpte4j8cr9] { grid-column: span 2; }
}

@media (max-width: 859.98px) {
    .lp-nav-links[b-qpte4j8cr9] { display: none; }
    .lp-nav-actions[b-qpte4j8cr9] { margin-left: auto; }
}

@media (max-width: 639.98px) {
    .lp-bento[b-qpte4j8cr9] { grid-template-columns: 1fr; }
    .lp-card-wide[b-qpte4j8cr9] { grid-column: auto; }
    .lp-bento article:last-child[b-qpte4j8cr9] { grid-column: auto; }

    .lp-chip-done[b-qpte4j8cr9] {
        position: static;
        margin: 1.1rem auto 0;
        width: fit-content;
    }
    .lp-footer-inner[b-qpte4j8cr9] { justify-content: center; text-align: center; }
}

@media (max-width: 479.98px) {
    /* O CTA do hero e o botão flutuante já dão o WhatsApp — na nav ele estourava a largura. */
    .lp-nav .lp-btn-wa[b-qpte4j8cr9] { display: none; }
}

@media (max-width: 419.98px) {
    .lp-btn[b-qpte4j8cr9] { width: 100%; }
    .lp-nav .lp-btn[b-qpte4j8cr9] { width: auto; }
}

/* ===== Movimento reduzido: tudo visível, nada balança ===== */
@media (prefers-reduced-motion: reduce) {
    .lp *[b-qpte4j8cr9], .lp *[b-qpte4j8cr9]::before, .lp *[b-qpte4j8cr9]::after {
        animation-duration: .01ms !important;
        animation-delay: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    /* A janela de digitação termina invisível — sem ela o texto já aparece. */
    .lp-msg-typed .lp-typing[b-qpte4j8cr9] { display: none; }
    .lp-phone[b-qpte4j8cr9] { transform: rotate(-2.2deg); }
}
