/**
 * GSERV — Public Tools (funil de leads)
 * Intencionalmente isolado do design system do admin: páginas públicas
 * precisam carregar rápido e parecer "marketing", não "app".
 */

* { box-sizing: border-box; }

:root {
    --tools-primary: #00349A;
    --tools-primary-dark: #002670;
    --tools-primary-soft: rgba(0, 52, 154, 0.08);
    --tools-text: #1f2937;
    --tools-text-muted: #6b7280;
    --tools-border: #e5e7eb;
    --tools-bg: #f9fafb;
    --tools-bg-elevated: #ffffff;
    --tools-success: #16a34a;
    --tools-danger: #dc2626;
    --tools-radius: 10px;
    --tools-radius-sm: 6px;
    --tools-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --tools-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

body.tools-page {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--tools-text);
    background: var(--tools-bg);
    /* Fix scroll horizontal mobile: decorações ::before nas seções
       hero/cta usam width:800px e right:-10% que estouram viewports
       < 800px. overflow-x:hidden no body recorta sem afetar a
       estética desktop. Defensa-em-profundidade — também aplico
       overflow:hidden em .lp-hero e .queda-cta-final abaixo. */
    overflow-x: hidden;
}

/* Fix scroll horizontal mobile (universal pra todas as pages /tools/):
   - body.tools-page (LPs e cadastro/entrar)
   - body.demo-shell (app.php das 5 calculadoras + gerador-proposta)
   Causas conhecidas que estouram viewport mobile (< 800px):
   - decorações ::before com width:800px / right:-10% nas seções
     .lp-hero, .{bitola,disjuntor,queda,camera,dvr,proposta}-cta-final
   - sidebar mobile fixed com transform fora da viewport
   - forms com inputs sem max-width: 100%
   overflow-x:hidden recorta tudo isso sem afetar a estética desktop
   nem position:sticky em filhos (.demo-sidebar, .demo-topbar, .lp-header). */
html, body.tools-page, body.demo-shell { overflow-x: hidden; }
body.tools-page, body.demo-shell { max-width: 100vw; }

.tools-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.tools-header {
    background: #fff;
    border-bottom: 1px solid var(--tools-border);
    padding: 16px 0;
}
.tools-header .tools-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tools-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--tools-primary);
    text-decoration: none;
}
.tools-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.tools-link {
    color: var(--tools-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}
.tools-link:hover { color: var(--tools-text); }
.tools-link--cta {
    color: #fff;
    background: var(--tools-primary);
    padding: 8px 16px;
    border-radius: var(--tools-radius-sm);
}
.tools-link--cta:hover { background: var(--tools-primary-dark); color: #fff; }

/* Hero */
.tools-hero {
    padding: 48px 0 24px;
    text-align: center;
}
.tools-hero h1 {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--tools-text);
}
.tools-lead {
    font-size: 18px;
    color: var(--tools-text-muted);
    margin: 0 0 16px;
}
.tools-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    color: var(--tools-text-muted);
    font-size: 14px;
}
.tools-benefits li::before {
    content: "✓ ";
    color: var(--tools-success);
    font-weight: 700;
    margin-right: 4px;
}

/* Wizard */
.tools-wizard-section { padding: 16px 0 60px; }
.tools-wizard {
    background: var(--tools-bg-elevated);
    border-radius: var(--tools-radius);
    box-shadow: var(--tools-shadow);
    padding: 28px 32px;
}

.tools-steps {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0 0 28px;
    border-bottom: 1px solid var(--tools-border);
    padding-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
    color: var(--tools-text-muted);
}
.tools-step {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 20px;
    background: transparent;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    user-select: none;
}
.tools-step:hover { background: var(--tools-primary-soft); }
.tools-step:focus-visible { outline: 2px solid var(--tools-primary); outline-offset: 2px; }
.tools-step span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--tools-border);
    color: var(--tools-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.tools-step.active {
    background: var(--tools-primary-soft);
    color: var(--tools-primary);
    font-weight: 600;
}
.tools-step.active span {
    background: var(--tools-primary);
    color: #fff;
}
.tools-step.done span {
    background: var(--tools-success);
    color: #fff;
}

.tools-step-panel h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
}
.tools-help {
    margin: 0 0 20px;
    color: var(--tools-text-muted);
    font-size: 14px;
}

.tools-field {
    margin-bottom: 16px;
}
.tools-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--tools-text);
}
.tools-field input,
.tools-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--tools-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.tools-field input:focus,
.tools-field textarea:focus {
    outline: none;
    border-color: var(--tools-primary);
    box-shadow: 0 0 0 3px var(--tools-primary-soft);
}
.tools-field input.is-invalid,
.tools-field textarea.is-invalid {
    border-color: var(--tools-danger);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}
.tools-field-error {
    margin-top: 4px;
    font-size: 12px;
    color: var(--tools-danger);
    font-weight: 500;
}
.tools-cnpj-hint {
    margin-top: 4px;
    font-size: 12px;
    color: var(--tools-primary);
    display: none;
}
.tools-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .tools-grid-2 { grid-template-columns: 1fr; }
}

/* Itens */
.tools-items {
    margin: 16px 0;
}
.tools-item-row {
    display: grid;
    grid-template-columns: 100px 130px minmax(0, 1.3fr) 70px 120px 120px 40px;
    gap: 8px;
    align-items: end;
    margin-bottom: 12px;
    padding: 10px;
    background: var(--tools-bg);
    border-radius: var(--tools-radius-sm);
    border: 1px solid var(--tools-border);
}
.tools-item-row .tools-field {
    margin-bottom: 0;
}
.tools-item-row select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--tools-text);
    transition: border-color 0.15s, box-shadow 0.15s;
}
.tools-item-row select:focus {
    outline: none;
    border-color: var(--tools-primary);
    box-shadow: 0 0 0 3px var(--tools-primary-soft);
}
.tools-item-remove {
    background: transparent;
    border: 1px solid var(--tools-border);
    color: var(--tools-danger);
    border-radius: var(--tools-radius-sm);
    cursor: pointer;
    font-size: 16px;
    height: 36px;
    transition: background 0.15s, color 0.15s;
}
.tools-item-remove:hover { background: var(--tools-danger); color: #fff; }

/* Rich text editor (escopo/objetivo) */
.tools-rich-editor {
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius-sm);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--tools-text);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    line-height: 1.55;
}
.tools-rich-editor--lg { min-height: 120px; }
.tools-rich-editor:focus {
    border-color: var(--tools-primary);
    box-shadow: 0 0 0 3px var(--tools-primary-soft);
}
.tools-rich-editor:empty::before {
    content: attr(data-placeholder);
    color: #94a3b8;
}
.tools-rich-editor p { margin: 0 0 6px; }
.tools-rich-editor strong, .tools-rich-editor b { font-weight: 700; }
.tools-rich-editor em, .tools-rich-editor i { font-style: italic; }

.tools-rich-toolbar {
    position: fixed;
    display: none;
    align-items: center;
    gap: 2px;
    background: var(--tools-text);
    color: #fff;
    padding: 4px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    font-size: 13px;
}
.tools-rich-toolbar button {
    background: transparent;
    color: #fff;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    min-width: 24px;
}
.tools-rich-toolbar button:hover { background: rgba(255, 255, 255, 0.15); }
.tools-rich-toolbar button:active { background: rgba(255, 255, 255, 0.25); }
.tools-rich-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 4px;
}

/* AI buttons */
.tools-ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
    cursor: pointer;
    transition: all 0.15s;
    margin-left: 8px;
    vertical-align: middle;
    font-family: inherit;
}
.tools-ai-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}
.tools-ai-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
}
.tools-ai-btn--lg {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 24px;
    margin: 0;
}
.tools-ai-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: toolsAiSpin 0.7s linear infinite;
}
@keyframes toolsAiSpin {
    to { transform: rotate(360deg); }
}

.tools-ai-suggest-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(99, 102, 241, 0.05));
    border: 1px dashed #c4b5fd;
    border-radius: var(--tools-radius);
    margin: 14px 0 18px;
}
.tools-ai-hint {
    font-size: 12.5px;
    color: var(--tools-text-muted);
}
.tools-ai-feedback {
    font-size: 12px;
    margin-top: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}
.tools-ai-feedback[data-kind="success"] {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
}
.tools-ai-feedback[data-kind="error"] {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
}

@media (max-width: 640px) {
    .tools-ai-btn {
        display: block;
        margin: 6px 0 0;
        width: 100%;
        justify-content: center;
    }
    .tools-ai-suggest-box { flex-direction: column; align-items: stretch; }
}

/* Logo picker (Step 2) */
.tools-field--logo { margin-bottom: 20px; }
.tools-logo-picker {
    position: relative;
    margin-top: 6px;
}
.tools-logo-dropzone {
    border: 2px dashed var(--tools-border);
    border-radius: var(--tools-radius);
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    background: var(--tools-bg);
    transition: border-color 0.15s, background 0.15s;
}
.tools-logo-dropzone:hover,
.tools-logo-dropzone.is-dragover {
    border-color: var(--tools-primary);
    background: var(--tools-primary-soft);
}
.tools-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--tools-text-muted);
}
.tools-logo-placeholder svg {
    color: var(--tools-primary);
    margin-bottom: 4px;
}
.tools-logo-placeholder strong {
    font-size: 14px;
    color: var(--tools-text);
    font-weight: 600;
}
.tools-logo-placeholder span { font-size: 12px; }

.tools-logo-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--tools-bg);
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius);
}
.tools-logo-preview img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background:
        linear-gradient(45deg, #eee 25%, transparent 25%),
        linear-gradient(-45deg, #eee 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #eee 75%),
        linear-gradient(-45deg, transparent 75%, #eee 75%);
    background-size: 12px 12px;
    background-position: 0 0, 0 6px, 6px -6px, -6px 0;
    background-color: #fff;
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius-sm);
    padding: 4px;
}
.tools-logo-status {
    margin-top: 8px;
    font-size: 12px;
    min-height: 16px;
    color: var(--tools-text-muted);
}
.tools-logo-status.is-error { color: var(--tools-danger); }
.tools-logo-status.is-info { color: var(--tools-primary); }

/* Catalog typeahead */
.tools-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius-sm);
    box-shadow: var(--tools-shadow);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
    margin-top: 4px;
}
.tools-suggest[hidden] { display: none; }
.tools-suggest-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--tools-border);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 13.5px;
    transition: background 0.1s;
}
.tools-suggest-item:last-child { border-bottom: none; }
.tools-suggest-item:hover,
.tools-suggest-item:focus { background: var(--tools-primary-soft); outline: none; }
.tools-suggest-item .name { font-weight: 500; color: var(--tools-text); display: flex; align-items: center; gap: 8px; }
.tools-suggest-item .tipo {
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 8px;
    background: var(--tools-bg);
    color: var(--tools-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tools-suggest-item .meta { font-size: 12px; color: var(--tools-text-muted); margin-top: 3px; }
.tools-suggest-offline {
    padding: 12px 14px;
    font-size: 12.5px;
    color: var(--tools-text-muted);
    text-align: center;
    font-style: italic;
}
@media (max-width: 1024px) {
    .tools-item-row {
        grid-template-columns: 110px 1fr 110px 1fr 40px;
    }
    .tools-item-row .tools-field:nth-child(1) { grid-column: 1 / 2; }   /* Tipo */
    .tools-item-row .tools-field:nth-child(2) { grid-column: 2 / 3; }   /* Categoria */
    .tools-item-row .tools-field:nth-child(3) { grid-column: 1 / 5; }   /* Descrição full row */
    .tools-item-row .tools-field:nth-child(4) { grid-column: 1 / 2; }   /* Qtd */
    .tools-item-row .tools-field:nth-child(5) { grid-column: 2 / 3; }   /* Valor */
    .tools-item-row .tools-field:nth-child(6) { grid-column: 3 / 4; }   /* Subtotal */
    .tools-item-row .tools-item-remove { grid-column: 5 / 6; grid-row: 1; align-self: start; }
}
@media (max-width: 640px) {
    .tools-item-row {
        grid-template-columns: 1fr;
    }
    .tools-item-row .tools-field,
    .tools-item-row .tools-item-remove { grid-column: 1 / -1 !important; }
    .tools-item-remove { justify-self: end; width: 40px; }
}

.tools-total {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    margin-top: 12px;
    border-top: 1px dashed var(--tools-border);
    font-size: 16px;
}
.tools-total strong {
    font-size: 22px;
    color: var(--tools-primary);
}

/* Wizard nav */
.tools-wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--tools-border);
}
.tools-wizard-nav .tools-btn--primary {
    margin-left: auto;
}

/* Buttons */
.tools-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--tools-radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
}
.tools-btn--primary {
    background: var(--tools-primary);
    color: #fff;
}
.tools-btn--primary:hover {
    background: var(--tools-primary-dark);
    transform: translateY(-1px);
}
.tools-btn--ghost {
    background: #fff;
    color: var(--tools-text);
    border-color: var(--tools-border);
}
.tools-btn--ghost:hover {
    border-color: var(--tools-primary);
    color: var(--tools-primary);
}
.tools-btn--lg {
    padding: 14px 28px;
    font-size: 16px;
}

/* Preview */
.tools-preview-container {
    border: 1px solid var(--tools-border);
    border-radius: var(--tools-radius);
    overflow: hidden;
    margin-bottom: 24px;
    background: #fff;
}
.tools-preview-iframe {
    width: 100%;
    height: 600px;
    border: none;
    background: #fff;
}

.tools-cta-box {
    background: linear-gradient(135deg, var(--tools-primary-soft), #fff);
    border: 1px solid var(--tools-primary-soft);
    border-radius: var(--tools-radius);
    padding: 24px 28px;
    text-align: center;
}
.tools-cta-box h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--tools-primary);
}
.tools-cta-box p {
    margin: 0 0 16px;
    color: var(--tools-text-muted);
}
.tools-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.tools-footer {
    background: #fff;
    border-top: 1px solid var(--tools-border);
    padding: 20px 0;
    font-size: 13px;
    color: var(--tools-text-muted);
    text-align: center;
}
.tools-footer a {
    color: var(--tools-text-muted);
    text-decoration: none;
}
.tools-footer a:hover { color: var(--tools-primary); }

/* Saving indicator (autosave) */
.tools-save-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 14px;
    background: var(--tools-text);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
}
.tools-save-indicator.visible {
    opacity: 0.9;
    transform: translateY(0);
}

/* ============================================================
   DEMO SHELL — mockup do ERP no funil público
   ============================================================ */

body.demo-shell {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #1f2937;
    background: #F1F5F9;
    min-height: 100vh;
}

.demo-layout {
    display: grid;
    grid-template-columns: 248px 1fr;
    min-height: 100vh;
}

/* === Sidebar === */
.demo-sidebar {
    background: #fff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
.demo-sidebar-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #f3f4f6;
}
.demo-sidebar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
.demo-sidebar-logo-img {
    height: 32px;
    width: auto;
    display: block;
}
.demo-sidebar-nav {
    flex: 1;
    padding: 16px 10px;
    overflow-y: auto;
}
.demo-sidebar-section {
    padding: 12px 10px 6px;
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.demo-sidebar-section:first-child { padding-top: 0; }
.demo-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    margin: 1px 0;
    border-radius: 6px;
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    position: relative;
    transition: background 0.12s, color 0.12s;
}
.demo-sidebar-item svg { flex-shrink: 0; color: #94A3B8; }
.demo-sidebar-item span { flex: 1; }

.demo-sidebar-item--active {
    background: rgba(0, 52, 154, 0.08);
    color: #00349A;
    font-weight: 600;
}
.demo-sidebar-item--active svg { color: #00349A; }

.demo-sidebar-item--locked {
    opacity: 0.55;
    cursor: pointer;
}
.demo-sidebar-item--locked:hover {
    opacity: 0.85;
    background: #F8FAFC;
}
.demo-sidebar-item--locked .demo-lock-icon {
    margin-left: auto;
    color: #CBD5E1;
    flex-shrink: 0;
}

.demo-sidebar-footer {
    padding: 16px 14px;
    border-top: 1px solid #f3f4f6;
}
.demo-trial-card {
    background: linear-gradient(135deg, #00349A 0%, #1D4ED8 100%);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 52, 154, 0.25);
}
.demo-trial-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.demo-trial-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.demo-trial-card p {
    font-size: 12.5px;
    line-height: 1.45;
    opacity: 0.9;
    margin: 0 0 12px;
}
.demo-trial-btn {
    display: block;
    text-align: center;
    background: #fff;
    color: #00349A;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.15s;
}
.demo-trial-btn:hover { transform: translateY(-1px); color: #00349A; }

/* === Main === */
.demo-main {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.demo-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 10;
}
.demo-sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    color: #475569;
}
.demo-sidebar-toggle:hover { background: #F1F5F9; }

.demo-breadcrumb {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748B;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.demo-breadcrumb strong { color: #0F172A; font-weight: 600; }
.demo-breadcrumb-sep { color: #CBD5E1; }

.demo-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-topbar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: #F8FAFC;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #94A3B8;
    font-size: 13px;
    cursor: pointer;
    min-width: 220px;
    opacity: 0.75;
    transition: opacity 0.15s;
}
.demo-topbar-search:hover { opacity: 1; }
.demo-topbar-search kbd {
    margin-left: auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 10px;
    color: #64748B;
    font-family: 'Inter', sans-serif;
}

.demo-topbar-icon {
    background: transparent;
    border: none;
    padding: 7px;
    border-radius: 6px;
    color: #64748B;
    cursor: pointer;
    opacity: 0.7;
    transition: background 0.15s, opacity 0.15s;
}
.demo-topbar-icon:hover { background: #F1F5F9; opacity: 1; }

.demo-topbar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    border-radius: 24px;
    cursor: pointer;
    opacity: 0.75;
    transition: background 0.15s, opacity 0.15s;
}
.demo-topbar-user:hover { background: #F1F5F9; opacity: 1; }
.demo-topbar-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #64748B, #334155);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
}
.demo-topbar-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.demo-topbar-user-info strong { font-size: 13px; color: #0F172A; }
.demo-topbar-user-info span { font-size: 11px; color: #94A3B8; }

/* === Content === */
.demo-content {
    padding: 28px 32px 40px;
    max-width: 1100px;
    width: 100%;
}
.demo-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.demo-page-header h1 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
}
.demo-page-header p {
    margin: 0;
    color: #64748B;
    font-size: 14px;
}
.demo-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.demo-badge--blue { background: rgba(0, 52, 154, 0.08); color: #00349A; }

/* Preview live ABAIXO do wizard (não lateral — lateral espremia os itens).
   Desktop ≥960px: mostra o pane abaixo com altura razoável; mobile oculta
   pra não poluir (usuário vê o preview completo no Step 5). */
.demo-split { display: block; }
.demo-split-main { min-width: 0; }
.demo-split-preview { display: none; }

@media (min-width: 960px) {
    .demo-split-preview {
        display: block;
        margin-top: 32px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    .demo-split-preview-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 12px 16px;
        background: #F8FAFC;
        border-bottom: 1px solid #e5e7eb;
        font-size: 13px;
    }
    .demo-split-preview-header strong { color: #0F172A; font-weight: 600; }
    .demo-split-preview-header span { color: #64748B; font-size: 11.5px; }
    .demo-split-preview-frame {
        width: 100%;
        height: 680px;
        border: none;
        background: #fff;
    }
    .tools-preview-container--inline { max-width: 100%; }
}

.tools-catalog-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 8px;
    font-size: 13px;
    color: #78350F;
    margin: 14px 0 18px;
}

/* === Lock overlay modal === */
.demo-lock-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
    animation: demoFadeIn 0.2s ease;
}
.demo-lock-overlay[hidden] { display: none; }
@keyframes demoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.demo-lock-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: demoSlideUp 0.25s ease;
}
@keyframes demoSlideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.demo-lock-icon-big {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 52, 154, 0.12), rgba(29, 78, 216, 0.12));
    color: #00349A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.demo-lock-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px;
}
.demo-lock-card p {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 24px;
}
.demo-lock-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}
.demo-lock-actions .tools-btn { width: 100%; justify-content: center; }
.demo-lock-small {
    margin: 0;
    font-size: 12px;
    color: #94A3B8;
}

/* === Responsive === */
@media (max-width: 960px) {
    .demo-layout { grid-template-columns: 1fr; }
    .demo-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        z-index: 200;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
    }
    .demo-sidebar--open { transform: translateX(0); }
    .demo-sidebar-toggle { display: inline-flex; }
    .demo-topbar-search { min-width: 0; }
    .demo-topbar-search span { display: none; }
    .demo-topbar-search kbd { display: none; }
    .demo-topbar-user-info { display: none; }
    .demo-content { padding: 20px 16px 32px; }
    .demo-page-header { flex-direction: column; align-items: flex-start; }
    .demo-page-header h1 { font-size: 20px; }
}

/* ============================================================
   Landing Page — Gerador de Proposta (padrão visual GSERV)
   ============================================================ */

.lp-page,
.demo-shell {
    --lp-primary: #00349A;
    --lp-primary-hover: #1D4ED8;
    --lp-primary-dark: #001D5C;
    --lp-text: #0F172A;
    --lp-text-muted: #334155;
    --lp-text-light: #64748B;
    --lp-bg-soft: #F1F5F9;
    --lp-bg-cream: #F8FAFC;
    --lp-border: #E2E8F0;
    --lp-radius: 16px;
    --lp-radius-btn: 24px;
}

.lp-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--lp-text);
    background: #fff;
}

/* Header da LP */
.lp-header {
    background: #fff;
    border-bottom: 1px solid var(--lp-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.lp-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.lp-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.lp-nav-link {
    color: var(--lp-text-muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s;
}
.lp-nav-link:hover { color: var(--lp-primary); }

/* Botões LP */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--lp-radius-btn);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.2;
}
.lp-btn-primary {
    background: var(--lp-primary);
    color: #fff;
}
.lp-btn-primary:hover {
    background: var(--lp-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 52, 154, 0.3);
}
.lp-btn-ghost {
    background: transparent;
    color: var(--lp-text);
    border-color: var(--lp-border);
}
.lp-btn-ghost:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
}
.lp-btn-white {
    background: #fff;
    color: var(--lp-primary);
}
.lp-btn-white:hover {
    background: var(--lp-bg-cream);
    color: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.lp-btn-sm { padding: 8px 18px; font-size: 14px; }
.lp-btn-lg { padding: 16px 36px; font-size: 17px; }

/* Hero */
.lp-hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #fff 0%, var(--lp-bg-cream) 100%);
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 52, 154, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 64px;
    align-items: center;
    position: relative;
}
.lp-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}
.lp-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    color: var(--lp-text);
}
.lp-hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0 0 32px;
    max-width: 560px;
}
.lp-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 24px;
}
.lp-hero-trust {
    font-size: 13px;
    color: var(--lp-text-light);
    margin: 0;
}

/* Mockup PDF (hero direito) — CSS puro */
.lp-pdf-mock {
    background: #fff;
    border-radius: var(--lp-radius);
    box-shadow: 0 20px 60px rgba(0, 52, 154, 0.18), 0 0 0 1px rgba(0, 52, 154, 0.04);
    padding: 32px;
    position: relative;
    transform: rotate(-1.5deg);
    transition: transform 0.4s ease;
}
.lp-pdf-mock:hover { transform: rotate(0deg) scale(1.02); }
.lp-pdf-mock-header {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-hover) 100%);
    height: 48px;
    margin: -32px -32px 28px;
    border-radius: var(--lp-radius) var(--lp-radius) 0 0;
}
.lp-pdf-mock-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: 16px;
}
.lp-pdf-mock-line {
    height: 10px;
    background: var(--lp-bg-soft);
    border-radius: 4px;
    margin-bottom: 10px;
}
.lp-pdf-mock-line--short { width: 55%; }
.lp-pdf-mock-block {
    margin: 24px 0;
    padding-top: 16px;
    border-top: 1px dashed var(--lp-border);
}
.lp-pdf-mock-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--lp-text-muted);
    border-bottom: 1px solid var(--lp-bg-soft);
}
.lp-pdf-mock-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    margin: 8px 0 16px;
    border-top: 2px solid var(--lp-primary);
    font-size: 16px;
    color: var(--lp-text);
}
.lp-pdf-mock-total strong {
    color: var(--lp-primary);
    font-size: 20px;
}

/* Seções gerais */
.lp-section { padding: 80px 0; }
.lp-section--alt { background: var(--lp-bg-soft); }
.lp-section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.lp-section-head h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: var(--lp-text);
}
.lp-section-head p {
    font-size: 17px;
    color: var(--lp-text-muted);
    margin: 0;
}

/* Como funciona — 3 steps */
.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.lp-step {
    text-align: center;
    padding: 16px 20px;
}
.lp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-hover) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 52, 154, 0.25);
}
.lp-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--lp-text);
}
.lp-step p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
}

/* Benefícios */
.lp-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-beneficio-card {
    background: #fff;
    border: 2px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    transition: all 0.2s ease;
}
.lp-beneficio-card:hover {
    border-color: var(--lp-primary);
    background: var(--lp-bg-cream);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 52, 154, 0.08);
}
.lp-beneficio-icon {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1;
    color: var(--lp-primary, #00349A);
}
.lp-beneficio-icon .tools-icon { width: 32px; height: 32px; }
.lp-beneficio-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--lp-text);
}
.lp-beneficio-card p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--lp-text-muted);
    margin: 0;
}

/* FAQ */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
}
.lp-faq details {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.lp-faq details[open] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 52, 154, 0.2);
}
.lp-faq summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--lp-text);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 56px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--lp-primary);
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s;
}
.lp-faq details[open] summary::after {
    content: '−';
}
.lp-faq details p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--lp-text-muted);
}

/* CTA final */
.lp-cta-final {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-dark) 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.lp-cta-final h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: #fff;
}
.lp-cta-final p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
}

/* Footer */
.lp-footer {
    background: var(--lp-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 32px 0;
    font-size: 14px;
}
.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lp-footer-brand strong {
    color: #fff;
    font-size: 16px;
}
.lp-footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.15s;
}
.lp-footer-nav a:hover { color: #fff; }

/* Responsive LP */
@media (max-width: 960px) {
    .lp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .lp-hero { padding: 56px 0 72px; }
    .lp-hero h1 { font-size: 38px; }
    .lp-hero-sub { font-size: 17px; }
    .lp-steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .lp-beneficios-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .lp-section { padding: 56px 0; }
    .lp-section-head { margin-bottom: 40px; }
    .lp-section-head h2, .lp-cta-final h2 { font-size: 30px; }
    .lp-pdf-mock { transform: none; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .lp-header { padding: 14px 0; }
    .lp-nav { gap: 14px; }
    .lp-nav-link { font-size: 13px; }
    .lp-nav-link[href="/"] { display: none; }
    .lp-hero h1 { font-size: 30px; }
    .lp-hero-ctas { flex-direction: column; align-items: stretch; }
    .lp-hero-ctas .lp-btn { justify-content: center; }
    .lp-beneficios-grid { grid-template-columns: 1fr; }
    .lp-section-head h2, .lp-cta-final h2 { font-size: 26px; }
    .lp-footer-inner { flex-direction: column; text-align: center; }
    .lp-footer-brand { align-items: center; }
}

/* ===== Atribuição GSERV/DELMAT no footer ===== */
.tools-footer-attribution {
    margin: 4px 0 0 0;
    font-size: 12px;
    color: #94A3B8;
    line-height: 1.5;
}
.tools-footer-attribution strong { color: #64748B; font-weight: 600; }

/* ===== Hero centrado (hub) ===== */
.lp-hero--centered {
    text-align: center;
}
.lp-hero--centered .lp-badge { margin-bottom: 20px; }
.lp-hero--centered h1 { max-width: 720px; margin-left: auto; margin-right: auto; }
.lp-hero--centered .lp-hero-sub { margin-left: auto; margin-right: auto; }

/* ===== Prose (blocos de texto SEO long-form) ===== */
.lp-prose {
    max-width: 760px;
    margin: 0 auto;
}
.lp-prose .lp-lead {
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 24px;
}
.lp-prose h2 {
    font-size: 28px;
    letter-spacing: -0.01em;
    color: #1E293B;
    margin: 0 0 18px;
}
.lp-prose h3 {
    font-size: 18px;
    color: #1E293B;
    margin: 28px 0 10px;
    font-weight: 700;
}
.lp-prose p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 14px;
}
.lp-prose strong { color: #1E293B; }
.lp-prose .lp-list {
    padding-left: 22px;
    margin: 0 0 16px;
    color: #475569;
    font-size: 15.5px;
    line-height: 1.75;
}
.lp-prose .lp-list li { margin-bottom: 8px; }

.lp-inline-link {
    color: var(--lp-primary, #00349A);
    font-weight: 600;
    text-decoration: none;
}
.lp-inline-link:hover { text-decoration: underline; }

/* ===== Cross-link card (LP) ===== */
.lp-cross-link-section { background: transparent; }
.lp-cross-link-card {
    display: block;
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .15s, transform .15s, box-shadow .15s;
}
.lp-cross-link-card:hover {
    border-color: var(--lp-primary, #00349A);
    transform: translateX(2px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.lp-cross-link-card strong {
    color: var(--lp-primary, #00349A);
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}
.lp-cross-link-card span { color: #475569; font-size: 14.5px; line-height: 1.55; }

/* ===== Category section (hub) ===== */
.lp-category-section .hub-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}
.lp-category-section .hub-category-icon { font-size: 24px; line-height: 1; }
.lp-category-section .hub-category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

/* ===== Pitch grid (hub) ===== */
.lp-pitch-grid {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.lp-pitch-eyebrow {
    font-size: 11px;
    color: var(--lp-primary, #00349A);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.lp-pitch-grid h2 {
    font-size: 26px;
    letter-spacing: -0.01em;
    color: #1E293B;
    margin: 0 0 22px;
}
.lp-pitch-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px;
    text-align: left;
}
.lp-pitch-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #334155;
    line-height: 1.55;
}
.lp-pitch-bullets svg {
    flex: 0 0 auto;
    color: #059669;
    margin-top: 2px;
}

/* ============================================================
   Queda LP — redesign das seções pós-hero
   ============================================================ */

.queda-lp-page {
    background:
        radial-gradient(circle at top right, rgba(0, 52, 154, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.queda-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.queda-lp-page .lp-section-head {
    max-width: 760px;
}

.queda-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.queda-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.queda-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.queda-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.queda-lp-page .queda-variables-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.queda-lp-page .queda-variables-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.queda-lp-page .queda-variables-band__intro .tools-icon {
    color: var(--lp-primary);
}

.queda-lp-page .queda-variables-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.queda-lp-page .queda-variables-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.queda-lp-page .queda-insight-grid,
.queda-lp-page .queda-explainer-grid,
.queda-lp-page .queda-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.queda-lp-page .queda-info-card,
.queda-lp-page .queda-explainer-card,
.queda-lp-page .queda-compliance-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.queda-lp-page .queda-info-card__icon,
.queda-lp-page .queda-compliance-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.queda-lp-page .queda-info-card h3,
.queda-lp-page .queda-explainer-card h3,
.queda-lp-page .queda-compliance-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.queda-lp-page .queda-info-card p,
.queda-lp-page .queda-explainer-card p,
.queda-lp-page .queda-compliance-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.queda-lp-page .queda-explainer-card .lp-list,
.queda-lp-page .queda-compliance-card .lp-list {
    margin: 10px 0 0;
}

.queda-lp-page .queda-explainer-card--wide {
    grid-column: 1 / -1;
}

.queda-lp-page .queda-reduction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.queda-lp-page .queda-reduction-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(0, 52, 154, 0.08);
}

.queda-lp-page .queda-reduction-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
}

.queda-lp-page .queda-compliance-card--warn {
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.94) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.queda-lp-page .queda-compliance-card--warn .queda-compliance-card__icon {
    background: rgba(217, 119, 6, 0.10);
    color: #d97706;
}

.queda-lp-page .queda-faq-section .lp-faq {
    max-width: 860px;
}

.queda-lp-page .queda-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.queda-lp-page .queda-related-section .lp-cross-link-card {
    max-width: 860px;
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.queda-lp-page .queda-related-section .lp-cross-link-card strong {
    font-size: 18px;
}

.queda-lp-page .queda-cta-final {
    position: relative;
    overflow: hidden;
}

.queda-lp-page .queda-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.queda-lp-page .queda-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.queda-lp-page .queda-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.queda-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.queda-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .queda-lp-page .queda-variables-band__items,
    .queda-lp-page .queda-insight-grid,
    .queda-lp-page .queda-explainer-grid,
    .queda-lp-page .queda-compliance-grid,
    .queda-lp-page .queda-reduction-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .queda-lp-page .queda-variables-band__items,
    .queda-lp-page .queda-insight-grid,
    .queda-lp-page .queda-explainer-grid,
    .queda-lp-page .queda-compliance-grid,
    .queda-lp-page .queda-reduction-grid {
        grid-template-columns: 1fr;
    }

    .queda-lp-page .queda-variables-band,
    .queda-lp-page .queda-info-card,
    .queda-lp-page .queda-explainer-card,
    .queda-lp-page .queda-compliance-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .queda-lp-page .queda-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   Disjuntor LP — redesign das seções pós-hero
   ============================================================ */

.disjuntor-lp-page {
    background:
        radial-gradient(circle at top left, rgba(0, 52, 154, 0.05), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.disjuntor-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.disjuntor-lp-page .lp-section-head {
    max-width: 780px;
}

.disjuntor-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.disjuntor-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.disjuntor-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.disjuntor-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.disjuntor-lp-page .disjuntor-decision-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.disjuntor-lp-page .disjuntor-decision-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.disjuntor-lp-page .disjuntor-decision-band__intro .tools-icon {
    color: var(--lp-primary);
}

.disjuntor-lp-page .disjuntor-decision-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.disjuntor-lp-page .disjuntor-decision-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.disjuntor-lp-page .disjuntor-insight-grid,
.disjuntor-lp-page .disjuntor-explainer-grid,
.disjuntor-lp-page .disjuntor-risk-grid,
.disjuntor-lp-page .disjuntor-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.disjuntor-lp-page .disjuntor-info-card,
.disjuntor-lp-page .disjuntor-explainer-card,
.disjuntor-lp-page .disjuntor-risk-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.disjuntor-lp-page .disjuntor-info-card__icon,
.disjuntor-lp-page .disjuntor-risk-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.disjuntor-lp-page .disjuntor-info-card h3,
.disjuntor-lp-page .disjuntor-explainer-card h3,
.disjuntor-lp-page .disjuntor-risk-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.disjuntor-lp-page .disjuntor-info-card p,
.disjuntor-lp-page .disjuntor-explainer-card p,
.disjuntor-lp-page .disjuntor-risk-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.disjuntor-lp-page .disjuntor-explainer-card--wide,
.disjuntor-lp-page .disjuntor-risk-card--wide {
    grid-column: 1 / -1;
}

.disjuntor-lp-page .disjuntor-curves-grid,
.disjuntor-lp-page .disjuntor-polarity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.disjuntor-lp-page .disjuntor-curve-card,
.disjuntor-lp-page .disjuntor-polarity-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(0, 52, 154, 0.08);
}

.disjuntor-lp-page .disjuntor-curve-card strong,
.disjuntor-lp-page .disjuntor-polarity-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
}

.disjuntor-lp-page .disjuntor-curve-card span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.disjuntor-lp-page .disjuntor-curve-card p,
.disjuntor-lp-page .disjuntor-polarity-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.disjuntor-lp-page .disjuntor-risk-card--warn {
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.94) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.disjuntor-lp-page .disjuntor-risk-card--warn .disjuntor-risk-card__icon {
    background: rgba(217, 119, 6, 0.10);
    color: #d97706;
}

.disjuntor-lp-page .disjuntor-faq-section .lp-faq {
    max-width: 860px;
}

.disjuntor-lp-page .disjuntor-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.disjuntor-lp-page .disjuntor-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.disjuntor-lp-page .disjuntor-related-section .lp-cross-link-card {
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.disjuntor-lp-page .disjuntor-related-section .lp-cross-link-card strong {
    font-size: 18px;
}

.disjuntor-lp-page .lp-cross-link-card--current {
    border-color: rgba(0, 52, 154, 0.18);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.disjuntor-lp-page .disjuntor-cta-final {
    position: relative;
    overflow: hidden;
}

.disjuntor-lp-page .disjuntor-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.disjuntor-lp-page .disjuntor-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.disjuntor-lp-page .disjuntor-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.disjuntor-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.disjuntor-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .disjuntor-lp-page .disjuntor-decision-band__items,
    .disjuntor-lp-page .disjuntor-insight-grid,
    .disjuntor-lp-page .disjuntor-explainer-grid,
    .disjuntor-lp-page .disjuntor-risk-grid,
    .disjuntor-lp-page .disjuntor-curves-grid,
    .disjuntor-lp-page .disjuntor-polarity-grid,
    .disjuntor-lp-page .disjuntor-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .disjuntor-lp-page .disjuntor-decision-band__items,
    .disjuntor-lp-page .disjuntor-insight-grid,
    .disjuntor-lp-page .disjuntor-explainer-grid,
    .disjuntor-lp-page .disjuntor-risk-grid,
    .disjuntor-lp-page .disjuntor-curves-grid,
    .disjuntor-lp-page .disjuntor-polarity-grid,
    .disjuntor-lp-page .disjuntor-related-grid {
        grid-template-columns: 1fr;
    }

    .disjuntor-lp-page .disjuntor-decision-band,
    .disjuntor-lp-page .disjuntor-info-card,
    .disjuntor-lp-page .disjuntor-explainer-card,
    .disjuntor-lp-page .disjuntor-risk-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .disjuntor-lp-page .disjuntor-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   DVR/NVR LP — redesign das seções pós-hero
   ============================================================ */

.dvr-lp-page {
    background:
        radial-gradient(circle at top right, rgba(0, 52, 154, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.dvr-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dvr-lp-page .lp-section-head {
    max-width: 780px;
}

.dvr-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.dvr-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.dvr-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.dvr-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.dvr-lp-page .dvr-input-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.dvr-lp-page .dvr-input-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.dvr-lp-page .dvr-input-band__intro .tools-icon {
    color: var(--lp-primary);
}

.dvr-lp-page .dvr-input-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.dvr-lp-page .dvr-input-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.dvr-lp-page .dvr-insight-grid,
.dvr-lp-page .dvr-explainer-grid,
.dvr-lp-page .dvr-compliance-grid,
.dvr-lp-page .dvr-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.dvr-lp-page .dvr-info-card,
.dvr-lp-page .dvr-explainer-card,
.dvr-lp-page .dvr-compliance-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.dvr-lp-page .dvr-info-card__icon,
.dvr-lp-page .dvr-compliance-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.dvr-lp-page .dvr-info-card h3,
.dvr-lp-page .dvr-explainer-card h3,
.dvr-lp-page .dvr-compliance-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.dvr-lp-page .dvr-info-card p,
.dvr-lp-page .dvr-explainer-card p,
.dvr-lp-page .dvr-compliance-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.dvr-lp-page .dvr-explainer-card--wide,
.dvr-lp-page .dvr-compliance-card--wide {
    grid-column: 1 / -1;
}

.dvr-lp-page .dvr-recording-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.dvr-lp-page .dvr-recording-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(0, 52, 154, 0.08);
}

.dvr-lp-page .dvr-recording-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
}

.dvr-lp-page .dvr-recording-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.dvr-lp-page .dvr-compliance-section {
    background:
        linear-gradient(180deg, rgba(234, 242, 255, 0.54) 0%, rgba(248, 251, 255, 0.90) 100%);
}

.dvr-lp-page .dvr-faq-section .lp-faq {
    max-width: 860px;
}

.dvr-lp-page .dvr-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.dvr-lp-page .dvr-related-section .lp-cross-link-card {
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.dvr-lp-page .dvr-related-section .lp-cross-link-card strong {
    font-size: 18px;
}

.dvr-lp-page .dvr-cta-final {
    position: relative;
    overflow: hidden;
}

.dvr-lp-page .dvr-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.dvr-lp-page .dvr-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dvr-lp-page .dvr-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.dvr-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.dvr-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .dvr-lp-page .dvr-input-band__items,
    .dvr-lp-page .dvr-insight-grid,
    .dvr-lp-page .dvr-explainer-grid,
    .dvr-lp-page .dvr-compliance-grid,
    .dvr-lp-page .dvr-recording-grid,
    .dvr-lp-page .dvr-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .dvr-lp-page .dvr-input-band__items,
    .dvr-lp-page .dvr-insight-grid,
    .dvr-lp-page .dvr-explainer-grid,
    .dvr-lp-page .dvr-compliance-grid,
    .dvr-lp-page .dvr-recording-grid,
    .dvr-lp-page .dvr-related-grid {
        grid-template-columns: 1fr;
    }

    .dvr-lp-page .dvr-input-band,
    .dvr-lp-page .dvr-info-card,
    .dvr-lp-page .dvr-explainer-card,
    .dvr-lp-page .dvr-compliance-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .dvr-lp-page .dvr-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   Ângulo de câmera LP — redesign das seções pós-hero
   ============================================================ */

.camera-lp-page {
    background:
        radial-gradient(circle at top right, rgba(0, 52, 154, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.camera-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.camera-lp-page .lp-section-head {
    max-width: 780px;
}

.camera-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.camera-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.camera-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.camera-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.camera-lp-page .camera-input-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.camera-lp-page .camera-input-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.camera-lp-page .camera-input-band__intro .tools-icon {
    color: var(--lp-primary);
}

.camera-lp-page .camera-input-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.camera-lp-page .camera-input-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.camera-lp-page .camera-insight-grid,
.camera-lp-page .camera-explainer-grid,
.camera-lp-page .camera-sensor-grid,
.camera-lp-page .camera-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.camera-lp-page .camera-info-card,
.camera-lp-page .camera-explainer-card,
.camera-lp-page .camera-sensor-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.camera-lp-page .camera-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.camera-lp-page .camera-info-card h3,
.camera-lp-page .camera-explainer-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.camera-lp-page .camera-info-card p,
.camera-lp-page .camera-explainer-card p,
.camera-lp-page .camera-sensor-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.camera-lp-page .camera-explainer-card--wide,
.camera-lp-page .camera-sensor-card--wide {
    grid-column: 1 / -1;
}

.camera-lp-page .camera-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.camera-lp-page .camera-quality-grid div,
.camera-lp-page .camera-sensor-card {
    background: #f8fbff;
    border: 1px solid rgba(0, 52, 154, 0.08);
}

.camera-lp-page .camera-quality-grid div {
    padding: 16px;
    border-radius: 18px;
}

.camera-lp-page .camera-quality-grid strong,
.camera-lp-page .camera-sensor-card strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
}

.camera-lp-page .camera-quality-grid span,
.camera-lp-page .camera-sensor-card span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.camera-lp-page .camera-quality-grid p,
.camera-lp-page .camera-sensor-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.camera-lp-page .camera-sensor-section {
    background:
        linear-gradient(180deg, rgba(234, 242, 255, 0.54) 0%, rgba(248, 251, 255, 0.90) 100%);
}

.camera-lp-page .camera-sensor-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.camera-lp-page .camera-faq-section .lp-faq {
    max-width: 860px;
}

.camera-lp-page .camera-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.camera-lp-page .camera-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.camera-lp-page .camera-related-section .lp-cross-link-card {
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.camera-lp-page .camera-related-section .lp-cross-link-card strong {
    font-size: 18px;
}

.camera-lp-page .lp-cross-link-card--current {
    border-color: rgba(0, 52, 154, 0.18);
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.camera-lp-page .camera-cta-final {
    position: relative;
    overflow: hidden;
}

.camera-lp-page .camera-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.camera-lp-page .camera-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.camera-lp-page .camera-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.camera-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.camera-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .camera-lp-page .camera-input-band__items,
    .camera-lp-page .camera-insight-grid,
    .camera-lp-page .camera-explainer-grid,
    .camera-lp-page .camera-quality-grid,
    .camera-lp-page .camera-sensor-grid,
    .camera-lp-page .camera-related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .camera-lp-page .camera-input-band__items,
    .camera-lp-page .camera-insight-grid,
    .camera-lp-page .camera-explainer-grid,
    .camera-lp-page .camera-quality-grid,
    .camera-lp-page .camera-sensor-grid,
    .camera-lp-page .camera-related-grid {
        grid-template-columns: 1fr;
    }

    .camera-lp-page .camera-input-band,
    .camera-lp-page .camera-info-card,
    .camera-lp-page .camera-explainer-card,
    .camera-lp-page .camera-sensor-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .camera-lp-page .camera-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   Gerador de proposta LP — redesign das seções pós-hero
   ============================================================ */

.proposta-lp-page {
    background:
        radial-gradient(circle at top right, rgba(0, 52, 154, 0.05), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.proposta-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.proposta-lp-page .lp-section-head {
    max-width: 780px;
}

.proposta-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.proposta-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.80);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.proposta-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.proposta-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.proposta-lp-page .proposta-flow-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.proposta-lp-page .proposta-flow-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.proposta-lp-page .proposta-flow-band__intro .tools-icon {
    color: var(--lp-primary);
}

.proposta-lp-page .proposta-flow-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.proposta-lp-page .proposta-flow-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.proposta-lp-page .proposta-insight-grid,
.proposta-lp-page .proposta-explainer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.proposta-lp-page .proposta-info-card,
.proposta-lp-page .proposta-explainer-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.proposta-lp-page .proposta-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.proposta-lp-page .proposta-info-card h3,
.proposta-lp-page .proposta-explainer-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.proposta-lp-page .proposta-info-card p,
.proposta-lp-page .proposta-explainer-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.proposta-lp-page .proposta-explainer-card--wide {
    grid-column: 1 / -1;
}

.proposta-lp-page .proposta-operation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.proposta-lp-page .proposta-operation-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(0, 52, 154, 0.08);
}

.proposta-lp-page .proposta-operation-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
}

.proposta-lp-page .proposta-operation-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.proposta-lp-page .proposta-erp-section {
    background:
        linear-gradient(180deg, rgba(234, 242, 255, 0.54) 0%, rgba(248, 251, 255, 0.90) 100%);
}

.proposta-lp-page .proposta-erp-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 24px;
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.proposta-lp-page .proposta-erp-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.proposta-lp-page .proposta-erp-copy p {
    margin: 0 0 20px;
    color: #475569;
    line-height: 1.7;
}

.proposta-lp-page .proposta-erp-copy .lp-pitch-bullets {
    margin: 0;
}

.proposta-lp-page .proposta-erp-visual {
    display: flex;
    align-items: stretch;
}

.proposta-lp-page .proposta-pipeline-card {
    width: 100%;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0A1831 0%, #11264C 100%);
    color: #fff;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.proposta-lp-page .proposta-pipeline-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.proposta-lp-page .proposta-pipeline-head strong {
    color: #fff;
}

.proposta-lp-page .proposta-pipeline-head span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 700;
}

.proposta-lp-page .proposta-pipeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
}

.proposta-lp-page .proposta-pipeline-row span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.proposta-lp-page .proposta-pipeline-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.proposta-lp-page .proposta-pipeline-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.proposta-lp-page .proposta-faq-section .lp-faq {
    max-width: 860px;
}

.proposta-lp-page .proposta-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.proposta-lp-page .proposta-cta-final {
    position: relative;
    overflow: hidden;
}

.proposta-lp-page .proposta-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.proposta-lp-page .proposta-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.proposta-lp-page .proposta-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.proposta-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.proposta-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .proposta-lp-page .proposta-flow-band__items,
    .proposta-lp-page .proposta-insight-grid,
    .proposta-lp-page .proposta-explainer-grid,
    .proposta-lp-page .proposta-operation-grid,
    .proposta-lp-page .proposta-erp-panel {
        grid-template-columns: 1fr;
    }

    .proposta-lp-page .proposta-pipeline-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .proposta-lp-page .proposta-flow-band,
    .proposta-lp-page .proposta-info-card,
    .proposta-lp-page .proposta-explainer-card,
    .proposta-lp-page .proposta-erp-panel {
        padding: 22px;
    }

    .proposta-lp-page .proposta-pipeline-flow {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .proposta-lp-page .proposta-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ============================================================
   Bitola LP — redesign das seções pós-hero
   ============================================================ */

.bitola-lp-page {
    background:
        radial-gradient(circle at top right, rgba(0, 52, 154, 0.06), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bitola-lp-page .lp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 52, 154, 0.08);
    color: var(--lp-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bitola-lp-page .lp-section-head {
    max-width: 760px;
}

.bitola-lp-page .lp-section-head h2 {
    margin-top: 18px;
}

.bitola-lp-page .lp-step {
    text-align: left;
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .lp-step-num {
    margin: 0 0 18px;
}

.bitola-lp-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(0, 52, 154, 0.06) 0%, rgba(255, 255, 255, 0.96) 100%);
    border-color: rgba(0, 52, 154, 0.16);
}

.bitola-lp-page .bitola-criteria-band {
    display: grid;
    gap: 18px;
    margin-top: 34px;
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.07);
}

.bitola-lp-page .bitola-criteria-band__intro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 600;
}

.bitola-lp-page .bitola-criteria-band__intro .tools-icon {
    color: var(--lp-primary);
}

.bitola-lp-page .bitola-criteria-band__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.bitola-lp-page .bitola-criteria-band__items span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f5f8ff;
    color: #16356b;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.bitola-lp-page .bitola-benefits-section .lp-beneficio-card {
    border-width: 1px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-benefits-section .lp-beneficio-card:hover {
    transform: translateY(-6px);
}

.bitola-lp-page .bitola-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bitola-lp-page .bitola-info-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 16px;
}

.bitola-lp-page .bitola-info-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.bitola-lp-page .bitola-info-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.bitola-lp-page .bitola-info-card .lp-list {
    margin: 10px 0 0;
}

.bitola-lp-page .bitola-explainer {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.bitola-lp-page .bitola-explainer__lead,
.bitola-lp-page .bitola-explainer__note {
    padding: 20px 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.bitola-lp-page .bitola-explainer__lead {
    color: #334155;
    font-size: 15px;
    line-height: 1.7;
}

.bitola-lp-page .bitola-explainer__note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.bitola-lp-page .bitola-explainer__note .tools-icon {
    color: #d97706;
    flex: 0 0 auto;
}

.bitola-lp-page .bitola-warning-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bitola-lp-page .bitola-warning-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-warning-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.2;
    color: #0f172a;
}

.bitola-lp-page .bitola-warning-card p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
}

.bitola-lp-page .bitola-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.bitola-lp-page .bitola-compliance-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-compliance-card--warn {
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.94) 0%, rgba(255, 255, 255, 0.94) 100%);
}

.bitola-lp-page .bitola-compliance-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 52, 154, 0.10);
    color: var(--lp-primary);
    margin-bottom: 14px;
}

.bitola-lp-page .bitola-compliance-card--warn .bitola-compliance-card__icon {
    background: rgba(217, 119, 6, 0.10);
    color: #d97706;
}

.bitola-lp-page .bitola-compliance-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.15;
    color: #0f172a;
}

.bitola-lp-page .bitola-compliance-card p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}

.bitola-lp-page .bitola-faq-section .lp-faq {
    max-width: 860px;
}

.bitola-lp-page .bitola-faq-section .lp-faq details {
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-faq-section .lp-faq details p {
    line-height: 1.75;
}

.bitola-lp-page .bitola-related-section .lp-cross-link-card {
    max-width: 860px;
    padding: 28px 30px;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.bitola-lp-page .bitola-related-section .lp-cross-link-card strong {
    font-size: 18px;
}

.bitola-lp-page .bitola-cta-final {
    position: relative;
    overflow: hidden;
}

.bitola-lp-page .bitola-cta-final::before {
    content: "";
    position: absolute;
    inset: auto -120px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 65%);
}

.bitola-lp-page .bitola-cta-final__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.bitola-lp-page .bitola-cta-final__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bitola-lp-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.bitola-lp-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .bitola-lp-page .bitola-criteria-band__items,
    .bitola-lp-page .bitola-criteria-grid,
    .bitola-lp-page .bitola-warning-grid,
    .bitola-lp-page .bitola-compliance-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .bitola-lp-page .bitola-criteria-band__items,
    .bitola-lp-page .bitola-criteria-grid,
    .bitola-lp-page .bitola-warning-grid,
    .bitola-lp-page .bitola-compliance-grid {
        grid-template-columns: 1fr;
    }

    .bitola-lp-page .bitola-criteria-band,
    .bitola-lp-page .bitola-info-card,
    .bitola-lp-page .bitola-warning-card,
    .bitola-lp-page .bitola-compliance-card {
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .bitola-lp-page .bitola-cta-final__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bitola-lp-page .bitola-explainer__note {
        align-items: flex-start;
    }
}

/* ============================================================
   Tools Hub — redesign escopado só para /tools/
   ============================================================ */

.tools-hub-page {
    --hub-navy: #071935;
    --hub-blue: #0B57D0;
    --hub-blue-deep: #00349A;
    --hub-ink: #10233F;
    --hub-muted: #5E718D;
    --hub-border: #D9E3F0;
    --hub-surface: #FFFFFF;
    --hub-surface-soft: #F3F7FC;
    --hub-surface-tint: #EAF2FF;
    --hub-success: #0F9F6E;
    --hub-shadow: 0 24px 70px rgba(7, 25, 53, 0.12);
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--hub-ink);
    background:
        radial-gradient(circle at top right, rgba(11, 87, 208, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.tools-hub-page .tools-container {
    max-width: 1180px;
}

.tools-hub-page .lp-header {
    border-bottom: 1px solid rgba(7, 25, 53, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.tools-hub-page .lp-header-inner {
    position: relative;
}

.tools-hub-page .lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--hub-navy);
    text-decoration: none;
}

.tools-hub-page .lp-logo-image {
    display: block;
    width: auto;
    height: 34px;
}

.tools-hub-page .lp-logo-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(11, 87, 208, 0.08);
    border: 1px solid rgba(11, 87, 208, 0.12);
    color: var(--hub-blue-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.tools-hub-page .lp-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    position: relative;
}

.tools-hub-page .lp-nav-shell {
    display: flex;
    align-items: center;
}

.tools-hub-page .lp-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(7, 25, 53, 0.10);
    border-radius: 16px;
    background: #fff;
    color: var(--hub-navy);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tools-hub-page .lp-menu-toggle:hover {
    border-color: rgba(11, 87, 208, 0.24);
    background: var(--hub-surface-soft);
}

.tools-hub-page .lp-menu-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tools-hub-page .lp-menu-toggle-icon--close {
    display: none;
}

.tools-hub-page .lp-nav {
    gap: 22px;
}

.tools-hub-page .lp-nav-link {
    color: var(--hub-muted);
    font-size: 0.95rem;
}

.tools-hub-page .lp-nav-link:hover {
    color: var(--hub-ink);
}

.tools-hub-page .lp-btn {
    border-radius: 999px;
    font-weight: 700;
    box-shadow: none;
}

.tools-hub-page .lp-btn .tools-icon {
    width: 18px;
    height: 18px;
}

.tools-hub-page .lp-btn-primary {
    background: linear-gradient(135deg, var(--hub-blue-deep) 0%, var(--hub-blue) 100%);
}

.tools-hub-page .lp-btn-primary:hover {
    box-shadow: 0 16px 34px rgba(11, 87, 208, 0.24);
}

.tools-hub-page .lp-btn-ghost {
    background: #fff;
    color: var(--hub-ink);
    border-color: rgba(16, 35, 63, 0.10);
}

.tools-hub-page .lp-btn-ghost:hover {
    border-color: rgba(11, 87, 208, 0.32);
    background: var(--hub-surface-soft);
    color: var(--hub-blue-deep);
}

.tools-hub-page .lp-btn-secondary {
    background: rgba(11, 87, 208, 0.08);
    color: var(--hub-blue-deep);
    border-color: rgba(11, 87, 208, 0.14);
}

.tools-hub-page .lp-btn-secondary:hover {
    background: rgba(11, 87, 208, 0.12);
    border-color: rgba(11, 87, 208, 0.24);
    color: var(--hub-blue-deep);
}

.tools-hub-page .lp-btn-white {
    background: #fff;
    color: var(--hub-navy);
}

.tools-hub-page .lp-btn-white:hover {
    background: #fff;
    color: var(--hub-navy);
}

.tools-hub-page .lp-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 17px;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.tools-hub-page .lp-btn-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.tools-hub-page .lp-hero {
    padding: 84px 0 88px;
    overflow: visible;
    background: transparent;
}

.tools-hub-page .lp-hero::before {
    top: -14%;
    right: -6%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(11, 87, 208, 0.10) 0%, transparent 64%);
}

.tools-hub-page .lp-hero-grid {
    align-items: center;
    gap: 56px;
}

.tools-hub-page .lp-hero-copy {
    max-width: 620px;
}

.tools-hub-page .lp-badge,
.tools-hub-page .lp-section-kicker,
.tools-hub-page .lp-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 87, 208, 0.08);
    color: var(--hub-blue-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tools-hub-page .lp-badge .tools-icon,
.tools-hub-page .lp-feature-chip .tools-icon {
    width: 14px;
    height: 14px;
}

.tools-hub-page .lp-hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(2.8rem, 5.4vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    max-width: 10ch;
}

.tools-hub-page .lp-hero-sub {
    max-width: 56ch;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--hub-muted);
    margin-bottom: 28px;
}

.tools-hub-page .lp-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--hub-muted);
    margin: 0;
}

.tools-hub-page .lp-hero-trust .tools-icon {
    color: var(--hub-success);
}

.tools-hub-page .lp-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.tools-hub-page .lp-proof-item {
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 87, 208, 0.10);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.tools-hub-page .lp-proof-item strong {
    display: block;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--hub-navy);
    margin-bottom: 8px;
}

.tools-hub-page .lp-proof-item span {
    display: block;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--hub-muted);
}

.tools-hub-page .lp-hero-visual {
    position: relative;
}

.tools-hub-page .lp-workbench {
    position: relative;
    padding: 34px 0;
}

.tools-hub-page .lp-workbench-shell {
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    min-height: 460px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(7, 25, 53, 0.08);
    border-radius: 28px;
    box-shadow: var(--hub-shadow);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.tools-hub-page .lp-workbench-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 18px;
    background: linear-gradient(180deg, #0A1831 0%, #11264C 100%);
}

.tools-hub-page .lp-workbench-sidebar span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.04);
}

.tools-hub-page .lp-workbench-sidebar span.is-active {
    color: #fff;
    background: linear-gradient(135deg, rgba(11, 87, 208, 0.62), rgba(0, 52, 154, 0.92));
}

.tools-hub-page .lp-workbench-main {
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(243, 247, 252, 0.92)),
        linear-gradient(90deg, rgba(217, 227, 240, 0.28) 1px, transparent 1px),
        linear-gradient(rgba(217, 227, 240, 0.24) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
}

.tools-hub-page .lp-workbench-topbar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.tools-hub-page .lp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(16, 35, 63, 0.18);
}

.tools-hub-page .lp-workbench-panel {
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(7, 25, 53, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(16, 35, 63, 0.08);
}

.tools-hub-page .lp-workbench-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.tools-hub-page .lp-workbench-header strong {
    font-size: 1rem;
    color: var(--hub-navy);
}

.tools-hub-page .lp-workbench-header span {
    font-size: 0.82rem;
    color: var(--hub-blue-deep);
    background: var(--hub-surface-tint);
    padding: 6px 10px;
    border-radius: 999px;
}

.tools-hub-page .lp-workbench-fields {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.tools-hub-page .lp-workbench-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(90deg, #ECF2FB 0%, #F7FAFF 100%);
    border: 1px solid rgba(11, 87, 208, 0.10);
}

.tools-hub-page .lp-workbench-field span {
    font-size: 0.82rem;
    color: var(--hub-muted);
}

.tools-hub-page .lp-workbench-field strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hub-navy);
}

.tools-hub-page .lp-workbench-field--wide strong {
    font-size: 0.88rem;
}

.tools-hub-page .lp-workbench-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tools-hub-page .lp-workbench-kpis div {
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #F8FBFF 0%, #EDF4FF 100%);
    border: 1px solid rgba(11, 87, 208, 0.12);
}

.tools-hub-page .lp-workbench-kpis span {
    display: block;
    font-size: 0.82rem;
    color: var(--hub-muted);
    margin-bottom: 10px;
}

.tools-hub-page .lp-workbench-kpis strong {
    font-size: 1.4rem;
    color: var(--hub-navy);
    letter-spacing: -0.04em;
}

.tools-hub-page .lp-workbench-note {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid rgba(7, 25, 53, 0.08);
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(16, 35, 63, 0.12);
    font-size: 0.88rem;
    color: var(--hub-ink);
}

.tools-hub-page .lp-workbench-note .tools-icon {
    color: var(--hub-blue-deep);
}

.tools-hub-page .lp-workbench-note--top {
    top: 0;
    left: -18px;
}

.tools-hub-page .lp-workbench-note--bottom {
    right: -24px;
    bottom: 8px;
}

.tools-hub-page .lp-section {
    padding: 88px 0;
}

.tools-hub-page .lp-section--soft {
    background:
        linear-gradient(180deg, rgba(234, 242, 255, 0.54) 0%, rgba(243, 247, 252, 0.90) 100%);
}

.tools-hub-page .lp-section-head {
    max-width: 760px;
    margin-bottom: 52px;
}

.tools-hub-page .lp-section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-top: 18px;
}

.tools-hub-page .lp-section-head p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--hub-muted);
}

.tools-hub-page .lp-section-kicker--light {
    background: rgba(255, 255, 255, 0.14);
    color: #D9E8FF;
}

.tools-hub-page .lp-steps-grid {
    gap: 18px;
}

.tools-hub-page .lp-step {
    padding: 28px 24px;
    border-radius: 24px;
    text-align: left;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(7, 25, 53, 0.08);
    box-shadow: 0 18px 36px rgba(16, 35, 63, 0.06);
}

.tools-hub-page .lp-step-featured {
    background: linear-gradient(180deg, rgba(11, 87, 208, 0.08) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.tools-hub-page .lp-step-num {
    margin: 0 0 20px;
}

.tools-hub-page .lp-step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.tools-hub-page .lp-step p {
    color: var(--hub-muted);
}

.tools-hub-page .lp-feature-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    margin-top: 36px;
    padding: 28px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(7, 25, 53, 0.08);
    box-shadow: var(--hub-shadow);
}

.tools-hub-page .lp-feature-panel h3 {
    margin: 20px 0 14px;
    font-size: 2rem;
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--hub-navy);
}

.tools-hub-page .lp-feature-panel p {
    margin: 0;
    color: var(--hub-muted);
    line-height: 1.75;
}

.tools-hub-page .lp-feature-legend {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.tools-hub-page .lp-feature-legend div {
    display: grid;
    grid-template-columns: 14px auto;
    gap: 12px;
    align-items: start;
}

.tools-hub-page .lp-feature-legend strong,
.tools-hub-page .lp-feature-legend small {
    grid-column: 2;
}

.tools-hub-page .lp-feature-legend strong {
    font-size: 0.95rem;
    color: var(--hub-ink);
}

.tools-hub-page .lp-feature-legend small {
    display: block;
    margin-top: 4px;
    font-size: 0.87rem;
    line-height: 1.6;
    color: var(--hub-muted);
}

.tools-hub-page .swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 4px;
}

.tools-hub-page .swatch--live {
    background: linear-gradient(135deg, var(--hub-success) 0%, #34D399 100%);
}

.tools-hub-page .swatch--locked {
    background: linear-gradient(135deg, #CBD5E1 0%, #94A3B8 100%);
}

.tools-hub-page .lp-feature-panel-visual {
    display: flex;
    align-items: stretch;
}

.tools-hub-page .lp-module-list {
    display: grid;
    gap: 12px;
    width: 100%;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0A1831 0%, #11264C 100%);
}

.tools-hub-page .lp-module-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 16px;
    border-radius: 16px;
    color: #fff;
    font-weight: 600;
}

.tools-hub-page .lp-module-list .is-live {
    background: linear-gradient(135deg, rgba(15, 159, 110, 0.40), rgba(52, 211, 153, 0.24));
}

.tools-hub-page .lp-module-list .is-locked {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.tools-hub-page .lp-category-section {
    margin-top: 44px;
}

.tools-hub-page .hub-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.tools-hub-page .hub-category-intro {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.tools-hub-page .hub-category-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--hub-surface-tint);
    color: var(--hub-blue-deep);
    font-size: 0.95rem;
    font-weight: 800;
}

.tools-hub-page .hub-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(7, 25, 53, 0.08);
    color: var(--hub-blue-deep);
}

.tools-hub-page .hub-category-title {
    font-size: 1.9rem;
    letter-spacing: -0.04em;
    color: var(--hub-navy);
}

.tools-hub-page .hub-category-count {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 87, 208, 0.06);
    color: var(--hub-blue-deep);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.tools-hub-page .hub-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tools-hub-page .hub-card {
    min-height: 292px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(7, 25, 53, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.05);
}

.tools-hub-page .hub-card-active {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tools-hub-page .hub-card-active:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 87, 208, 0.22);
    box-shadow: 0 28px 56px rgba(16, 35, 63, 0.10);
}

.tools-hub-page .hub-card-disabled {
    opacity: 0.92;
    background: linear-gradient(180deg, rgba(243, 247, 252, 0.92), rgba(255, 255, 255, 0.92));
}

.tools-hub-page .hub-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.tools-hub-page .hub-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: var(--hub-surface-tint);
    color: var(--hub-blue-deep);
}

.tools-hub-page .hub-card h3 {
    font-size: 1.18rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.tools-hub-page .hub-card p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--hub-muted);
}

.tools-hub-page .hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.tools-hub-page .hub-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hub-blue-deep);
}

.tools-hub-page .hub-card-action-muted {
    color: var(--hub-muted);
}

.tools-hub-page .hub-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.tools-hub-page .hub-badge-disponivel {
    background: rgba(15, 159, 110, 0.12);
    color: #0D7B56;
}

.tools-hub-page .hub-badge-mais-usada,
.tools-hub-page .hub-badge-nova {
    background: rgba(11, 87, 208, 0.10);
    color: var(--hub-blue-deep);
}

.tools-hub-page .hub-badge-em-breve {
    background: rgba(148, 163, 184, 0.18);
    color: #5B6B82;
}

.tools-hub-page .lp-quote-card {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0C1B37 0%, #11264C 100%);
    box-shadow: var(--hub-shadow);
    color: #fff;
}

.tools-hub-page .lp-quote-card .lp-section-kicker {
    background: rgba(255, 255, 255, 0.10);
    color: #D7E6FF;
}

.tools-hub-page .lp-quote-text {
    margin: 24px 0 28px;
    font-size: clamp(1.35rem, 3vw, 2.05rem);
    line-height: 1.38;
    letter-spacing: -0.03em;
}

.tools-hub-page .lp-quote-signature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tools-hub-page .lp-quote-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 87, 208, 0.92), rgba(52, 211, 153, 0.62));
    font-weight: 800;
    letter-spacing: -0.03em;
}

.tools-hub-page .lp-quote-signature strong,
.tools-hub-page .lp-quote-signature span {
    display: block;
}

.tools-hub-page .lp-quote-signature span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
}

.tools-hub-page .lp-erp-cta {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    padding: 32px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0C1B37 0%, #10284F 100%);
    box-shadow: var(--hub-shadow);
    color: #fff;
}

.tools-hub-page .lp-erp-cta h2 {
    margin: 18px 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.tools-hub-page .lp-erp-cta p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.tools-hub-page .lp-erp-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.tools-hub-page .lp-erp-cta-visual {
    display: flex;
}

.tools-hub-page .lp-erp-dashboard {
    width: 100%;
    height: 100%;
    min-height: 340px;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.tools-hub-page .lp-erp-dashboard-bar {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 18px;
}

.tools-hub-page .lp-erp-dashboard-bar strong {
    display: block;
    font-size: 0.96rem;
    color: #fff;
}

.tools-hub-page .lp-erp-dashboard-bar small {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.70);
}

.tools-hub-page .lp-erp-dashboard-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(124, 242, 200, 0.16);
    color: #B7FFE7;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.tools-hub-page .lp-erp-dashboard-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.tools-hub-page .lp-erp-summary-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tools-hub-page .lp-erp-summary-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
}

.tools-hub-page .lp-erp-summary-card strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.tools-hub-page .lp-erp-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: 16px;
}

.tools-hub-page .lp-erp-card {
    min-height: 120px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tools-hub-page .lp-erp-card--large {
    min-height: 198px;
    grid-row: span 2;
}

.tools-hub-page .lp-erp-card--wide {
    grid-column: 1 / -1;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tools-hub-page .lp-erp-card-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.84rem;
    font-weight: 600;
}

.tools-hub-page .lp-erp-card strong {
    display: block;
    font-size: 1.16rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.03em;
}

.tools-hub-page .lp-erp-card-kpi {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-top: 10px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    font-weight: 700;
}

.tools-hub-page .lp-erp-card p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    line-height: 1.55;
}

.tools-hub-page .lp-erp-status-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.tools-hub-page .lp-erp-status-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.45;
}

.tools-hub-page .lp-erp-status-list strong {
    font-size: 0.94rem;
    letter-spacing: -0.02em;
}

.tools-hub-page .lp-erp-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    height: 100%;
}

.tools-hub-page .lp-erp-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
}

.tools-hub-page .lp-pitch-bullets {
    gap: 14px;
    margin: 0;
}

.tools-hub-page .lp-pitch-bullets li {
    color: rgba(255, 255, 255, 0.90);
}

.tools-hub-page .lp-pitch-bullets svg {
    color: #7CF2C8;
}

.tools-hub-page .lp-faq {
    max-width: 860px;
}

.tools-hub-page .lp-faq details {
    border-radius: 18px;
    border-color: rgba(7, 25, 53, 0.08);
    box-shadow: 0 18px 36px rgba(16, 35, 63, 0.05);
}

.tools-hub-page .lp-faq details[open] {
    border-color: rgba(11, 87, 208, 0.18);
}

.tools-hub-page .lp-faq summary {
    font-size: 1rem;
}

.tools-hub-page .lp-footer {
    background: #08172F;
    color: rgba(255, 255, 255, 0.70);
}

.tools-hub-page .lp-footer-brand strong {
    color: #fff;
}

.tools-hub-page .tools-footer-attribution strong {
    color: #D7E6FF;
}

.tools-hub-page .lp-footer-nav a {
    color: rgba(255, 255, 255, 0.72);
}

.tools-hub-page .lp-footer-nav a:hover {
    color: #fff;
}

@media (max-width: 1120px) {
    .tools-hub-page .lp-hero-grid,
    .tools-hub-page .lp-feature-panel,
    .tools-hub-page .lp-erp-cta {
        grid-template-columns: 1fr;
    }

    .tools-hub-page .hub-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tools-hub-page .lp-workbench-note--top {
        left: 12px;
    }

    .tools-hub-page .lp-workbench-note--bottom {
        right: 12px;
    }

    .tools-hub-page .lp-erp-cta-copy {
        order: 1;
    }

    .tools-hub-page .lp-erp-cta-visual {
        order: 2;
    }
}

@media (max-width: 840px) {
    .tools-menu-open {
        overflow: hidden;
    }

    .tools-hub-page .lp-menu-toggle {
        display: inline-flex;
    }

    .tools-hub-page .lp-header-actions.is-open .lp-menu-toggle {
        background: var(--hub-surface-soft);
        border-color: rgba(11, 87, 208, 0.22);
    }

    .tools-hub-page .lp-header-actions.is-open .lp-menu-toggle-icon--open {
        display: none;
    }

    .tools-hub-page .lp-header-actions.is-open .lp-menu-toggle-icon--close {
        display: inline-flex;
    }

    .tools-hub-page .lp-nav-shell {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        width: min(340px, calc(100vw - 36px));
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(7, 25, 53, 0.10);
        box-shadow: 0 24px 44px rgba(16, 35, 63, 0.18);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .tools-hub-page .lp-header-actions.is-open .lp-nav-shell {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .tools-hub-page .lp-nav {
        gap: 12px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .tools-hub-page .lp-nav-link {
        display: block;
        padding: 10px 4px;
        color: var(--hub-ink);
    }

    .tools-hub-page .lp-nav .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .tools-hub-page .lp-proof-strip,
    .tools-hub-page .lp-workbench-kpis,
    .tools-hub-page .hub-cards,
    .tools-hub-page .lp-erp-flow {
        grid-template-columns: 1fr;
    }

    .tools-hub-page .lp-workbench-shell {
        grid-template-columns: 1fr;
    }

    .tools-hub-page .lp-workbench-sidebar {
        flex-direction: row;
        overflow-x: auto;
    }

    .tools-hub-page .hub-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tools-hub-page .lp-steps-grid {
        grid-template-columns: 1fr;
    }

    .tools-hub-page .lp-erp-dashboard-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .tools-hub-page .lp-erp-dashboard-summary,
    .tools-hub-page .lp-erp-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .tools-hub-page .lp-erp-card--large,
    .tools-hub-page .lp-erp-card--wide {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .tools-hub-page .tools-container {
        padding: 0 18px;
    }

    .tools-hub-page .lp-header-inner {
        align-items: center;
        flex-direction: row;
    }

    .tools-hub-page .lp-hero {
        padding: 64px 0 72px;
    }

    .tools-hub-page .lp-hero-ctas,
    .tools-hub-page .lp-erp-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tools-hub-page .lp-workbench {
        padding-bottom: 56px;
    }

    .tools-hub-page .lp-workbench-note {
        position: static;
        margin-bottom: 12px;
    }

    .tools-hub-page .lp-workbench-note--bottom {
        margin-top: 12px;
        margin-bottom: 0;
    }

    .tools-hub-page .lp-feature-panel,
    .tools-hub-page .lp-quote-card,
    .tools-hub-page .lp-erp-cta {
        padding: 22px;
        border-radius: 24px;
    }

    .tools-hub-page .lp-logo {
        gap: 10px;
    }

    .tools-hub-page .lp-logo-image {
        height: 30px;
    }

    .tools-hub-page .lp-logo-tag {
        padding: 0 12px;
        font-size: 0.78rem;
    }

    .tools-hub-page .lp-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .tools-hub-page .lp-nav-shell {
        width: min(320px, calc(100vw - 36px));
    }

    .tools-hub-page .lp-erp-dashboard {
        padding: 16px;
    }

    .tools-hub-page .hub-category-intro {
        flex-wrap: wrap;
    }

    .tools-hub-page .lp-quote-text {
        font-size: 1.25rem;
    }
}
