:root {
    color-scheme: dark;
    --bg: #07100d;
    --bg-deep: #040907;
    --surface: #0c1713;
    --surface-2: #111d19;
    --surface-3: #17231f;
    --line: rgba(220, 255, 238, 0.11);
    --line-strong: rgba(220, 255, 238, 0.2);
    --text: #f4faf7;
    --muted: #9fb0a8;
    --muted-2: #6f8178;
    --green: #35d58a;
    --green-strong: #12a866;
    --green-dark: #083f2b;
    --lime: #9fe870;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --shell: 1240px;
    --header-height: 74px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Aptos", "Segoe UI Variable Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.page-background {
    position: fixed;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    background: var(--bg-deep);
    pointer-events: none;
}

.page-background__lines {
    position: absolute;
    inset: -12%;
    opacity: 0;
    transform: scale(1.04);
    mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, #000 44%, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 42%, #000 0%, #000 44%, transparent 82%);
}

.page-background__lines[data-webgl-state="ready"],
.page-background__lines[data-webgl-state="static"] {
    opacity: 0.78;
}

.page-background__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 9, 6, 0.72), rgba(3, 9, 6, 0.28) 50%, rgba(3, 9, 6, 0.72)),
        radial-gradient(circle at 50% 46%, transparent 0%, rgba(3, 8, 5, 0.18) 52%, rgba(3, 8, 5, 0.62) 100%);
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

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

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-140%);
    border-radius: 8px;
    background: var(--text);
    color: var(--bg-deep);
    padding: 10px 14px;
    text-decoration: none;
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section {
    padding-block: clamp(84px, 10vw, 150px);
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(7, 16, 13, 0.66);
    backdrop-filter: blur(18px);
    transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(7, 16, 13, 0.91);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 150px;
    align-items: center;
    flex: 0 0 auto;
}

.brand img,
.site-footer__brand img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 560;
    text-decoration: none;
    transition: color 160ms ease;
}

.desktop-nav a:hover {
    color: var(--text);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 10px 18px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 690;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg,
.text-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover {
    transform: translateY(-2px);
}

.button:active,
.menu-toggle:active,
.media-control:active {
    transform: translateY(1px) scale(0.985);
}

.button--primary {
    background: var(--green);
    color: #03160e;
    box-shadow: 0 12px 34px rgba(1, 9, 5, 0.24);
}

.button--primary:hover {
    background: #51e49d;
    box-shadow: 0 16px 42px rgba(1, 9, 5, 0.3);
}

.button--outline {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.025);
}

.button--outline:hover,
.button--quiet:hover {
    border-color: rgba(220, 255, 238, 0.3);
    background: rgba(255, 255, 255, 0.065);
}

.button--quiet {
    color: var(--muted);
}

.button--large {
    min-height: 52px;
    border-radius: 12px;
    padding-inline: 22px;
    font-size: 0.94rem;
}

.button--block {
    width: 100%;
}

.menu-toggle,
.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    padding: calc(var(--header-height) + clamp(70px, 9vw, 124px)) 0 clamp(72px, 9vw, 118px);
    isolation: isolate;
}

.hero__content {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: clamp(52px, 7vw, 86px);
    grid-template-columns: minmax(0, 1fr);
}

.hero__copy {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.hero__copy .eyebrow {
    justify-content: center;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--green);
    font-size: 0.73rem;
    font-weight: 720;
    letter-spacing: 0.105em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 20px;
    height: 1px;
    background: currentColor;
}

.hero h1,
.section-heading h2,
.integrations__copy h2,
.closing-cta h2,
.faq h2 {
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.055em;
}

.hero h1 {
    max-width: 880px;
    margin-inline: auto;
    font-size: clamp(3rem, 5.6vw, 5.3rem);
    font-weight: 790;
    line-height: 0.98;
}

.hero h1 em {
    display: block;
    color: var(--green);
    font-style: normal;
}

.hero__lead {
    max-width: 630px;
    margin: 30px auto 0;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.6vw, 1.22rem);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    justify-content: center;
}

.hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 26px 0 0;
    padding: 0;
    color: var(--muted-2);
    font-size: 0.79rem;
    list-style: none;
    justify-content: center;
}

.hero__proof li {
    position: relative;
    padding-left: 16px;
}

.hero__proof li::before {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 0.64em;
    left: 0;
    border-radius: 50%;
    background: var(--green);
    content: "";
}

.hero__proof span {
    font-variant-numeric: tabular-nums;
}

.hero-media {
    position: relative;
    width: min(100%, 1040px);
    margin-inline: auto;
    border: 1px solid rgba(220, 255, 238, 0.2);
    border-radius: 18px;
    background: #0b1512;
    box-shadow: -28px 38px 100px rgba(1, 9, 5, 0.52);
    animation: hero-frame-float 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.hero-media::after {
    position: absolute;
    z-index: -1;
    inset: 12% 18% -8%;
    border-radius: 50%;
    background: rgba(53, 213, 138, 0.16);
    content: "";
    filter: blur(65px);
}

.hero-media__topbar {
    display: grid;
    height: 42px;
    align-items: center;
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--line);
    padding-inline: 14px;
    color: var(--muted-2);
    font-size: 0.68rem;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.hero-media__topbar > span:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-state {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--green);
}

.live-state i,
.status-chip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(53, 213, 138, 0.1);
}

.hero-media__viewport {
    position: relative;
    aspect-ratio: 1280 / 626;
    overflow: hidden;
    border-radius: 0 0 17px 17px;
    background: #101827;
}

.hero-media__video,
.hero-media__fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.hero-media__video {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: 0;
    transition: opacity 400ms ease;
}

.hero-media.has-video .hero-media__video,
.hero-media.is-playing .hero-media__video {
    opacity: 1;
}

.hero-media__fallback {
    position: relative;
    z-index: 1;
}

.media-control {
    position: absolute;
    z-index: 4;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 10px;
    background: rgba(239, 246, 242, 0.94);
    color: #0b1b14;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 650;
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.media-control svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.media-control__pause,
.hero-media.is-playing .media-control__play {
    display: none;
}

.hero-media.is-playing .media-control__pause {
    display: block;
}

.hero-media.video-unavailable .media-control {
    display: none;
}

.floating-stat {
    position: absolute;
    z-index: 5;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: rgba(8, 18, 14, 0.88);
    box-shadow: 0 20px 45px rgba(1, 9, 5, 0.36);
    backdrop-filter: blur(16px);
}

.floating-stat--orders {
    top: 26%;
    left: -54px;
    display: grid;
    min-width: 142px;
    grid-template-columns: 34px 1fr;
    padding: 13px;
    border-color: rgba(53, 213, 138, 0.75);
    background: #35d58a;
    color: #061b11;
    animation: floating-card-a 6.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.floating-stat__icon {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    grid-row: 1 / 3;
    border-radius: 8px;
    background: rgba(4, 24, 14, 0.14);
    color: #062519;
}

.floating-stat__icon svg,
.feature-icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-stat small {
    color: rgba(5, 31, 19, 0.7);
    font-size: 0.63rem;
}

.floating-stat strong {
    color: #052417;
    font-size: 0.92rem;
}

.floating-stat--status {
    right: 8%;
    bottom: -22px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border-color: rgba(232, 241, 236, 0.76);
    background: #e8f1ec;
    color: #183128;
    font-size: 0.72rem;
    animation: floating-card-b 7.2s cubic-bezier(0.45, 0, 0.55, 1) -2.1s infinite;
}

.floating-stat--status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(53, 213, 138, 0.1);
}

@keyframes hero-frame-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -7px, 0); }
}

@keyframes floating-card-a {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -11px, 0); }
}

@keyframes floating-card-b {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 9px, 0); }
}

.signal-bar {
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 5, 0.72);
    padding-block: 18px;
}

.signal-bar__inner {
    display: flex;
    align-items: center;
    gap: 42px;
}

.signal-bar p {
    flex: 0 0 auto;
    margin: 0;
    color: var(--muted-2);
    font-size: 0.69rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-track {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 22px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.signal-track i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--green-strong);
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(40px, 6vw, 76px);
}

.section-heading--split {
    display: grid;
    max-width: none;
    align-items: end;
    gap: 40px;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading h2,
.integrations__copy h2,
.faq h2 {
    font-size: clamp(2.35rem, 4.8vw, 4.7rem);
    font-weight: 750;
    line-height: 1.03;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.integrations__copy > p:not(.eyebrow),
.faq__layout .section-heading > p:not(.eyebrow) {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.section-heading--split > p {
    margin: 0 0 4px;
}

.product-story {
    background: rgba(5, 13, 9, 0.7);
    color: var(--text);
}

.product-story .eyebrow {
    color: #128a5e;
}

.product-story .section-heading--split > p {
    color: var(--muted);
}

.story-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.36fr) minmax(360px, 0.64fr);
}

.story-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-lg);
    background: rgba(11, 24, 18, 0.92);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.story-card__copy {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px 28px 22px;
}

.number-tag {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    color: var(--green);
    font-size: 0.69rem;
    font-weight: 750;
}

.card-kicker {
    margin: 0 0 7px;
    color: var(--green);
    font-size: 0.69rem;
    font-weight: 740;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-story .card-kicker {
    color: #128a5e;
}

.story-card h3,
.bento-card h3,
.plan h3,
.steps h3 {
    margin: 0;
    text-wrap: balance;
}

.story-card h3 {
    max-width: 600px;
    font-size: clamp(1.18rem, 2vw, 1.72rem);
    line-height: 1.25;
}

.image-stage {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: #0b1512;
}

.image-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-card:hover .image-stage img {
    transform: none;
}

.image-stage--store {
    aspect-ratio: 1816 / 910;
}

.image-stage--store img {
    object-fit: contain;
    object-position: top left;
}

.image-stage--product {
    aspect-ratio: 1398 / 783;
}

.image-stage--product img {
    object-fit: contain;
    object-position: top left;
}

.operations {
    background: rgba(4, 11, 7, 0.62);
}

.feature-bento {
    display: grid;
    gap: 16px;
    grid-auto-rows: minmax(190px, auto);
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.bento-item {
    min-width: 0;
}

.bento-float {
    height: 100%;
    min-height: inherit;
    animation: bento-float 7.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    animation-play-state: paused;
}

.bento-item.is-floating .bento-float {
    animation-play-state: running;
}

.bento-item:nth-child(2n) .bento-float {
    animation-delay: -2.8s;
    animation-duration: 8.1s;
}

.bento-item:nth-child(3n) .bento-float {
    animation-delay: -5.1s;
    animation-duration: 7.7s;
}

@keyframes bento-float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -5px, 0); }
}

.bento-card {
    --spot-x: 50%;
    --spot-y: 18%;
    position: relative;
    display: flex;
    height: 100%;
    min-height: inherit;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(104, 224, 164, 0.22);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(21, 43, 33, 0.97), rgba(11, 25, 18, 0.98));
    box-shadow: 0 24px 56px rgba(1, 9, 5, 0.3), inset 0 1px rgba(225, 255, 239, 0.055);
    flex-direction: column;
    transform: translate3d(0, 0, 0);
    transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(520px circle at var(--spot-x) var(--spot-y), rgba(78, 214, 147, 0.16), transparent 44%);
    opacity: 0.34;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.bento-card > * {
    position: relative;
    z-index: 1;
}

.bento-float:hover .bento-card,
.bento-float:focus-within .bento-card {
    border-color: rgba(116, 236, 176, 0.5);
    background: linear-gradient(145deg, rgba(26, 51, 40, 0.98), rgba(13, 30, 22, 0.99));
    box-shadow: 0 32px 72px rgba(1, 9, 5, 0.42), inset 0 1px rgba(225, 255, 239, 0.09);
    transform: translate3d(0, -9px, 0);
}

.bento-float:hover .bento-card::before,
.bento-float:focus-within .bento-card::before {
    opacity: 1;
}

.bento-float:active .bento-card {
    transform: translate3d(0, -5px, 0) scale(0.992);
}

.bento-card--dashboard { grid-column: span 7; grid-row: span 2; min-height: 590px; }
.bento-card--dispatch { grid-column: span 5; grid-row: span 2; min-height: 590px; }
.bento-card--kanban { grid-column: span 5; min-height: 430px; }
.bento-card--pdv { grid-column: span 7; min-height: 430px; }
.bento-card--catalog { grid-column: span 6; min-height: 420px; }
.bento-card--launches { grid-column: span 6; min-height: 420px; }

.bento-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 24px 0;
}

.feature-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(53, 213, 138, 0.2);
    border-radius: 10px;
    background: rgba(53, 213, 138, 0.09);
    color: var(--green);
}

.feature-icon--whatsapp {
    border-color: rgba(37, 211, 102, 0.34);
    background: rgba(37, 211, 102, 0.12);
}

.feature-icon--whatsapp img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.status-chip,
.metric-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    padding: 6px 9px;
    font-size: 0.65rem;
    font-weight: 620;
}

.status-chip--official {
    color: var(--green);
}

.bento-card__copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 24px 26px 26px;
}

.bento-card h3 {
    font-size: clamp(1.35rem, 2.15vw, 2.1rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.bento-card__copy > p:last-child:not(.card-kicker) {
    max-width: 580px;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.65;
}

.bento-media {
    position: relative;
    inset: auto;
    width: calc(100% - 28px);
    margin: auto 0 0 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px 0 0;
    background: #0b1424;
    box-shadow: -20px -12px 60px rgba(1, 9, 5, 0.34);
}

.bento-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top left;
    transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.bento-card:hover .bento-media img {
    transform: none;
}

.bento-media--dashboard { aspect-ratio: 1898 / 906; }
.bento-media--dispatch { aspect-ratio: 1882 / 879; }
.bento-media--kanban { aspect-ratio: 1917 / 891; }
.bento-media--pdv { aspect-ratio: 1890 / 898; }
.bento-media--catalog { aspect-ratio: 1890 / 894; }
.bento-media--launches { aspect-ratio: 1645 / 727; }

.bento-note {
    position: relative;
    z-index: 2;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 11px 24px 16px 30px;
    color: var(--muted-2);
    font-size: 0.62rem;
}

.avatar-stack {
    display: flex;
    padding-right: 9px;
}

.avatar-stack span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    margin-right: -9px;
    border: 2px solid var(--surface);
    border-radius: 50%;
    background: #263a32;
    color: var(--text);
    font-size: 0.58rem;
    font-weight: 720;
}

.avatar-stack span:nth-child(2) { background: #31305c; }
.avatar-stack span:nth-child(3) { background: var(--green-dark); color: var(--green); }

.integrations {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(3, 8, 5, 0.72);
    isolation: isolate;
}

.integrations::after {
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    top: 14%;
    right: 9%;
    border: 1px solid rgba(53, 213, 138, 0.11);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 110px rgba(53, 213, 138, 0.07), inset 0 0 110px rgba(53, 213, 138, 0.035);
}

.integrations__layout {
    display: grid;
    min-height: 610px;
    align-items: center;
    gap: 60px;
    grid-template-columns: minmax(310px, 0.76fr) minmax(560px, 1.24fr);
}

.integrations__copy {
    position: relative;
    z-index: 4;
}

.integrations__copy > p:not(.eyebrow) {
    max-width: 500px;
}

.integration-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 26px;
}

.integration-categories span {
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--muted);
    padding: 6px 9px;
    font-size: 0.68rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--green);
    font-size: 0.86rem;
    font-weight: 680;
    text-decoration: none;
}

.text-link:hover svg {
    transform: translateX(3px);
}

.text-link svg {
    transition: transform 160ms ease;
}

.integration-field {
    position: relative;
    min-height: 610px;
}

.integration-orbit {
    position: absolute;
    z-index: 3;
    inset: 0;
}

.hex {
    --hex-size: 118px;
    position: absolute;
    top: var(--y);
    left: var(--x);
    display: flex;
    width: var(--hex-size);
    height: calc(var(--hex-size) * 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
    background: linear-gradient(145deg, rgba(239, 250, 244, 0.98), rgba(210, 226, 217, 0.92));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    color: #14221c;
    animation: hex-float 7s ease-in-out var(--delay) infinite;
    transform: translate(-50%, -50%);
}

.hex::before {
    position: absolute;
    z-index: -1;
    inset: 2px;
    clip-path: inherit;
    background: linear-gradient(145deg, #ffffff, #e3ebe7);
    content: "";
}

.hex img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hex b {
    font-size: 1.8rem;
    line-height: 1;
}

.hex span {
    max-width: 84px;
    font-size: 0.59rem;
    font-weight: 720;
    line-height: 1.15;
    text-align: center;
}

.hex--whatsapp::before { background: linear-gradient(145deg, #f5fff9, #d3f5e2); }
.hex--bling b { color: #14a36d; }
.hex--infinite b { color: #5a47ef; }
.hex--chatwoot b { color: #1f93ff; }

@keyframes hex-float {
    0%, 100% { transform: translate(-50%, -50%) translate3d(0, 0, 0); }
    50% { transform: translate(-50%, -50%) translate3d(0, -9px, 0); }
}

.integration-pulse {
    position: absolute;
    z-index: 1;
    inset: 20% 12% 10% 8%;
    border-radius: 50%;
}

.integration-pulse i {
    position: absolute;
    inset: 50%;
    border: 1px solid rgba(53, 213, 138, 0.14);
    border-radius: 50%;
    animation: orbit-pulse 6s ease-out infinite;
}

.integration-pulse i:nth-child(2) { animation-delay: -2s; }
.integration-pulse i:nth-child(3) { animation-delay: -4s; }

@keyframes orbit-pulse {
    0% { inset: 49%; opacity: 0; }
    18% { opacity: 0.7; }
    100% { inset: 0; opacity: 0; }
}

.steps {
    background: rgba(6, 15, 10, 0.7);
    color: var(--text);
}

.steps .eyebrow {
    color: #128a5e;
}

.steps__grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    background: var(--line);
    list-style: none;
}

.steps__grid li {
    min-height: 260px;
    background: rgba(10, 22, 16, 0.94);
    padding: 32px;
}

.steps__grid li > span {
    display: inline-flex;
    margin-bottom: 54px;
    color: var(--green);
    font-size: 0.74rem;
    font-weight: 740;
}

.steps h3 {
    font-size: 1.28rem;
    letter-spacing: -0.025em;
}

.steps__grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.pricing {
    background: rgba(4, 11, 7, 0.66);
}

.pricing__grid {
    display: grid;
    align-items: stretch;
    gap: 14px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
}

.plan {
    position: relative;
    display: flex;
    min-height: 610px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 23, 19, 0.8);
    padding: 30px;
    flex-direction: column;
}

.plan--featured {
    border-color: rgba(53, 213, 138, 0.42);
    background: linear-gradient(180deg, rgba(22, 52, 40, 0.82), rgba(10, 20, 16, 0.96));
    box-shadow: 0 28px 70px rgba(1, 9, 5, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
}

.plan__flag {
    position: absolute;
    top: 15px;
    right: 16px;
    border-radius: 7px;
    background: var(--green);
    color: #03160e;
    padding: 6px 9px;
    font-size: 0.62rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.plan__header {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.plan__header p {
    margin: 0;
    color: var(--green);
    font-size: 0.73rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan__header span {
    color: var(--muted-2);
    font-size: 0.65rem;
}

.plan h3 {
    margin-top: 28px;
    font-size: 1.42rem;
    letter-spacing: -0.035em;
}

.plan__description {
    min-height: 68px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.plan__price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 30px 0 26px;
}

.plan__price strong {
    font-size: clamp(2rem, 3vw, 2.7rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.plan__price span {
    color: var(--muted-2);
    font-size: 0.78rem;
}

.plan__price--custom {
    min-height: 43px;
}

.plan ul {
    display: grid;
    gap: 13px;
    margin: 0 0 32px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.8rem;
    list-style: none;
}

.plan li {
    position: relative;
    padding-left: 20px;
}

.plan li::before {
    position: absolute;
    top: 0.55em;
    left: 2px;
    width: 7px;
    height: 4px;
    border-bottom: 1.5px solid var(--green);
    border-left: 1.5px solid var(--green);
    content: "";
    transform: rotate(-45deg);
}

.plan .button {
    margin-top: auto;
}

.faq {
    border-top: 1px solid var(--line);
    background: rgba(3, 8, 5, 0.74);
}

.faq__layout {
    display: grid;
    align-items: start;
    gap: clamp(50px, 8vw, 120px);
    grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
}

.faq .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 44px);
    margin: 0;
}

.faq__list {
    border-top: 1px solid var(--line);
}

.faq details {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 4px;
    font-size: 0.96rem;
    font-weight: 650;
    list-style: none;
    cursor: pointer;
}

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

.faq summary span {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.faq summary span::before,
.faq summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: var(--green);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.faq summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
    max-width: 640px;
    margin: -3px 42px 25px 4px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.closing-cta {
    padding-block: clamp(64px, 8vw, 104px);
    background: var(--green);
    color: #04130d;
}

.closing-cta__inner {
    display: grid;
    align-items: end;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.closing-cta .eyebrow {
    color: #075f3b;
}

.closing-cta h2 {
    max-width: 820px;
    font-size: clamp(2.3rem, 4.8vw, 4.8rem);
    font-weight: 790;
    line-height: 1.01;
}

.closing-cta .button--primary {
    background: #04130d;
    color: #f3fff8;
    box-shadow: none;
}

.closing-cta__actions p {
    margin: 12px 0 0;
    color: #16704a;
    font-size: 0.72rem;
    text-align: center;
}

.site-footer {
    background: #030705;
    color: var(--muted);
}

.site-footer__top {
    display: grid;
    gap: 48px;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    padding-block: 70px;
}

.site-footer__brand img {
    width: 150px;
}

.site-footer__brand > p {
    max-width: 300px;
    margin: 20px 0 0;
    color: var(--muted-2);
    font-size: 0.79rem;
}

.site-footer__column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.site-footer__column p {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.site-footer__column a {
    color: var(--muted-2);
    font-size: 0.76rem;
    text-decoration: none;
}

.site-footer__column a:hover {
    color: var(--green);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-block: 22px;
}

.site-footer__bottom p {
    margin: 0;
    color: #53635a;
    font-size: 0.66rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-float.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
}

.whatsapp-float__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(37, 211, 102, 0.36);
    border-radius: 12px;
    background: rgba(5, 24, 16, 0.92);
    color: var(--text);
    padding: 9px 14px;
    box-shadow: 0 14px 36px rgba(1, 9, 5, 0.38);
    font-size: 0.76rem;
    font-weight: 680;
    backdrop-filter: blur(14px);
    cursor: pointer;
}

.whatsapp-float__button img {
    width: 24px;
    height: 24px;
}

.whatsapp-float__close {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(5, 12, 9, 0.9);
    color: var(--muted);
    cursor: pointer;
}

.lead-modal[hidden] {
    display: none;
}

.lead-modal {
    position: fixed;
    z-index: 500;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
}

.lead-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(1, 5, 3, 0.76);
    backdrop-filter: blur(9px);
}

.lead-modal__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: #0d1814;
    box-shadow: 0 32px 100px rgba(1, 9, 5, 0.62);
    padding: 30px;
}

.lead-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
}

.lead-modal h2 {
    margin: 0;
    font-size: 1.65rem;
    letter-spacing: -0.035em;
}

.lead-modal__panel > p:not(.card-kicker) {
    margin: 10px 0 24px;
    color: var(--muted);
    font-size: 0.82rem;
}

.lead-modal form {
    display: grid;
    gap: 8px;
}

.lead-modal label {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 650;
}

.lead-modal input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: #08110e;
    color: var(--text);
    padding: 10px 12px;
    font-size: 1rem;
}

.lead-modal input:focus {
    border-color: var(--green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(53, 213, 138, 0.1);
}

.lead-modal .button {
    margin-top: 14px;
}

.lead-modal__error {
    margin: 2px 0 0;
    color: #ff8b8b;
    font-size: 0.7rem;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
    .desktop-nav { gap: 20px; }
    .hero__content { grid-template-columns: minmax(0, 1fr); }
    .hero-media { margin-inline: auto; }
    .story-grid { grid-template-columns: 1fr; }
    .image-stage--product { aspect-ratio: 1398 / 783; }
    .image-stage--product img { object-position: top left; }
    .integrations__layout { grid-template-columns: minmax(300px, 0.85fr) minmax(500px, 1.15fr); }
    .hex { --hex-size: 108px; }
}

@media (max-width: 920px) {
    :root { --header-height: 66px; }
    .desktop-nav,
    .desktop-action { display: none; }
    .menu-toggle {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        cursor: pointer;
    }
    .menu-toggle span {
        position: absolute;
        width: 17px;
        height: 1px;
        background: var(--text);
        transition: transform 180ms ease;
    }
    .menu-toggle span:first-child { transform: translateY(-3px); }
    .menu-toggle span:last-child { transform: translateY(3px); }
    .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
    .mobile-nav {
        position: fixed;
        z-index: 99;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid transparent;
        background: rgba(7, 16, 13, 0.98);
        padding-inline: 20px;
        opacity: 0;
        transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease, border-color 180ms ease;
    }
    .mobile-nav.is-open {
        max-height: 480px;
        border-color: var(--line);
        padding-block: 16px 20px;
        opacity: 1;
    }
    .mobile-nav > a:not(.button) {
        border-bottom: 1px solid var(--line);
        color: var(--muted);
        padding: 12px 4px;
        font-size: 0.86rem;
        text-decoration: none;
    }
    .mobile-nav .button { margin-top: 14px; }
    .hero { min-height: auto; }
    .hero__content { grid-template-columns: 1fr; }
    .hero__copy { max-width: 820px; }
    .hero-media { width: 100%; margin: 10px auto 0; }
    .feature-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bento-card--dashboard,
    .bento-card--dispatch,
    .bento-card--kanban,
    .bento-card--pdv,
    .bento-card--catalog,
    .bento-card--launches { grid-column: span 1; }
    .bento-card--dashboard,
    .bento-card--dispatch { min-height: 560px; }
    .bento-card--kanban,
    .bento-card--pdv,
    .bento-card--catalog,
    .bento-card--launches { min-height: 410px; }
    .bento-media--dashboard,
    .bento-media--dispatch,
    .bento-media--kanban,
    .bento-media--pdv,
    .bento-media--catalog,
    .bento-media--launches { inset: auto; }
    .integrations__layout { grid-template-columns: 1fr; }
    .integrations__copy { max-width: 680px; }
    .integration-field { min-height: 590px; }
    .pricing__grid { grid-template-columns: 1fr; }
    .plan { min-height: auto; }
    .plan__description { min-height: 0; }
    .faq__layout { grid-template-columns: 1fr; }
    .faq .section-heading { position: static; }
    .closing-cta__inner { grid-template-columns: 1fr; }
    .closing-cta__actions { justify-self: start; }
}

@media (max-width: 680px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .section { padding-block: 78px; }
    .brand { width: 137px; }
    .hero { padding-top: calc(var(--header-height) + 54px); }
    .hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
    .hero__lead { font-size: 1rem; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .hero__proof { gap: 8px 18px; }
    .hero-media__topbar { height: 36px; }
    .hero-media__viewport { aspect-ratio: 1280 / 626; }
    .hero-media__video,
    .hero-media__fallback { object-position: top left; }
    .media-control span { display: none; }
    .floating-stat--orders { top: auto; bottom: -26px; left: 12px; }
    .floating-stat--status { display: none; }
    .signal-bar { overflow: hidden; }
    .signal-bar__inner { display: block; }
    .signal-bar p { margin-bottom: 10px; }
    .signal-track { width: max-content; justify-content: flex-start; animation: signal-marquee 18s linear infinite; }
    @keyframes signal-marquee { to { transform: translateX(-32%); } }
    .section-heading--split { grid-template-columns: 1fr; }
    .section-heading--split > p { margin-top: -16px; }
    .section-heading h2,
    .integrations__copy h2,
    .faq h2 { font-size: clamp(2.2rem, 11vw, 3.35rem); }
    .story-card__copy { padding: 20px; }
    .image-stage--store { aspect-ratio: 1816 / 910; }
    .image-stage--store img { width: 100%; max-width: 100%; object-position: top left; }
    .image-stage--product { aspect-ratio: 1398 / 783; }
    .image-stage--product img { width: 100%; max-width: 100%; object-position: top left; }
    .feature-bento { display: grid; grid-template-columns: 1fr; }
    .bento-card { min-height: 430px; }
    .bento-card--dashboard,
    .bento-card--dispatch { min-height: 510px; }
    .bento-card__header { padding: 18px 18px 0; }
    .bento-card__copy { padding: 20px 20px 22px; }
    .bento-media--dashboard,
    .bento-media--dispatch,
    .bento-media--kanban,
    .bento-media--pdv,
    .bento-media--catalog,
    .bento-media--launches {
        inset: auto;
        width: calc(100% - 18px);
        margin-left: 18px;
    }
    .integrations__layout { gap: 24px; }
    .integration-field { min-height: 560px; margin-inline: -8px; }
    .hex { --hex-size: 92px; }
    .hex img { width: 28px; height: 28px; }
    .hex span { max-width: 68px; font-size: 0.52rem; }
    .hex--meta { left: 43% !important; }
    .hex--whatsapp { left: 74% !important; }
    .hex--bling { left: 14% !important; }
    .hex--infinite { left: 4% !important; top: 47% !important; }
    .hex--mercado { left: 45% !important; }
    .hex--superfrete { left: 80% !important; }
    .hex--melhor { left: 17% !important; }
    .hex--instagram { left: 49% !important; }
    .hex--n8n { left: 81% !important; }
    .hex--chatwoot { left: 35% !important; }
    .steps__grid { grid-template-columns: 1fr; }
    .steps__grid li { min-height: auto; padding: 26px; }
    .steps__grid li > span { margin-bottom: 34px; }
    .plan { padding: 24px; }
    .faq summary { min-height: 70px; }
    .closing-cta .button { width: 100%; }
    .site-footer__top { grid-template-columns: repeat(2, 1fr); }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
    .whatsapp-float { right: 12px; bottom: 12px; }
    .whatsapp-float__button span { display: none; }
    .whatsapp-float__button { width: 50px; height: 50px; padding: 0; justify-content: center; border-radius: 50%; }
    .lead-modal__panel { padding: 26px 20px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .hero-media__fallback { animation: none; }
    .page-background__lines[data-webgl-state="static"] { opacity: 0.28; }
}
