/* ==========================================================================
   InnovaERP — Landing page
   Tudo escopado em .lp para não conflitar com vendor.css / customwelcome.css
   ========================================================================== */

:root {
    --lp-navy-900: #080f3a;
    --lp-navy-800: #0f1a56;
    --lp-navy-700: #17246b;
    --lp-purple: #7b3fe4;
    --lp-purple-600: #6a2fd6;
    --lp-purple-050: #f1ecff;
    --lp-ink: #131a3a;
    --lp-ink-soft: #3a4166;
    --lp-muted: #5b6285;
    --lp-line: #e4e7f5;
    --lp-bg: #ffffff;
    --lp-bg-soft: #f6f7fc;
    --lp-tint: #eceffb;
    /* ---- Escala tipográfica: mexa AQUI para aumentar/diminuir a página ----
       Vale para o conteúdo. Os dois "prints" do sistema (dashboard e lista de
       pedidos) têm tamanhos próprios, menores de propósito, para continuarem
       parecendo captura de tela. */
    --lp-fs-h1: 3.6rem;    /* título do hero          ~58px */
    --lp-fs-h2: 2.85rem;   /* título de seção         ~46px */
    --lp-fs-h3: 1.45rem;   /* título de card          ~23px */
    --lp-fs-lead: 1.4rem;  /* linha de apoio          ~22px */
    --lp-fs-body: 1.18rem; /* texto corrido           ~19px */
    --lp-fs-sm: 1.05rem;   /* apoio menor             ~17px */

    --lp-radius: 14px;
    --lp-shadow: 0 10px 30px rgba(16, 24, 64, .08);
    --lp-shadow-lg: 0 24px 60px rgba(8, 15, 58, .35);
    --lp-max: 1240px;
}

/* --- neutraliza o tema antigo ------------------------------------------- */

/* IMPORTANTE: o vendor.css (tema antigo, padrão Bootstrap 3/AdminLTE) define
   `html { font-size: 10px }`. Sem esta linha TODO rem desta página vale 10px em
   vez de 16px, e a tipografia inteira sai ~40% menor do que o declarado.
   Só afeta a landing — este arquivo não é carregado em nenhuma outra tela. */
html {
    font-size: 100%;
}

body {
    background: #fff !important;
    background-image: none !important;
    color: var(--lp-ink);
}

.content {
    display: block;
    min-height: 0;
}

.navbar.navbar-default.navbar-static-top {
    display: none !important;
}

/* --- base --------------------------------------------------------------- */
.lp {
    font-family: Inter, "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--lp-ink);
    font-size: var(--lp-fs-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.lp * {
    box-sizing: border-box;
}

/* :where() zera a especificidade, para que as classes .lp-* abaixo
   sempre vençam estas regras de base. */
:where(.lp) p {
    margin: 0 0 1rem;
    color: var(--lp-muted);
}

:where(.lp) h1,
:where(.lp) h2,
:where(.lp) h3,
:where(.lp) h4 {
    margin: 0 0 .6rem;
    color: var(--lp-ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
}

:where(.lp) a {
    color: inherit;
    text-decoration: none;
}

:where(.lp) ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:where(.lp) img {
    max-width: 100%;
}

.lp-wrap {
    width: 100%;
    max-width: var(--lp-max);
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: 84px 0;
    background: var(--lp-bg);
}

/* âncoras não ficam escondidas atrás do cabeçalho fixo */
.lp [id] {
    scroll-margin-top: 92px;
}

.lp-section--soft {
    background: var(--lp-bg-soft);
}

.lp-section--tint {
    background: var(--lp-tint);
}

.lp-h2 {
    font-size: var(--lp-fs-h2);
    margin-bottom: .6rem;
}

.lp-lead {
    font-size: var(--lp-fs-lead);
    max-width: 720px;
}

.lp-center {
    text-align: center;
}

.lp-center .lp-lead {
    margin-left: auto;
    margin-right: auto;
}

.lp-head-block {
    margin-bottom: 48px;
}

/* --- botões ------------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: var(--lp-fs-body);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}

.lp-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.lp-btn--primary {
    background: var(--lp-purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(123, 63, 228, .32);
}

.lp-btn--primary:hover {
    background: var(--lp-purple-600);
    color: #fff;
}

.lp-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
}

.lp-btn--ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.lp-btn--outline {
    background: #fff;
    color: var(--lp-purple);
    border-color: #d9cffa;
}

.lp-btn--outline:hover {
    border-color: var(--lp-purple);
    color: var(--lp-purple-600);
}

.lp-btn--sm {
    padding: 12px 24px;
    font-size: var(--lp-fs-sm);
}

.lp-btn--block {
    width: 100%;
}

/* --- header ------------------------------------------------------------- */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 17, 62, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lp-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 76px;
}

/* O logo_innova.png tem muita margem vazia e o texto em branco: recortamos a
   área útil via wrapper. Usar apenas sobre fundo escuro. */
.lp-brand {
    display: block;
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
    width: 106px;
    height: 34px;
}

.lp-brand img {
    position: absolute;
    max-width: none;
    width: 163px;
    height: 109px;
    left: -32px;
    top: -38px;
}

.lp-brand--lg {
    width: 124px;
    height: 40px;
}

.lp-brand--lg img {
    width: 192px;
    height: 128px;
    left: -37px;
    top: -45px;
}

/* apenas o ícone da marca (sem o texto) — funciona em fundo claro */
.lp-brand--icon {
    width: 32px;
    height: 34px;
}

.lp-brand--xs {
    width: 56px;
    height: 18px;
}

.lp-brand--xs img {
    width: 86px;
    height: 58px;
    left: -17px;
    top: -20px;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.lp-nav a {
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
    font-size: 1.15rem;
    transition: color .2s ease;
}

.lp-nav a:hover {
    color: #fff;
}

/* só aparecem dentro do menu sanduíche, quando os botões do topo somem */
.lp-nav__mobile {
    display: none;
}

.lp-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.lp-header__actions .lp-link {
    color: #fff;
    font-weight: 500;
}

.lp-burger {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    padding: 6px;
    cursor: pointer;
}

/* --- hero --------------------------------------------------------------- */
.lp-hero {
    position: relative;
    background:
        radial-gradient(1100px 520px at 82% 6%, rgba(96, 76, 224, .45), transparent 60%),
        linear-gradient(155deg, var(--lp-navy-900) 0%, var(--lp-navy-800) 48%, #16277a 100%);
    color: #fff;
    padding: 76px 0 96px;
    overflow: hidden;
}

.lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(115deg, transparent 46%, rgba(255, 255, 255, .05) 47%, transparent 49%),
        linear-gradient(115deg, transparent 62%, rgba(255, 255, 255, .04) 63%, transparent 66%);
    pointer-events: none;
}

.lp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    gap: 44px;
    align-items: center;
}

.lp-hero h1 {
    color: #fff;
    font-size: var(--lp-fs-h1);
    line-height: 1.06;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}

.lp-hero__sub {
    color: rgba(255, 255, 255, .82);
    font-size: 1.55rem;
    max-width: 32ch;
    margin-bottom: 36px;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 26px;
}

.lp-hero__note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: var(--lp-fs-body);
}

.lp-hero__note svg {
    flex: 0 0 auto;
    color: #a78bfa;
}

/* --- mockup do sistema (browser window) --------------------------------- */
.lp-mock {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
    color: var(--lp-ink);
}

.lp-mock__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    background: #f1f2f7;
    border-bottom: 1px solid #e3e5ef;
}

.lp-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f57;
}

.lp-mock__dot:nth-child(2) {
    background: #febc2e;
}

.lp-mock__dot:nth-child(3) {
    background: #28c840;
}

.lp-mock__body {
    display: grid;
    grid-template-columns: 162px minmax(0, 1fr);
    min-height: 380px;
}

.lp-mock__side {
    background: #101a4d;
    padding: 16px 12px;
}

.lp-mock__side .lp-brand {
    margin: 0 0 18px 6px;
}

.lp-mock__nav li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    border-radius: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
    margin-bottom: 2px;
}

.lp-mock__nav li.is-active {
    background: var(--lp-purple);
    color: #fff;
    font-weight: 600;
}

.lp-mock__nav svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.lp-mock__main {
    padding: 18px;
    background: #fbfbfe;
    min-width: 0;
}

.lp-mock__topline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.lp-mock__title {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0;
}

.lp-mock__title + p {
    font-size: .84rem;
    margin: 2px 0 0;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--lp-line);
    background: #fff;
    border-radius: 7px;
    padding: 6px 11px;
    font-size: .8rem;
    color: var(--lp-ink-soft);
}

.lp-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.lp-kpi {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 9px;
    padding: 10px 11px;
}

.lp-kpi__label {
    font-size: .76rem;
    color: var(--lp-muted);
    margin: 0 0 4px;
}

.lp-kpi__value {
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -.03em;
    white-space: nowrap;
}

.lp-kpi__delta {
    font-size: .72rem;
    color: #12a150;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.lp-kpi__delta span {
    color: var(--lp-muted);
}

.lp-panels {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 1fr;
    gap: 10px;
}

.lp-panel {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 9px;
    padding: 11px;
}

.lp-panel__title {
    font-size: .84rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.lp-donut-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lp-donut {
    position: relative;
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: conic-gradient(#3b82f6 0 39%, #12a150 39% 64%, #f59e0b 64% 82%, #6366f1 82% 95%, #14b8a6 95% 100%);
}

.lp-donut::after {
    content: "";
    position: absolute;
    inset: 12px;
    background: #fff;
    border-radius: 50%;
}

.lp-donut__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    line-height: 1.1;
}

.lp-donut__label b {
    font-size: .9rem;
}

.lp-donut__label span {
    font-size: .62rem;
    color: var(--lp-muted);
}

.lp-legend {
    width: 100%;
}

.lp-legend li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .74rem;
    color: var(--lp-ink-soft);
    margin-bottom: 4px;
}

.lp-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.lp-legend b {
    margin-left: auto;
    color: var(--lp-ink);
}

.lp-spark {
    width: 100%;
    height: 96px;
    display: block;
}

.lp-alerts li {
    display: flex;
    gap: 8px;
    margin-bottom: 9px;
}

.lp-alerts li:last-child {
    margin-bottom: 0;
}

.lp-alerts svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    margin-top: 2px;
}

.lp-alerts b {
    display: block;
    font-size: .78rem;
}

.lp-alerts span {
    font-size: .72rem;
    color: var(--lp-muted);
}

/* --- faixa de marketplaces ---------------------------------------------- */
.lp-channels {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.lp-channels__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
    padding: 18px 26px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.lp-channels__label {
    font-size: var(--lp-fs-sm);
    color: var(--lp-muted);
    font-weight: 600;
    flex: 0 0 auto;
}

.lp-channels__list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1 1 auto;
    justify-content: space-around;
}

.lp-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -.01em;
    color: var(--lp-ink);
    padding: 6px 4px;
}

.lp-channel img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.lp-channel--ml {
    color: #2d3277;
}

.lp-channel--shopee {
    color: #ee4d2d;
}

.lp-channel--magalu {
    color: #0086ff;
}

.lp-channel--amazon {
    color: #131a3a;
}

.lp-channel--shein {
    color: #131a3a;
    letter-spacing: .16em;
}

.lp-channel--tiktok {
    color: #131a3a;
}

.lp-tag-soon {
    background: var(--lp-purple-050);
    color: var(--lp-purple);
    font-size: .72rem;
    font-weight: 700;
    font-style: normal;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: 0;
}

/* --- grids de cards ------------------------------------------------------ */
.lp-grid {
    display: grid;
    gap: 20px;
}

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

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

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

.lp-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    padding: 30px 28px;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.lp-card:hover {
    box-shadow: var(--lp-shadow);
    border-color: #d7dbf0;
    transform: translateY(-2px);
}

.lp-card h3 {
    font-size: var(--lp-fs-h3);
    margin-bottom: 9px;
}

.lp-card p {
    font-size: var(--lp-fs-body);
    margin: 0;
}

.lp-ico {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lp-purple-050);
    color: var(--lp-purple);
    margin-bottom: 16px;
}

.lp-ico svg {
    width: 24px;
    height: 24px;
}

.lp-ico--blue {
    background: #e8f0ff;
    color: #2563eb;
}

.lp-ico--green {
    background: #e6f6ee;
    color: #0f9d58;
}

.lp-ico--amber {
    background: #fdf1de;
    color: #d97706;
}

.lp-ico--pink {
    background: #fdeaf3;
    color: #db2777;
}

.lp-ico--teal {
    background: #e3f6f5;
    color: #0d9488;
}

/* --- fluxo venda -> expedição -------------------------------------------- */
.lp-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

/* dá mais espaço para o lado do mockup (tabela de pedidos) */
.lp-split--mock {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
    gap: 48px;
}

.lp-flow {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.lp-flow__step {
    flex: 1 1 110px;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
}

.lp-flow__step .lp-ico {
    margin: 0 auto 12px;
}

.lp-flow__step b {
    font-size: 1.08rem;
    color: var(--lp-ink);
    font-weight: 600;
}

.lp-flow__arrow {
    display: flex;
    align-items: center;
    color: #9aa2c8;
    flex: 0 0 auto;
}

/* --- tabela de pedidos (mock) -------------------------------------------- */
.lp-orders {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
}

.lp-orders th {
    text-align: left;
    font-weight: 600;
    color: var(--lp-muted);
    padding: 8px 5px;
    border-bottom: 1px solid var(--lp-line);
    white-space: nowrap;
}

.lp-orders td {
    padding: 9px 5px;
    border-bottom: 1px solid #f0f1f8;
    color: var(--lp-ink-soft);
    white-space: nowrap;
}

.lp-orders tr:last-child td {
    border-bottom: 0;
}

.lp-orders__scroll {
    overflow-x: auto;
}

.lp-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.5;
}

.lp-badge--green {
    background: #e6f6ee;
    color: #0f7a44;
}

.lp-badge--blue {
    background: #e8f0ff;
    color: #1d4ed8;
}

.lp-badge--amber {
    background: #fdf1de;
    color: #b45309;
}

.lp-badge--red {
    background: #fdeaea;
    color: #c62828;
}

.lp-badge--gray {
    background: #eef0f7;
    color: #4b5270;
}

.lp-mock__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    font-size: .76rem;
    color: var(--lp-muted);
    flex-wrap: wrap;
}

.lp-pager {
    display: flex;
    gap: 4px;
}

.lp-pager span {
    min-width: 22px;
    height: 22px;
    border: 1px solid var(--lp-line);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.lp-pager span.is-active {
    background: var(--lp-purple);
    border-color: var(--lp-purple);
    color: #fff;
    font-weight: 600;
}

.lp-marketplace {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: .78rem;
}

/* --- prova social -------------------------------------------------------- */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.lp-stat {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-stat .lp-ico {
    margin: 0;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
}

.lp-stat .lp-ico svg {
    width: 20px;
    height: 20px;
}

.lp-stat b {
    display: block;
    font-size: 1.28rem;
    line-height: 1.25;
}

.lp-stat span {
    font-size: 1.12rem;
    color: var(--lp-muted);
}

.lp-quote {
    background: #fff;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    padding: 34px 36px;
}

.lp-quote__mark {
    color: #c9b8f7;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.lp-quote p {
    font-size: 1.5rem;
    color: var(--lp-ink);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 22px;
}

.lp-quote__author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.12rem;
    color: var(--lp-muted);
}

.lp-quote__author b {
    color: var(--lp-ink);
}

/* --- FAQ ----------------------------------------------------------------- */
.lp-faq {
    display: grid;
    gap: 12px;
}

.lp-faq--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 22px;
    align-items: start; /* item aberto não estica o irmão da mesma linha */
}

.lp-faq details {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 11px;
    padding: 0 18px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.lp-faq details[open] {
    border-color: #d3d8f0;
    box-shadow: var(--lp-shadow);
}

.lp-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 19px 34px 19px 0;
    font-weight: 600;
    font-size: 1.24rem;
    position: relative;
    color: var(--lp-ink);
}

.lp-faq summary::-webkit-details-marker {
    display: none;
}

.lp-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--lp-muted);
    line-height: 1;
}

.lp-faq details[open] summary::after {
    content: "\2212";
}

.lp-faq details > p {
    margin: 0;
    padding: 0 0 19px;
    font-size: var(--lp-fs-body);
}

/* --- planos -------------------------------------------------------------- */
.lp-plans-band {
    background: linear-gradient(180deg, #f3f2fd 0%, #eceafb 100%);
    border-radius: 22px;
    padding: 62px 40px 54px;
    margin: 0 auto;
    max-width: var(--lp-max);
    position: relative;
    overflow: hidden;
}

.lp-plans-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(123, 63, 228, .1) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .5;
    pointer-events: none;
}

.lp-plans-band > * {
    position: relative;
    z-index: 1;
}

.lp-plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.lp-plan {
    background: #fff;
    border: 1px solid #e2e0f3;
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.lp-plan--featured {
    border: 2px solid var(--lp-purple);
    box-shadow: 0 18px 44px rgba(123, 63, 228, .18);
}

.lp-plan__tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-purple);
    color: #fff;
    font-size: .92rem;
    font-weight: 600;
    padding: 5px 17px;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-plan h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.lp-plan__price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 0 0 20px;
    white-space: nowrap;
}

.lp-plan__cur {
    font-size: 1.05rem;
    font-weight: 700;
    margin-right: 3px;
    vertical-align: .28em;
}

.lp-plan__per {
    font-size: .95rem;
    font-weight: 500;
    color: var(--lp-muted);
    letter-spacing: 0;
}

.lp-plan__specs {
    border-top: 1px solid var(--lp-line);
    padding-top: 16px;
    margin-bottom: 22px;
}

.lp-plan__specs li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.08rem;
    color: var(--lp-muted);
    padding: 7px 0;
}

.lp-plan__specs b {
    color: var(--lp-ink);
    font-weight: 700;
    text-align: right;
}

.lp-plan__soon {
    font-size: .82rem !important;
    font-weight: 700;
    color: var(--lp-purple) !important;
    background: var(--lp-purple-050);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-plan__none {
    color: #b3b8cf !important;
}

.lp-plan .lp-btn {
    margin-top: auto;
}

.lp-plans__more {
    text-align: center;
    margin: 28px 0 0;
    font-size: var(--lp-fs-body);
    color: var(--lp-muted);
}

.lp-plans__more a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-purple);
    font-weight: 600;
    border-bottom: 1.5px solid transparent;
    transition: border-color .2s ease;
}

.lp-plans__more a:hover {
    border-bottom-color: var(--lp-purple);
    text-decoration: none;
}

.lp-checks {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 36px;
    font-size: var(--lp-fs-body);
    color: var(--lp-ink-soft);
}

.lp-checks li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-checks svg {
    color: var(--lp-purple);
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

/* ==========================================================================
   Página de planos (/pricing)
   ========================================================================== */

.lp-eyebrow {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lp-purple);
}

/* A quantidade de planos vem do banco e pode mudar: auto-fit acomoda de 1 a N
   sem quebrar. Cada coluna fica entre 210px e 260px, então cabem até 5 por
   linha no container de 1240px e o excedente desce para a linha seguinte com a
   mesma largura — nada de card gigante quando há poucos planos. */
.lp-pr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 260px));
    justify-content: center;
    gap: 34px 16px;
    align-items: stretch;
    padding-top: 6px;
}

.lp-pr-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    padding: 28px 22px;
    transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.lp-pr-card--featured {
    border: 2px solid var(--lp-purple);
    box-shadow: 0 18px 44px rgba(123, 63, 228, .18);
}

.lp-pr-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lp-purple);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.lp-pr-card:hover {
    box-shadow: var(--lp-shadow);
    border-color: #d3d8f0;
    transform: translateY(-2px);
}

.lp-pr-name {
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 10px;
}

.lp-pr-price {
    text-align: center;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--lp-purple);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin: 0 0 22px;
    white-space: nowrap;
}

.lp-pr-cur {
    font-size: .95rem;
    font-weight: 700;
    margin-right: 3px;
    vertical-align: .3em;
}

.lp-pr-per {
    font-size: .9rem;
    font-weight: 500;
    color: var(--lp-muted);
    letter-spacing: 0;
}

.lp-pr-limits {
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    padding: 16px 0;
    margin-bottom: 16px;
}

.lp-pr-limits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--lp-ink);
    padding: 5px 0;
}

.lp-pr-limits svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--lp-muted);
}

.lp-pr-sub {
    font-size: .95rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 10px;
}

.lp-pr-included {
    margin-bottom: 22px;
}

.lp-pr-included li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .98rem;
    color: var(--lp-muted);
    padding: 4px 0;
}

.lp-pr-included svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--lp-purple);
}

.lp-pr-cta {
    margin-top: auto;
}

.lp-pr-foot {
    text-align: center;
    font-size: .88rem;
    color: var(--lp-muted);
    margin: 12px 0 0;
}

.lp-pr-extra {
    text-align: center;
    font-size: .85rem;
    color: var(--lp-muted);
    margin: 6px 0 0;
    padding-top: 8px;
    border-top: 1px dashed var(--lp-line);
}

/* --- faixa "todos os planos incluem" ------------------------------------- */
.lp-allplans {
    background: var(--lp-purple-050);
    border-radius: 16px;
    padding: 30px 28px;
    margin-top: 26px;
    text-align: center;
}

.lp-allplans__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lp-ink);
    margin: 0 0 20px;
}

.lp-allplans__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 0;
}

.lp-allplans__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--lp-ink-soft);
    padding: 0 22px;
}

.lp-allplans__list li + li {
    border-left: 1px solid #d9d5f2;
}

.lp-allplans__list svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--lp-purple);
}

.lp-allplans__note {
    margin: 20px 0 0;
    font-size: 1rem;
    color: var(--lp-muted);
}

/* --- footer -------------------------------------------------------------- */
.lp-footer {
    background: var(--lp-navy-900);
    color: rgba(255, 255, 255, .72);
    padding: 62px 0 26px;
    margin-top: 84px;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.lp-footer h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
}

.lp-footer p {
    color: rgba(255, 255, 255, .6);
    font-size: 1.12rem;
    max-width: 30ch;
}

.lp-footer .lp-brand {
    margin-bottom: 14px;
}

.lp-footer li {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.lp-footer a:hover {
    color: #fff;
    text-decoration: none;
}

.lp-footer__contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-footer__contact svg {
    width: 17px;
    height: 17px;
    color: #a78bfa;
    flex: 0 0 auto;
}

.lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: var(--lp-fs-sm);
    color: rgba(255, 255, 255, .55);
}

.lp-footer__legal {
    display: flex;
    gap: 22px;
}

/* --- responsivo ---------------------------------------------------------- */
@media (max-width: 1080px) {
    .lp-hero__grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .lp-hero h1 {
        font-size: 3.4rem;
    }

    .lp-hero__sub {
        max-width: 52ch;
    }

    .lp-split--mock {
        grid-template-columns: 1fr;
    }

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

    .lp-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 900px) {
    .lp-nav {
        display: none;
    }

    .lp-burger {
        display: inline-flex;
        margin-left: auto;
    }

    .lp-header__inner {
        gap: 12px;
    }

    .lp-nav.is-open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--lp-navy-800);
        padding: 8px 24px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .lp-nav.is-open a {
        padding: 12px 0;
        width: 100%;
    }

    .lp-faq--grid {
        grid-template-columns: 1fr;
    }

    .lp-allplans__list li {
        padding: 0 16px;
    }

    .lp-mock__body {
        grid-template-columns: 1fr;
    }

    .lp-mock__side {
        display: none;
    }

    .lp-panels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .lp-section {
        padding: 58px 0;
    }

    .lp-h2 {
        font-size: 2.2rem;
    }

    .lp-lead {
        font-size: 1.25rem;
    }

    .lp-hero {
        padding: 52px 0 80px;
    }

    .lp-hero h1 {
        font-size: 2.7rem;
    }

    .lp-hero__sub {
        font-size: 1.35rem;
    }

    .lp-hero__actions .lp-btn {
        flex: 1 1 100%;
    }

    .lp-header__actions {
        display: none;
    }

    .lp-nav.is-open .lp-nav__mobile {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .lp-grid--4,
    .lp-grid--3,
    .lp-grid--2 {
        grid-template-columns: 1fr;
    }

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

    .lp-stats {
        grid-template-columns: 1fr;
    }

    .lp-flow__arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .lp-flow__step {
        flex: 1 1 100%;
    }

    .lp-channels__card {
        justify-content: center;
        text-align: center;
    }

    .lp-plans-band {
        padding: 44px 20px 38px;
        border-radius: 16px;
    }

    .lp-plans {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .lp-quote {
        padding: 26px 22px;
    }

    .lp-allplans__list li {
        flex: 1 1 45%;
        justify-content: center;
        padding: 8px 10px;
    }

    .lp-allplans__list li + li {
        border-left: 0;
    }

    .lp-footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lp-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
