:root {
    --lp-bg: #f5f7fa;
    --lp-surface: #ffffff;
    --lp-surface-soft: #f8fafc;
    --lp-dark: #0a1322;
    --lp-dark-soft: #111f34;
    --lp-dark-light: #1a304d;
    --lp-text: #162033;
    --lp-muted: #697386;
    --lp-line: #e3e8ef;
    --lp-primary: #e4572e;
    --lp-primary-dark: #c9431f;
    --lp-primary-soft: #fff0e9;
    --lp-green: #1ca45a;
    --lp-green-soft: #e9f8ef;
    --lp-blue: #3274b9;
    --lp-blue-soft: #eaf3ff;
    --lp-purple: #7453bd;
    --lp-yellow: #d99a21;
    --lp-container: 1260px;
    --lp-radius-sm: 14px;
    --lp-radius: 22px;
    --lp-radius-lg: 32px;
    --lp-shadow-sm: 0 12px 32px rgba(10, 19, 34, 0.08);
    --lp-shadow: 0 30px 80px rgba(10, 19, 34, 0.14);
    --lp-shadow-lg: 0 45px 120px rgba(10, 19, 34, 0.22);
}

html {
    scroll-behavior: smooth;
}

body.lp-body {
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--lp-text);
    background: var(--lp-surface);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.lp-menu-open {
    overflow: hidden;
}

.lp-body *,
.lp-body *::before,
.lp-body *::after {
    box-sizing: border-box;
}

.lp-body img {
    display: block;
    max-width: 100%;
}

.lp-body a {
    color: inherit;
    text-decoration: none;
}

.lp-body button {
    font: inherit;
}

.lp-container {
    width: min(var(--lp-container), calc(100% - 40px));
    margin-inline: auto;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cabeçalho */

.lp-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top);
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-header.is-scrolled {
    border-color: rgba(227, 232, 239, 0.92);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 32px rgba(10, 19, 34, 0.08);
}

.lp-header-shell {
    width: min(var(--lp-container), calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.lp-brand {
    width: 158px;
    height: 56px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.lp-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lp-nav a {
    position: relative;
    padding: 11px 0;
    color: #485568;
    font-size: 0.82rem;
    font-weight: 720;
}

.lp-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 2px;
    left: 50%;
    height: 2px;
    border-radius: 999px;
    background: var(--lp-primary);
    transition: left 0.2s ease, right 0.2s ease;
}

.lp-nav a:hover {
    color: var(--lp-primary);
}

.lp-nav a:hover::after {
    right: 0;
    left: 0;
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-login {
    padding: 11px 13px;
    color: var(--lp-dark);
    font-size: 0.8rem;
    font-weight: 750;
}

.lp-login:hover {
    color: var(--lp-primary);
}

.lp-button {
    min-height: 50px;
    padding: 13px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 820;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-button:hover {
    transform: translateY(-2px);
}

.lp-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-button-compact {
    min-height: 42px;
    padding: 10px 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    box-shadow: 0 9px 21px rgba(228, 87, 46, 0.22);
}

.lp-menu-toggle {
    width: 43px;
    height: 43px;
    padding: 0;
    display: none;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
}

.lp-menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--lp-dark);
}

/* Hero */

.lp-hero {
    position: relative;
    padding: 160px 0 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(228, 87, 46, 0.12), transparent 27%),
        radial-gradient(circle at 88% 18%, rgba(50, 116, 185, 0.11), transparent 29%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.lp-hero-grid,
.lp-final-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(10, 19, 34, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 19, 34, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.lp-hero-orb-one {
    top: 130px;
    left: -230px;
    width: 470px;
    height: 470px;
    background: rgba(228, 87, 46, 0.07);
}

.lp-hero-orb-two {
    top: 40px;
    right: -260px;
    width: 580px;
    height: 580px;
    background: rgba(17, 44, 77, 0.07);
}

.lp-hero-shell {
    position: relative;
    z-index: 2;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr);
    align-items: center;
    gap: clamp(46px, 6vw, 88px);
}

.lp-kicker,
.lp-section-label,
.lp-card-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--lp-primary);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lp-kicker i {
    width: 30px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
}

.lp-hero-copy h1 {
    max-width: 720px;
    margin: 20px 0 22px;
    color: var(--lp-dark);
    font-size: clamp(3.2rem, 6.2vw, 6.25rem);
    font-weight: 920;
    letter-spacing: -0.075em;
    line-height: 0.94;
}

.lp-hero-copy h1 span {
    color: var(--lp-primary);
}

.lp-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.78;
}

.lp-hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

.lp-button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    box-shadow: 0 16px 34px rgba(228, 87, 46, 0.26);
}

.lp-button-primary:hover {
    box-shadow: 0 20px 42px rgba(228, 87, 46, 0.32);
}

.lp-button-ghost {
    border-color: #d7dee7;
    color: var(--lp-dark);
    background: rgba(255, 255, 255, 0.86);
}

.lp-button-ghost:hover {
    border-color: #c6cfdb;
    background: #ffffff;
    box-shadow: var(--lp-shadow-sm);
}

.lp-trust-line {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
}

.lp-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #536174;
    font-size: 0.7rem;
    font-weight: 700;
}

.lp-trust-line svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    border-radius: 50%;
    fill: none;
    stroke: var(--lp-green);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: var(--lp-green-soft);
}

/* Cockpit */

.lp-cockpit {
    position: relative;
    min-width: 0;
    padding: 48px 0 44px;
}

.lp-cockpit-halo {
    position: absolute;
    inset: 10% 3%;
    border-radius: 45%;
    background: radial-gradient(circle, rgba(228, 87, 46, 0.17), rgba(50, 116, 185, 0.08) 48%, transparent 72%);
    filter: blur(32px);
}

.lp-cockpit-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(211, 219, 229, 0.95);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--lp-shadow-lg);
    transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}

.lp-cockpit-topbar {
    min-height: 67px;
    padding: 12px 15px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e8edf3;
}

.lp-window-controls {
    display: flex;
    gap: 5px;
}

.lp-window-controls i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d7df;
}

.lp-window-controls i:first-child { background: #eb6d65; }
.lp-window-controls i:nth-child(2) { background: #efb149; }
.lp-window-controls i:last-child { background: #58c37a; }

.lp-cockpit-company {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lp-cockpit-company > span {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    font-size: 0.84rem;
    font-weight: 900;
}

.lp-cockpit-company div {
    display: grid;
    gap: 2px;
}

.lp-cockpit-company strong { font-size: 0.68rem; }
.lp-cockpit-company small { color: #8a95a4; font-size: 0.51rem; }

.lp-live-badge {
    padding: 6px 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bfe5cc;
    border-radius: 999px;
    color: #17713c;
    background: #edf9f1;
    font-size: 0.54rem;
    font-weight: 800;
}

.lp-live-badge i,
.lp-floating-event > i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lp-green);
    box-shadow: 0 0 0 4px rgba(28, 164, 90, 0.12);
}

.lp-cockpit-layout {
    min-height: 438px;
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
}

.lp-cockpit-sidebar {
    padding: 17px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #cbd5e2;
    background: linear-gradient(180deg, #13243c, #0d1a2c);
}

.lp-cockpit-sidebar span {
    min-height: 36px;
    padding: 8px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 0.54rem;
    font-weight: 650;
}

.lp-cockpit-sidebar span.is-active {
    color: #ffffff;
    background: rgba(228, 87, 46, 0.22);
    box-shadow: inset 2px 0 var(--lp-primary);
}

.lp-cockpit-sidebar svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-cockpit-content {
    padding: 20px;
    background: #f5f7fa;
}

.lp-cockpit-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-cockpit-heading > div {
    display: grid;
    gap: 3px;
}

.lp-cockpit-heading small { color: #8a95a4; font-size: 0.5rem; }
.lp-cockpit-heading strong { font-size: 0.82rem; }

.lp-cockpit-heading > span {
    padding: 6px 9px;
    border: 1px solid #dfe5ec;
    border-radius: 7px;
    color: #697386;
    background: #ffffff;
    font-size: 0.52rem;
    font-weight: 700;
}

.lp-cockpit-metrics {
    margin-top: 15px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.lp-cockpit-metrics article {
    padding: 12px;
    display: grid;
    gap: 5px;
    border: 1px solid #e4e9ef;
    border-radius: 11px;
    background: #ffffff;
}

.lp-cockpit-metrics span { color: #7a8594; font-size: 0.48rem; }
.lp-cockpit-metrics strong { font-size: 0.85rem; }
.lp-cockpit-metrics small { color: #8a95a4; font-size: 0.44rem; }
.lp-cockpit-metrics small.is-positive { color: var(--lp-green); }

.lp-cockpit-main-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(190px, 0.9fr);
    gap: 10px;
}

.lp-orders-panel,
.lp-performance-panel {
    padding: 13px;
    border: 1px solid #e4e9ef;
    border-radius: 11px;
    background: #ffffff;
}

.lp-orders-panel > header,
.lp-performance-panel > header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.lp-orders-panel > header div,
.lp-performance-panel > header div {
    display: grid;
    gap: 2px;
}

.lp-orders-panel > header strong,
.lp-performance-panel > header strong { font-size: 0.61rem; }
.lp-orders-panel > header small,
.lp-performance-panel > header small { color: #8a95a4; font-size: 0.43rem; }
.lp-orders-panel > header > span { color: var(--lp-primary); font-size: 0.44rem; font-weight: 800; }

.lp-order-row {
    padding: 9px 0;
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    border-top: 1px solid #edf1f4;
}

.lp-order-number {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 0.49rem;
    font-weight: 900;
}

.lp-order-number.is-orange { color: #a53c1c; background: var(--lp-primary-soft); }
.lp-order-number.is-blue { color: #23629e; background: var(--lp-blue-soft); }
.lp-order-number.is-green { color: #16713d; background: var(--lp-green-soft); }

.lp-order-row div {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.lp-order-row div strong { font-size: 0.51rem; }
.lp-order-row div small { overflow: hidden; color: #8a95a4; font-size: 0.42rem; text-overflow: ellipsis; white-space: nowrap; }
.lp-order-row > b { font-size: 0.42rem; }
.lp-order-row > b.is-preparing { color: var(--lp-purple); }
.lp-order-row > b.is-confirmed { color: var(--lp-blue); }
.lp-order-row > b.is-ready { color: var(--lp-green); }
.lp-order-row > strong { font-size: 0.48rem; }

.lp-chart {
    height: 155px;
    padding-top: 18px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    border-bottom: 1px solid #e8edf2;
}

.lp-chart i {
    flex: 1;
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #f18c6d, var(--lp-primary));
}

.lp-floating-event {
    position: absolute;
    z-index: 4;
    padding: 11px 13px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(220, 226, 234, 0.94);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 42px rgba(10, 19, 34, 0.15);
    backdrop-filter: blur(12px);
}

.lp-floating-event > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
}

.lp-floating-event svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-floating-event div {
    display: grid;
    gap: 2px;
}

.lp-floating-event small { color: #7c8796; font-size: 0.49rem; }
.lp-floating-event strong { font-size: 0.62rem; }

.lp-floating-event-order {
    top: 7px;
    right: -24px;
}

.lp-floating-event-order > span {
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
}

.lp-floating-event-whatsapp {
    bottom: 8px;
    left: -24px;
    grid-template-columns: 34px minmax(0, 1fr);
}

.lp-floating-event-whatsapp > span {
    color: var(--lp-green);
    background: var(--lp-green-soft);
}

.lp-floating-event-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.lp-capability-bar {
    position: relative;
    z-index: 4;
    margin-bottom: -48px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    border: 1px solid #e0e6ed;
    border-radius: 21px;
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(10, 19, 34, 0.12);
}

.lp-capability-bar article {
    min-width: 0;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e9edf2;
}

.lp-capability-bar article:last-child { border-right: 0; }

.lp-capability-bar article > span {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
    font-size: 0.61rem;
    font-weight: 900;
}

.lp-capability-bar div {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.lp-capability-bar strong { font-size: 0.7rem; }
.lp-capability-bar small { overflow: hidden; color: var(--lp-muted); font-size: 0.56rem; text-overflow: ellipsis; white-space: nowrap; }

/* Manifesto */

.lp-manifesto {
    padding: 150px 0 105px;
    background: #ffffff;
}

.lp-manifesto-shell {
    display: grid;
    grid-template-columns: 120px minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
    gap: 44px;
}

.lp-manifesto-index {
    display: grid;
    gap: 11px;
}

.lp-manifesto-index span { color: var(--lp-primary); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.08em; }
.lp-manifesto-index i { width: 58px; height: 1px; background: #dce2e9; }
.lp-manifesto-index small { color: var(--lp-muted); font-size: 0.65rem; }

.lp-manifesto-copy h2 {
    margin: 16px 0 0;
    font-size: clamp(2.2rem, 4.8vw, 4.15rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.03;
}

.lp-manifesto-copy h2 strong {
    color: var(--lp-primary);
}

.lp-manifesto-text {
    padding-top: 30px;
    display: grid;
    gap: 16px;
}

.lp-manifesto-text p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.75;
}

/* Bento */

.lp-bento-section {
    padding: 115px 0;
    background: linear-gradient(180deg, #f7f9fc, #f2f5f8);
}

.lp-section-heading {
    width: min(760px, 100%);
    margin-bottom: 44px;
}

.lp-section-heading h2,
.lp-experience-heading h2 {
    margin: 15px 0;
    font-size: clamp(2.2rem, 4.8vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.lp-section-heading p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.72;
}

.lp-bento-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
        "menu kitchen"
        "menu whatsapp"
        "finance whatsapp";
    gap: 18px;
}

.lp-bento-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 10px 34px rgba(10, 19, 34, 0.055);
}

.lp-bento-menu {
    grid-area: menu;
    min-height: 650px;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(270px, 1.05fr);
    align-items: center;
    gap: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 12%, rgba(228, 87, 46, 0.42), transparent 28%),
        linear-gradient(145deg, #0f1e32, #182f4c);
}

.lp-bento-copy h3,
.lp-bento-kitchen h3,
.lp-bento-whatsapp h3,
.lp-bento-finance h3 {
    margin: 13px 0 10px;
    font-size: 1.55rem;
    font-weight: 860;
    letter-spacing: -0.035em;
}

.lp-bento-copy p,
.lp-bento-kitchen p,
.lp-bento-whatsapp p,
.lp-bento-finance p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.lp-bento-menu .lp-card-kicker { color: #ff9e80; }
.lp-bento-menu p { color: rgba(255, 255, 255, 0.72); }

.lp-inline-tags {
    margin-top: 27px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.lp-inline-tags span {
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.59rem;
    font-weight: 700;
}

.lp-menu-phone {
    width: 285px;
    margin: auto;
    padding: 12px;
    overflow: hidden;
    border: 5px solid #0b1524;
    border-radius: 36px;
    color: var(--lp-text);
    background: #f6f3ef;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.34);
    transform: rotate(3deg);
}

.lp-menu-phone-top {
    padding: 11px 9px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 21px 21px 0 0;
    background: #ffffff;
}

.lp-menu-phone-top > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #ffffff;
    background: var(--lp-primary);
    font-size: 0.72rem;
    font-weight: 900;
}

.lp-menu-phone-top div { display: grid; gap: 2px; }
.lp-menu-phone-top strong { font-size: 0.57rem; }
.lp-menu-phone-top small { color: var(--lp-green); font-size: 0.45rem; }

.lp-menu-phone-hero {
    min-height: 110px;
    padding: 18px 13px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
    color: #ffffff;
    background: linear-gradient(135deg, #172b47, #0f1c2e);
}

.lp-menu-phone-hero small { color: #ff9e80; font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.08em; }
.lp-menu-phone-hero strong { max-width: 180px; font-size: 0.92rem; line-height: 1.08; }

.lp-menu-phone-search {
    margin: 10px;
    padding: 9px 10px;
    border: 1px solid #e1e5ea;
    border-radius: 9px;
    color: #8a95a4;
    background: #ffffff;
    font-size: 0.48rem;
}

.lp-menu-phone-chips {
    padding: 0 10px 8px;
    display: flex;
    gap: 5px;
}

.lp-menu-phone-chips span {
    padding: 5px 7px;
    border: 1px solid #dfe4e9;
    border-radius: 999px;
    color: #6f7987;
    background: #ffffff;
    font-size: 0.42rem;
}

.lp-menu-phone-chips span.is-active { border-color: var(--lp-primary); color: #ffffff; background: var(--lp-primary); }

.lp-menu-product {
    margin: 0 10px 8px;
    padding: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(10, 19, 34, 0.06);
}

.lp-menu-product div { display: grid; gap: 3px; }
.lp-menu-product strong { font-size: 0.52rem; }
.lp-menu-product small { color: #8a95a4; font-size: 0.4rem; }
.lp-menu-product b { color: var(--lp-primary); font-size: 0.5rem; }
.lp-menu-product > span { display: grid; place-items: center; border-radius: 9px; color: #ffffff; background: var(--lp-primary); font-size: 0.9rem; }

.lp-bento-kitchen {
    grid-area: kitchen;
    min-height: 300px;
    padding: 28px;
}

.lp-bento-whatsapp {
    grid-area: whatsapp;
    min-height: 530px;
    padding: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 12%, rgba(47, 214, 110, 0.22), transparent 31%),
        linear-gradient(150deg, #0e2b1d, #123f29);
}

.lp-bento-whatsapp p { color: rgba(255, 255, 255, 0.7); }
.lp-bento-whatsapp .lp-card-kicker { color: #73e49e; }

.lp-bento-finance {
    grid-area: finance;
    min-height: 300px;
    padding: 28px;
}

.lp-bento-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
}

.lp-bento-icon.is-green { color: var(--lp-green); background: rgba(255, 255, 255, 0.1); }
.lp-bento-icon.is-blue { color: var(--lp-blue); background: var(--lp-blue-soft); }

.lp-bento-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-bento-whatsapp .lp-bento-icon svg { fill: currentColor; stroke: none; }

.lp-mini-kanban {
    margin-top: 24px;
    padding: 11px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    border-radius: 14px;
    background: #edf1f5;
}

.lp-mini-kanban section {
    padding: 7px;
    border-radius: 9px;
    background: #dfe5ec;
}

.lp-mini-kanban header {
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    color: #667085;
    font-size: 0.42rem;
    font-weight: 800;
}

.lp-mini-kanban header b {
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
}

.lp-mini-kanban article {
    padding: 8px;
    display: grid;
    gap: 3px;
    border-top: 3px solid #999;
    border-radius: 7px;
    background: #ffffff;
}

.lp-mini-kanban article.is-yellow { border-color: var(--lp-yellow); }
.lp-mini-kanban article.is-purple { border-color: var(--lp-purple); }
.lp-mini-kanban article.is-green { border-color: var(--lp-green); }
.lp-mini-kanban article strong { font-size: 0.44rem; }
.lp-mini-kanban article small { color: #8a95a4; font-size: 0.38rem; }

.lp-chat-preview {
    margin-top: 32px;
    padding: 18px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        rgba(0, 0, 0, 0.13);
    background-size: 14px 14px, auto;
}

.lp-chat-preview span {
    max-width: 82%;
    padding: 10px 11px;
    border-radius: 10px 3px 10px 10px;
    color: #173522;
    background: #d9fdd3;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.12);
    font-size: 0.62rem;
    line-height: 1.4;
}

.lp-finance-mini {
    margin-top: 22px;
    padding: 15px;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    border-radius: 14px;
    background: var(--lp-surface-soft);
}

.lp-finance-mini div { display: grid; gap: 5px; }
.lp-finance-mini small { color: var(--lp-muted); font-size: 0.55rem; }
.lp-finance-mini strong { font-size: 1.1rem; }

.lp-finance-mini > span {
    height: 92px;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    border-bottom: 1px solid #dfe5eb;
}

.lp-finance-mini i {
    flex: 1;
    display: block;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #78a9df, var(--lp-blue));
}

/* Flow */

.lp-flow-section {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 12%, rgba(228, 87, 46, 0.2), transparent 30%),
        linear-gradient(145deg, #091321, #132743);
}

.lp-flow-glow {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(228, 87, 46, 0.12);
    filter: blur(8px);
}

.lp-flow-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 0.75fr) minmax(580px, 1.25fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.lp-section-label.is-light,
.lp-kicker.is-light {
    color: #ff9d7e;
}

.lp-flow-copy h2 {
    margin: 17px 0;
    font-size: clamp(2.3rem, 4.8vw, 4.15rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.03;
}

.lp-flow-copy > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    line-height: 1.75;
}

.lp-flow-tabs {
    margin-top: 31px;
    display: grid;
    gap: 8px;
}

.lp-flow-tabs button {
    min-height: 52px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 35px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.63);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 750;
}

.lp-flow-tabs button span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #ff9d7e;
    background: rgba(228, 87, 46, 0.12);
    font-size: 0.61rem;
    font-weight: 900;
}

.lp-flow-tabs button.is-active {
    border-color: rgba(228, 87, 46, 0.42);
    color: #ffffff;
    background: rgba(228, 87, 46, 0.12);
    box-shadow: inset 3px 0 var(--lp-primary);
}

.lp-flow-tabs button.is-active span {
    color: #ffffff;
    background: var(--lp-primary);
}

.lp-flow-stage {
    min-height: 510px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 35px 85px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.lp-flow-panel {
    min-height: 454px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 22px;
    animation: lp-panel-in 0.35s ease;
}

@keyframes lp-panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-flow-panel-copy > span {
    color: #ff9d7e;
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.lp-flow-panel-copy h3 {
    margin: 10px 0 8px;
    font-size: 1.75rem;
    letter-spacing: -0.035em;
}

.lp-flow-panel-copy p {
    max-width: 630px;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    line-height: 1.7;
}

.lp-flow-visual {
    min-height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(5, 13, 24, 0.42);
}

.lp-flow-order-visual {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
}

.lp-flow-channel {
    padding: 16px;
    display: grid;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
}

.lp-flow-channel span { color: #9cb0c8; font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.07em; }
.lp-flow-channel strong { font-size: 0.83rem; }
.lp-flow-order-visual > i { grid-column: 1 / -1; width: 2px; height: 34px; margin: -8px auto; background: linear-gradient(var(--lp-primary), transparent); }

.lp-flow-order-card {
    grid-column: 1 / -1;
    width: min(310px, 100%);
    margin: auto;
    padding: 17px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(228, 87, 46, 0.42);
    border-radius: 14px;
    background: rgba(228, 87, 46, 0.12);
    text-align: center;
}

.lp-flow-order-card small { color: #ffab90; font-size: 0.57rem; text-transform: uppercase; letter-spacing: 0.08em; }
.lp-flow-order-card strong { font-size: 1.1rem; }
.lp-flow-order-card span { color: rgba(255, 255, 255, 0.62); font-size: 0.61rem; }

.lp-flow-kitchen-visual {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 35px 1fr 35px 1fr;
    align-items: center;
    gap: 8px;
}

.lp-flow-kitchen-visual section {
    padding: 18px;
    display: grid;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.lp-flow-kitchen-visual section.is-highlighted {
    border-color: rgba(116, 83, 189, 0.75);
    background: rgba(116, 83, 189, 0.17);
    box-shadow: 0 0 0 4px rgba(116, 83, 189, 0.08);
}

.lp-flow-kitchen-visual small { color: #9cb0c8; font-size: 0.55rem; text-transform: uppercase; }
.lp-flow-kitchen-visual strong { font-size: 0.9rem; }
.lp-flow-kitchen-visual span { color: rgba(255, 255, 255, 0.58); font-size: 0.58rem; }
.lp-flow-kitchen-visual > i { height: 2px; background: linear-gradient(90deg, rgba(255,255,255,0.18), var(--lp-primary)); }

.lp-flow-client-visual {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 11px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        rgba(5, 13, 24, 0.42);
    background-size: 15px 15px, auto;
}

.lp-message-bubble {
    max-width: 78%;
    padding: 12px 13px;
    border-radius: 12px 4px 12px 12px;
    color: #153721;
    background: #d9fdd3;
    font-size: 0.72rem;
    box-shadow: 0 7px 16px rgba(0, 0, 0, 0.14);
}

.lp-message-bubble.is-link { color: #ffffff; background: #14704a; }

.lp-flow-management-visual {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
}

.lp-flow-management-visual div {
    padding: 20px;
    display: grid;
    align-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.lp-flow-management-visual small { color: #9cb0c8; font-size: 0.58rem; }
.lp-flow-management-visual strong { font-size: 1.45rem; }

/* Experiência */

.lp-experience-section {
    padding: 120px 0;
    background: #ffffff;
}

.lp-experience-shell {
    display: grid;
    gap: 50px;
}

.lp-experience-heading {
    max-width: 850px;
}

.lp-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lp-experience-grid article {
    min-height: 300px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--lp-line);
    border-radius: 23px;
    background: linear-gradient(180deg, #ffffff, #f9fafc);
}

.lp-experience-grid article > span {
    width: fit-content;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
    font-size: 0.6rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-experience-grid h3 {
    margin: 22px 0 11px;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.lp-experience-grid p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.lp-experience-line {
    height: 8px;
    margin-top: auto;
    overflow: hidden;
    border-radius: 999px;
    background: #edf1f5;
}

.lp-experience-line i {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lp-primary), #f58e6e);
}

/* CTA final */

.lp-final-cta {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 12%, rgba(228, 87, 46, 0.34), transparent 31%),
        linear-gradient(140deg, #091321, #162d4b);
}

.lp-final-cta-grid {
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
}

.lp-final-orb {
    position: absolute;
    top: -220px;
    left: -160px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(255,255,255,0.012), 0 0 0 160px rgba(255,255,255,0.008);
}

.lp-final-cta-shell {
    position: relative;
    z-index: 2;
    max-width: 930px;
    text-align: center;
}

.lp-final-cta-shell .lp-kicker {
    margin-inline: auto;
}

.lp-final-cta h2 {
    margin: 21px 0;
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 920;
    letter-spacing: -0.065em;
    line-height: 1.01;
}

.lp-final-cta p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.lp-final-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.lp-button-light {
    color: var(--lp-dark);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.lp-button-light:hover {
    background: #fff4ef;
}

.lp-final-login {
    padding: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 750;
}

.lp-final-login:hover { color: #ffffff; }

/* Rodapé */

.lp-footer {
    padding: 66px 0 24px;
    color: #d8e1ed;
    background: #07101d;
}

.lp-footer-shell {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.lp-footer-brand {
    max-width: 420px;
}

.lp-footer-brand img {
    width: 160px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.lp-footer-brand p {
    margin: 18px 0 0;
    color: #8799af;
    font-size: 0.78rem;
    line-height: 1.72;
}

.lp-footer-links {
    display: flex;
    gap: 82px;
}

.lp-footer-links > div {
    display: grid;
    gap: 11px;
}

.lp-footer-links strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 0.75rem;
}

.lp-footer-links a {
    color: #8799af;
    font-size: 0.71rem;
}

.lp-footer-links a:hover { color: #ffffff; }

.lp-footer-bottom {
    margin-top: 46px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #65768b;
    font-size: 0.64rem;
}

/* Responsividade */

@media (max-width: 1180px) {
    .lp-hero-shell {
        grid-template-columns: minmax(0, 0.86fr) minmax(540px, 1.14fr);
        gap: 38px;
    }

    .lp-cockpit-window { transform: none; }
    .lp-floating-event-order { right: -10px; }
    .lp-floating-event-whatsapp { left: -10px; }

    .lp-flow-shell {
        grid-template-columns: 1fr;
    }

    .lp-flow-copy {
        max-width: 760px;
    }

    .lp-flow-tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lp-flow-tabs button {
        grid-template-columns: 32px minmax(0, 1fr);
    }
}

@media (max-width: 980px) {
    .lp-header-shell { min-height: 74px; }

    .lp-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 16px;
        left: 16px;
        padding: 13px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 3px;
        border: 1px solid var(--lp-line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 20px 48px rgba(10, 19, 34, 0.15);
    }

    .lp-nav.is-open { display: flex; }

    .lp-nav a {
        padding: 13px;
        border-radius: 9px;
    }

    .lp-nav a::after { display: none; }
    .lp-nav a:hover { background: #f6f8fb; }
    .lp-menu-toggle { display: grid; }

    .lp-hero { padding-top: 126px; }

    .lp-hero-shell {
        grid-template-columns: 1fr;
    }

    .lp-hero-copy {
        max-width: 820px;
        text-align: center;
    }

    .lp-hero-copy .lp-kicker,
    .lp-hero-actions,
    .lp-trust-line {
        justify-content: center;
    }

    .lp-hero-copy h1,
    .lp-hero-copy > p {
        margin-right: auto;
        margin-left: auto;
    }

    .lp-cockpit {
        width: min(780px, 100%);
        margin-inline: auto;
    }

    .lp-capability-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-capability-bar article:nth-child(2) { border-right: 0; }
    .lp-capability-bar article:nth-child(-n + 2) { border-bottom: 1px solid #e9edf2; }

    .lp-manifesto-shell {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .lp-manifesto-text {
        grid-column: 2;
        padding-top: 0;
    }

    .lp-bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "menu"
            "kitchen"
            "whatsapp"
            "finance";
    }

    .lp-bento-menu {
        min-height: 560px;
    }

    .lp-bento-whatsapp {
        min-height: 420px;
    }

    .lp-experience-grid {
        grid-template-columns: 1fr;
    }

    .lp-experience-grid article {
        min-height: 240px;
    }
}

@media (max-width: 760px) {
    .lp-container,
    .lp-header-shell {
        width: calc(100% - 24px);
    }

    .lp-brand {
        width: 128px;
        height: 48px;
    }

    .lp-login { display: none; }

    .lp-button-compact {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .lp-hero {
        padding-top: 108px;
    }

    .lp-hero-shell {
        padding-bottom: 72px;
    }

    .lp-hero-copy h1 {
        font-size: clamp(2.75rem, 13vw, 4.5rem);
    }

    .lp-hero-copy > p {
        font-size: 0.94rem;
    }

    .lp-cockpit {
        padding-top: 18px;
    }

    .lp-cockpit-layout {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .lp-cockpit-sidebar {
        padding: 12px 7px;
    }

    .lp-cockpit-sidebar span {
        padding: 8px;
        justify-content: center;
        font-size: 0;
    }

    .lp-cockpit-sidebar svg {
        width: 18px;
        height: 18px;
    }

    .lp-cockpit-content {
        padding: 13px;
    }

    .lp-cockpit-main-grid {
        grid-template-columns: 1fr;
    }

    .lp-performance-panel {
        display: none;
    }

    .lp-floating-event {
        display: none;
    }

    .lp-manifesto {
        padding: 125px 0 82px;
    }

    .lp-manifesto-shell {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .lp-manifesto-index {
        grid-template-columns: auto 58px auto;
        align-items: center;
        justify-content: start;
    }

    .lp-manifesto-text {
        grid-column: auto;
    }

    .lp-bento-section,
    .lp-flow-section,
    .lp-experience-section,
    .lp-final-cta {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .lp-bento-menu {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 27px;
    }

    .lp-menu-phone {
        width: min(310px, 100%);
        transform: none;
    }

    .lp-flow-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-flow-stage {
        min-height: auto;
        padding: 18px;
    }

    .lp-flow-panel {
        min-height: auto;
    }

    .lp-flow-kitchen-visual {
        grid-template-columns: 1fr;
    }

    .lp-flow-kitchen-visual > i {
        width: 2px;
        height: 24px;
        margin: auto;
        background: linear-gradient(var(--lp-primary), transparent);
    }

    .lp-flow-management-visual {
        grid-template-columns: 1fr;
    }

    .lp-footer-shell {
        flex-direction: column;
    }

    .lp-footer-links {
        width: 100%;
        gap: 54px;
    }

    .lp-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .lp-button-compact { display: none; }
    .lp-header-actions { margin-left: auto; }

    .lp-hero-actions {
        display: grid;
    }

    .lp-hero-actions .lp-button {
        width: 100%;
    }

    .lp-trust-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-cockpit-topbar {
        min-height: 58px;
        grid-template-columns: 38px minmax(0, 1fr) auto;
    }

    .lp-window-controls i {
        width: 6px;
        height: 6px;
    }

    .lp-cockpit-company > span {
        width: 30px;
        height: 30px;
    }

    .lp-live-badge {
        font-size: 0;
    }

    .lp-live-badge i {
        width: 9px;
        height: 9px;
    }

    .lp-cockpit-layout {
        min-height: 380px;
        grid-template-columns: 50px minmax(0, 1fr);
    }

    .lp-cockpit-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-cockpit-metrics article:last-child {
        display: none;
    }

    .lp-order-row {
        grid-template-columns: 27px minmax(0, 1fr) auto;
    }

    .lp-order-row > strong {
        display: none;
    }

    .lp-capability-bar {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .lp-capability-bar article {
        border-right: 0;
        border-bottom: 1px solid #e9edf2;
    }

    .lp-capability-bar article:last-child {
        border-bottom: 0;
    }

    .lp-bento-menu,
    .lp-bento-kitchen,
    .lp-bento-whatsapp,
    .lp-bento-finance {
        padding: 22px;
    }

    .lp-mini-kanban {
        grid-template-columns: 1fr;
    }

    .lp-chat-preview {
        min-height: 230px;
    }

    .lp-finance-mini {
        grid-template-columns: 1fr;
    }

    .lp-flow-tabs {
        grid-template-columns: 1fr;
    }

    .lp-flow-order-visual {
        grid-template-columns: 1fr;
    }

    .lp-flow-order-visual > i,
    .lp-flow-order-card {
        grid-column: auto;
    }

    .lp-final-actions {
        display: grid;
    }

    .lp-final-actions .lp-button,
    .lp-final-login {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   PLANOS E PREÇOS
   ========================================================= */

.lp-hero-plan-note {
    width: fit-content;
    max-width: 100%;
    margin-top: 21px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(228, 87, 46, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 24px rgba(17, 35, 61, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-hero-plan-note span {
    flex: 0 0 auto;
    padding: 5px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-primary-dark));
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-hero-plan-note small {
    color: var(--lp-muted);
    font-size: 0.63rem;
    line-height: 1.45;
}

.lp-pricing-section {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 8%, rgba(228, 87, 46, 0.11), transparent 27%),
        radial-gradient(circle at 92% 82%, rgba(42, 91, 151, 0.09), transparent 30%),
        linear-gradient(180deg, #f7f9fc, #ffffff 48%, #f5f7fb);
}

.lp-pricing-grid {
    position: absolute;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(21, 42, 69, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 42, 69, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.lp-pricing-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.lp-pricing-orb-one {
    top: -190px;
    right: -130px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(228, 87, 46, 0.1);
    box-shadow: 0 0 0 70px rgba(228, 87, 46, 0.025), 0 0 0 140px rgba(228, 87, 46, 0.015);
}

.lp-pricing-orb-two {
    bottom: -240px;
    left: -180px;
    width: 520px;
    height: 520px;
    background: rgba(29, 53, 87, 0.045);
}

.lp-pricing-shell {
    position: relative;
    z-index: 2;
}

.lp-pricing-heading {
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.55fr);
    align-items: end;
    gap: 55px;
}

.lp-pricing-heading h2 {
    max-width: 780px;
    margin: 15px 0 0;
    color: var(--lp-dark);
    font-size: clamp(2.25rem, 4.7vw, 4.15rem);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.lp-pricing-intro {
    display: grid;
    gap: 10px;
}

.lp-pricing-intro span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #536074;
    font-size: 0.72rem;
    font-weight: 720;
}

.lp-pricing-intro svg {
    width: 21px;
    height: 21px;
    padding: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    fill: none;
    stroke: #1d9b54;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: #e9f8ee;
}

.lp-pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
}

.lp-plan-card {
    position: relative;
    min-width: 0;
    min-height: 610px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dfe5ec;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 45px rgba(17, 35, 61, 0.075);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.lp-plan-card::before {
    content: "";
    position: absolute;
    top: -65px;
    right: -65px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(228, 87, 46, 0.045);
}

.lp-plan-card:hover {
    border-color: rgba(228, 87, 46, 0.32);
    box-shadow: 0 25px 60px rgba(17, 35, 61, 0.12);
    transform: translateY(-6px);
}

.lp-plan-featured {
    z-index: 3;
    border-color: var(--lp-primary);
    background:
        radial-gradient(circle at 90% 0, rgba(255, 146, 111, 0.19), transparent 28%),
        linear-gradient(160deg, #152a46, #0c192b);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(14, 30, 51, 0.24);
    transform: translateY(-14px);
}

.lp-plan-featured:hover {
    border-color: #ff9778;
    box-shadow: 0 34px 80px rgba(14, 30, 51, 0.3);
    transform: translateY(-20px);
}

.lp-plan-unlimited {
    background:
        radial-gradient(circle at 100% 0, rgba(53, 112, 182, 0.12), transparent 30%),
        #ffffff;
}

.lp-plan-popular {
    position: absolute;
    top: 0;
    right: 22px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 0 0 12px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), #f07954);
    box-shadow: 0 10px 22px rgba(228, 87, 46, 0.26);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lp-plan-popular svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linejoin: round;
}

.lp-plan-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.lp-plan-category {
    color: var(--lp-primary);
    font-size: 0.58rem;
    font-weight: 880;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.lp-plan-featured .lp-plan-category {
    color: #ff9b7b;
}

.lp-plan-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
}

.lp-plan-featured .lp-plan-icon {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.lp-plan-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-plan-title {
    position: relative;
    z-index: 2;
    margin-top: 24px;
}

.lp-plan-title h3 {
    margin: 0;
    color: var(--lp-dark);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.lp-plan-featured .lp-plan-title h3 {
    color: #ffffff;
}

.lp-plan-title p {
    min-height: 48px;
    margin: 8px 0 0;
    color: var(--lp-muted);
    font-size: 0.72rem;
    line-height: 1.55;
}

.lp-plan-featured .lp-plan-title p {
    color: rgba(255, 255, 255, 0.62);
}

.lp-plan-price {
    position: relative;
    z-index: 2;
    min-height: 92px;
    margin-top: 21px;
    display: flex;
    align-items: flex-start;
    color: var(--lp-dark);
}

.lp-plan-featured .lp-plan-price {
    color: #ffffff;
}

.lp-plan-price > span {
    margin-top: 13px;
    color: var(--lp-muted);
    font-size: 0.73rem;
    font-weight: 750;
}

.lp-plan-featured .lp-plan-price > span {
    color: rgba(255, 255, 255, 0.58);
}

.lp-plan-price > strong {
    margin-left: 5px;
    font-size: 3.55rem;
    font-weight: 920;
    letter-spacing: -0.075em;
    line-height: 1;
}

.lp-plan-price > div {
    margin: 7px 0 0 4px;
    display: grid;
    gap: 2px;
}

.lp-plan-price b {
    font-size: 1rem;
}

.lp-plan-price small {
    color: var(--lp-muted);
    font-size: 0.61rem;
    font-weight: 700;
}

.lp-plan-featured .lp-plan-price small {
    color: rgba(255, 255, 255, 0.55);
}

.lp-plan-price-free {
    align-content: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.lp-plan-price-free > strong {
    margin: 0;
    color: var(--lp-dark);
    font-size: 2.3rem;
    letter-spacing: -0.05em;
}

.lp-plan-price-free > small {
    color: var(--lp-muted);
    font-size: 0.62rem;
}

.lp-plan-limit {
    position: relative;
    z-index: 2;
    padding: 14px;
    display: grid;
    gap: 6px;
    border: 1px solid #e6eaf0;
    border-radius: 14px;
    background: #f8fafc;
}

.lp-plan-featured .lp-plan-limit {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.055);
}

.lp-plan-limit > span {
    color: var(--lp-muted);
    font-size: 0.54rem;
    font-weight: 720;
}

.lp-plan-featured .lp-plan-limit > span {
    color: rgba(255, 255, 255, 0.48);
}

.lp-plan-limit > strong {
    color: var(--lp-dark);
    font-size: 0.73rem;
}

.lp-plan-featured .lp-plan-limit > strong {
    color: #ffffff;
}

.lp-plan-meter {
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8edf3;
}

.lp-plan-featured .lp-plan-meter {
    background: rgba(255, 255, 255, 0.11);
}

.lp-plan-meter i {
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--lp-primary), #f38c6a);
}

.lp-plan-meter.is-unlimited i {
    width: 100%;
    background: repeating-linear-gradient(90deg, #3278bb 0 16px, #67a0d7 16px 23px);
}

.lp-plan-features {
    position: relative;
    z-index: 2;
    margin: 22px 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.lp-plan-features li {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    color: #536074;
    font-size: 0.68rem;
    font-weight: 680;
    line-height: 1.42;
}

.lp-plan-featured .lp-plan-features li {
    color: rgba(255, 255, 255, 0.74);
}

.lp-plan-features svg {
    width: 20px;
    height: 20px;
    padding: 4px;
    border-radius: 50%;
    fill: none;
    stroke: #1b9450;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    background: #eaf8ef;
}

.lp-plan-featured .lp-plan-features svg {
    stroke: #92e8ae;
    background: rgba(55, 194, 101, 0.12);
}

.lp-plan-button {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 49px;
    margin-top: auto;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid;
    border-radius: 13px;
    font-size: 0.69rem;
    font-weight: 850;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.lp-plan-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.lp-plan-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-plan-button-ghost {
    border-color: #dbe1e9;
    color: var(--lp-dark);
    background: #ffffff;
}

.lp-plan-button-ghost:hover {
    border-color: var(--lp-primary);
    color: var(--lp-primary);
    background: var(--lp-primary-soft);
}

.lp-plan-button-primary {
    border-color: var(--lp-primary);
    color: #ffffff;
    background: linear-gradient(135deg, var(--lp-primary), #c94420);
    box-shadow: 0 14px 30px rgba(228, 87, 46, 0.28);
}

.lp-plan-button-primary:hover {
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(228, 87, 46, 0.36);
}

.lp-plan-button-dark {
    border-color: #152a46;
    color: #ffffff;
    background: linear-gradient(135deg, #1d3557, #0d1d31);
    box-shadow: 0 13px 27px rgba(16, 32, 56, 0.2);
}

.lp-plan-button-dark:hover {
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(16, 32, 56, 0.28);
}

.lp-pricing-assurance {
    margin-top: 24px;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    border: 1px solid #dbe3ec;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 38px rgba(17, 35, 61, 0.065);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lp-pricing-assurance-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #168447;
    background: #eaf8ef;
}

.lp-pricing-assurance-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lp-pricing-assurance > div:nth-child(2) {
    min-width: 0;
}

.lp-pricing-assurance strong {
    color: var(--lp-dark);
    font-size: 0.78rem;
}

.lp-pricing-assurance p {
    max-width: 850px;
    margin: 5px 0 0;
    color: var(--lp-muted);
    font-size: 0.65rem;
    line-height: 1.55;
}

.lp-pricing-assurance > a {
    min-height: 42px;
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 11px;
    color: #ffffff;
    background: var(--lp-primary);
    font-size: 0.65rem;
    font-weight: 820;
    white-space: nowrap;
    text-decoration: none;
}

.lp-pricing-assurance > a:hover {
    color: #ffffff;
    background: var(--lp-primary-dark);
    text-decoration: none;
}

.lp-pricing-assurance > a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1180px) {
    .lp-pricing-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .lp-pricing-intro {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-pricing-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .lp-plan-featured {
        transform: none;
    }

    .lp-plan-featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 760px) {
    .lp-pricing-section {
        padding-top: 92px;
        padding-bottom: 92px;
    }

    .lp-pricing-heading {
        margin-bottom: 34px;
    }

    .lp-pricing-intro {
        grid-template-columns: 1fr;
    }

    .lp-pricing-cards {
        grid-template-columns: 1fr;
    }

    .lp-plan-card {
        min-height: auto;
    }

    .lp-plan-featured {
        order: -1;
    }

    .lp-pricing-assurance {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .lp-pricing-assurance > a {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .lp-hero-plan-note {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .lp-pricing-heading h2 {
        font-size: 2.35rem;
    }

    .lp-plan-card {
        padding: 22px;
        border-radius: 20px;
    }

    .lp-plan-price > strong {
        font-size: 3.2rem;
    }

    .lp-pricing-assurance {
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .lp-pricing-assurance-icon {
        width: 44px;
        height: 44px;
    }
}