/* =============================================================================
   RouteSellers — Landing comercial. CSS autocontido e escopado (prefixo .rs-).
   Inspirado no Cuba Admin (Rubik, #7366ff, cards suaves), porém leve: sem
   Bootstrap, sem FontAwesome, sem Swiper. Mockups desenhados em CSS (sem imagens).
   ========================================================================== */

/* ----------------------------------------------------------------- Tokens -- */
:root {
    --rs-primary: #7366ff;
    --rs-primary-d: #5d52d9;
    --rs-primary-l: #9a91ff;
    --rs-primary-50: #f3f1ff;
    --rs-primary-100: #e9e6ff;

    --rs-ink: #1b2038;
    --rs-ink-2: #2a3050;
    --rs-body: #565d76;
    --rs-muted: #8b91a7;

    --rs-line: #ecebf5;
    --rs-bg: #ffffff;
    --rs-soft: #f7f7fc;
    --rs-soft-2: #f1f0fb;

    --rs-teal: #12c2b0;
    --rs-green: #2fb344;
    --rs-amber: #f5a524;
    --rs-pink: #f5417f;
    --rs-blue: #3a86ff;
    --rs-violet: #a927f9;

    --rs-dark: #17123a;
    --rs-dark-2: #241a54;

    --rs-r-sm: 10px;
    --rs-r: 16px;
    --rs-r-lg: 24px;

    --rs-sh-sm: 0 2px 10px rgba(28, 33, 56, .06);
    --rs-sh: 0 14px 34px rgba(115, 102, 255, .12);
    --rs-sh-lg: 0 34px 64px rgba(28, 33, 56, .16);

    --rs-container: 1240px;
    --rs-nav-h: 82px;
    --rs-grad: linear-gradient(120deg, #8b81ff 0%, #7366ff 45%, #5d52d9 100%);
    --rs-grad-soft: linear-gradient(180deg, #faf9ff 0%, #ffffff 100%);
}

/* ------------------------------------------------------------------ Reset -- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.rs-page {
    margin: 0;
    font-family: 'Rubik', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--rs-body);
    background: var(--rs-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
.rs-page img { max-width: 100%; height: auto; display: block; }
.rs-page h1, .rs-page h2, .rs-page h3, .rs-page h4 {
    color: var(--rs-ink); font-weight: 600; line-height: 1.18; margin: 0 0 .5em;
    letter-spacing: -.01em;
}
.rs-page p { margin: 0 0 1rem; }
.rs-page a { color: var(--rs-primary-d); text-decoration: none; transition: color .2s; }
.rs-page a:hover { color: var(--rs-primary); }
.rs-page ul { margin: 0; padding: 0; list-style: none; }

/* Acessibilidade: foco visível e skip link */
.rs-page :focus-visible { outline: 3px solid rgba(115, 102, 255, .55); outline-offset: 2px; border-radius: 6px; }
.rs-skip {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--rs-primary-d); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.rs-skip:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------- Utilitários -- */
.rs-page [id] { scroll-margin-top: 92px; }
.rs-container { width: 100%; max-width: var(--rs-container); margin: 0 auto; padding: 0 26px; }
.rs-section { padding: 110px 0; position: relative; }
.rs-section--soft { background: var(--rs-soft); }
.rs-section--tight { padding: 74px 0; }
.rs-center { text-align: center; }
.rs-head { max-width: 740px; margin: 0 auto 62px; }
.rs-head--left { margin-left: 0; text-align: left; }
.rs-eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .09em;
    text-transform: uppercase; color: var(--rs-primary-d);
    background: var(--rs-primary-100); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.rs-h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.rs-lead { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--rs-body); }
.rs-grad-text {
    background: var(--rs-grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
/* Palavra rotativa: TODAS as palavras empilhadas num inline-grid (mesma célula).
   O slot tem SEMPRE a largura da maior palavra — trocar nunca reflui a frase
   (sem "pulo"), sem depender de medição em JS nem do carregamento da fonte. */
.rs-rotate { display: inline-grid; vertical-align: baseline; text-align: left; }
.rs-rotate__w {
    grid-area: 1 / 1; white-space: nowrap;
    opacity: 0; transform: translateY(.28em);
    transition: opacity .42s ease, transform .42s ease;
    background: var(--rs-grad); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.rs-rotate__w.is-active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rs-rotate__w { transition: none; opacity: 0; } .rs-rotate__w.is-active { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .rs-rotate { transition: none; } }

/* --------------------------------------------------------------- Botões ---- */
.rs-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font: inherit; font-weight: 500; font-size: .98rem; cursor: pointer;
    padding: 13px 26px; border-radius: 999px; border: 1.5px solid transparent;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s; white-space: nowrap;
    text-align: center;
}
.rs-btn svg { width: 18px; height: 18px; }
.rs-btn--primary { background: var(--rs-grad); color: #fff; box-shadow: 0 10px 24px rgba(115, 102, 255, .34); }
.rs-btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(115, 102, 255, .42); }
.rs-btn--ghost { background: #fff; color: var(--rs-ink-2); border-color: var(--rs-line); box-shadow: var(--rs-sh-sm); }
.rs-btn--ghost:hover { color: var(--rs-primary-d); border-color: var(--rs-primary-l); transform: translateY(-2px); }
.rs-btn--light { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .3); }
.rs-btn--light:hover { background: rgba(255, 255, 255, .24); color: #fff; }
.rs-btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.rs-btn--block { width: 100%; }
/* Botões que são <a> NÃO podem herdar a cor de link (.rs-page a = roxo):
   garante texto CLARO em fundo escuro e escuro em fundo claro. */
.rs-page a.rs-btn--primary, .rs-page a.rs-btn--primary:hover,
.rs-page a.rs-btn--light, .rs-page a.rs-btn--light:hover { color: #fff; }
.rs-page a.rs-btn--ghost { color: var(--rs-ink-2); }
.rs-page a.rs-btn--ghost:hover { color: var(--rs-primary-d); }

/* ---------------------------------------------------------------- Navbar --- */
.rs-nav {
    position: fixed; inset: 0 0 auto 0; height: var(--rs-nav-h); z-index: 100;
    display: flex; align-items: center; transition: box-shadow .25s, background .25s, height .25s;
    background: rgba(255, 255, 255, .82); backdrop-filter: saturate(180%) blur(14px);
}
.rs-nav.is-scrolled { box-shadow: 0 6px 24px rgba(28, 33, 56, .08); height: 66px; }
.rs-nav__row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.rs-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.28rem; color: var(--rs-ink); letter-spacing: -.02em; }
.rs-brand:hover { color: var(--rs-ink); }
.rs-brand__mark { width: 34px; height: 34px; border-radius: 10px; background: var(--rs-grad); display: grid; place-items: center; box-shadow: 0 6px 16px rgba(115, 102, 255, .4); }
.rs-brand__mark svg { width: 20px; height: 20px; color: #fff; }
.rs-brand small { font-weight: 500; color: var(--rs-muted); font-size: .82rem; }
.rs-page .rs-brand__img { height: 40px; width: auto; max-width: none; display: block; transition: height .25s; }
.rs-nav.is-scrolled .rs-brand__img { height: 34px; }
.rs-page .rs-brand__img--footer { height: 34px; }
.rs-nav__links { display: flex; align-items: center; gap: 2px; }
.rs-nav__links a { color: var(--rs-ink-2); font-weight: 500; font-size: .95rem; padding: 9px 13px; border-radius: 9px; white-space: nowrap; }
.rs-nav__links a:hover { color: var(--rs-primary-d); background: var(--rs-primary-50); }
.rs-nav__actions { display: flex; align-items: center; gap: 12px; }
.rs-nav__login { color: var(--rs-ink-2); font-weight: 500; padding: 9px 6px; }
.rs-nav__toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--rs-ink); }
.rs-nav__toggle svg { width: 26px; height: 26px; }
.rs-nav__mobile-only { display: none !important; }

/* ------------------------------------------------------------------ Hero --- */
.rs-hero { position: relative; padding: calc(var(--rs-nav-h) + 70px) 0 90px; overflow: hidden; background: var(--rs-grad-soft); }
.rs-hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 0; }
.rs-hero__glow--1 { width: 460px; height: 460px; background: #c9c2ff; top: -120px; right: -80px; }
.rs-hero__glow--2 { width: 380px; height: 380px; background: #e3d9ff; bottom: -140px; left: -120px; opacity: .45; }
.rs-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.rs-hero h1 { font-size: clamp(1.9rem, 6vw, 3.7rem); font-weight: 700; margin-bottom: 18px; }
.rs-hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.2rem); max-width: 560px; margin-bottom: 28px; }
.rs-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.rs-hero__trust { display: flex; flex-wrap: wrap; gap: 20px; }
.rs-hero__trust li { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--rs-ink-2); font-weight: 500; }
.rs-hero__trust svg { width: 18px; height: 18px; color: var(--rs-green); flex: none; }

/* Mockup de painel (desenhado em CSS, sem dados reais) */
.rs-mock { position: relative; }
.rs-window { background: #fff; border-radius: var(--rs-r-lg); box-shadow: var(--rs-sh-lg); border: 1px solid var(--rs-line); overflow: hidden; }
.rs-window__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--rs-line); background: #fbfbfe; }
.rs-window__bar i { width: 11px; height: 11px; border-radius: 50%; background: #e2e2ee; display: block; }
.rs-window__bar i:nth-child(1) { background: #ff6058; } .rs-window__bar i:nth-child(2) { background: #ffbd2e; } .rs-window__bar i:nth-child(3) { background: #28c840; }
.rs-window__url { margin-left: 10px; flex: 1; height: 22px; border-radius: 6px; background: #eeedfb; opacity: .5; }
.rs-window__body { padding: 18px; background: var(--rs-soft); }
.rs-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 12px; }
.rs-kpi { background: #fff; border: 1px solid var(--rs-line); border-radius: 12px; padding: 12px; }
.rs-kpi span { font-size: .66rem; color: var(--rs-muted); text-transform: uppercase; letter-spacing: .04em; }
.rs-kpi b { display: block; font-size: 1.15rem; color: var(--rs-ink); margin-top: 3px; }
.rs-kpi em { font-style: normal; font-size: .68rem; font-weight: 600; }
.rs-kpi em.up { color: var(--rs-green); } .rs-kpi em.down { color: var(--rs-pink); }
.rs-panel { background: #fff; border: 1px solid var(--rs-line); border-radius: 14px; padding: 14px 16px; }
.rs-panel__t { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--rs-muted); margin-bottom: 12px; }
.rs-bars { display: flex; align-items: flex-end; gap: 9px; height: 92px; }
.rs-bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #9a91ff, #7366ff); display: block; }
.rs-float { position: absolute; background: #fff; border-radius: 14px; box-shadow: var(--rs-sh); border: 1px solid var(--rs-line); padding: 12px 14px; display: flex; align-items: center; gap: 11px; }
.rs-float svg { width: 20px; height: 20px; }
.rs-float b { color: var(--rs-ink); font-size: .86rem; display: block; }
.rs-float span { font-size: .72rem; color: var(--rs-muted); }
.rs-float--tl { top: 18px; left: -26px; animation: rs-bob 5s ease-in-out infinite; }
.rs-float--br { bottom: 26px; right: -22px; animation: rs-bob 5.6s ease-in-out infinite .4s; }
.rs-float__ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
@keyframes rs-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .rs-float--tl, .rs-float--br { animation: none; } }

/* --------------------------------------------------- Faixa de logos/prova -- */
.rs-strip { padding: 34px 0; border-top: 1px solid var(--rs-line); border-bottom: 1px solid var(--rs-line); background: #fff; overflow: hidden; }
.rs-strip p { text-align: center; color: var(--rs-muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 24px; }
/* Carrossel infinito com bordas esfumaçadas (fade na cor do fundo) */
.rs-strip__marquee { position: relative; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%); }
.rs-strip__track { display: flex; align-items: center; gap: 62px; width: max-content; animation: rs-marquee 48s linear infinite; }
.rs-strip__track:hover { animation-play-state: paused; }
@keyframes rs-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rs-mq-item { flex: none; display: inline-flex; align-items: center; height: 46px; }
.rs-mq-item img { height: 34px; width: auto; max-width: 148px; object-fit: contain; display: block; }
.rs-mq-mono { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; }
@media (prefers-reduced-motion: reduce) {
    .rs-strip__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 22px 40px; }
    .rs-strip__marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------------------------------------------------------------- Cards ---- */
.rs-grid { display: grid; gap: 22px; }
.rs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rs-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rs-card { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 26px; box-shadow: var(--rs-sh-sm); transition: transform .25s, box-shadow .25s, border-color .25s; height: 100%; }
.rs-card:hover { transform: translateY(-5px); box-shadow: var(--rs-sh); border-color: #e2ddff; }
.rs-card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.rs-card p { font-size: .95rem; margin: 0; }

/* Dois destaques com checklist (ex.: estoque central × estoque do distribuidor) */
.rs-feat { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r-lg); padding: 30px; box-shadow: var(--rs-sh-sm); height: 100%; transition: transform .25s, box-shadow .25s, border-color .25s; }
.rs-feat:hover { transform: translateY(-5px); box-shadow: var(--rs-sh); border-color: #e2ddff; }
.rs-feat__hd { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.rs-feat__hd .rs-ic { margin: 0; flex: none; }
.rs-feat__hd h3 { font-size: 1.2rem; margin: 0; line-height: 1.25; }
.rs-feat > p { font-size: .96rem; color: var(--rs-body); margin: 0 0 18px; }
.rs-feat__list { display: grid; gap: 13px; border-top: 1px solid var(--rs-line); padding-top: 18px; }
.rs-feat__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--rs-body); }
.rs-feat__list li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; color: var(--rs-green); stroke-width: 2.6; }
.rs-feat__list b { color: var(--rs-ink); font-weight: 600; }
.rs-ic {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px;
    background: var(--rs-primary-50); color: var(--rs-primary-d);
}
.rs-ic svg { width: 26px; height: 26px; }
.rs-ic--teal { background: rgba(18, 194, 176, .12); color: #0e9e90; }
.rs-ic--amber { background: rgba(245, 165, 36, .14); color: #c67d05; }
.rs-ic--pink { background: rgba(245, 65, 127, .12); color: var(--rs-pink); }
.rs-ic--blue { background: rgba(58, 134, 255, .12); color: var(--rs-blue); }
.rs-ic--green { background: rgba(47, 179, 68, .13); color: var(--rs-green); }
.rs-ic--violet { background: rgba(169, 39, 249, .12); color: var(--rs-violet); }

/* Chip de benefício (após funcionalidade) */
.rs-benefit { display: flex; gap: 8px; align-items: flex-start; font-size: .9rem; color: var(--rs-ink-2); margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--rs-line); }
.rs-benefit svg { width: 16px; height: 16px; color: var(--rs-primary); flex: none; margin-top: 3px; }

/* --------------------------------------------------------------- Problemas - */
.rs-prob { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--rs-line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--rs-sh-sm); }
.rs-prob__x { width: 30px; height: 30px; border-radius: 9px; background: rgba(245, 65, 127, .1); color: var(--rs-pink); display: grid; place-items: center; flex: none; }
.rs-prob__x svg { width: 17px; height: 17px; }
.rs-prob b { color: var(--rs-ink); display: block; font-size: .98rem; margin-bottom: 2px; }
.rs-prob span { font-size: .88rem; }

/* ----------------------------------------------------------------- Fluxo --- */
.rs-flow { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rs-flow__step { position: relative; background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 24px 20px; box-shadow: var(--rs-sh-sm); }
.rs-flow__n { width: 40px; height: 40px; border-radius: 11px; background: var(--rs-grad); color: #fff; font-weight: 700; display: grid; place-items: center; margin-bottom: 14px; box-shadow: 0 8px 18px rgba(115, 102, 255, .34); }
.rs-flow__step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.rs-flow__step p { font-size: .88rem; margin: 0; }
.rs-flow__step::after { content: ""; position: absolute; top: 44px; right: -14px; width: 20px; height: 2px; background: #d9d5f2; z-index: 1; }
.rs-flow__step:last-child::after { display: none; }

/* --------------------------------------------- Jornada (fluxo animado) ----- */
.rs-jrn {
    display: flex; align-items: stretch; justify-content: flex-start;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 18px 4px 20px;
    scrollbar-width: thin; scrollbar-color: var(--rs-primary) #e7e3f6;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
}
.rs-jrn::-webkit-scrollbar { height: 9px; }
.rs-jrn::-webkit-scrollbar-track { background: #e7e3f6; border-radius: 99px; }
.rs-jrn::-webkit-scrollbar-thumb { background: var(--rs-primary); border-radius: 99px; border: 2px solid #e7e3f6; }
.rs-jrn__node { flex: 0 0 222px; min-width: 222px; scroll-snap-align: center; background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 30px 22px 26px; box-shadow: var(--rs-sh-sm); text-align: center; position: relative; display: flex; flex-direction: column; justify-content: center; transition: transform .22s, box-shadow .22s, border-color .22s; }
.rs-jrn__node:hover { transform: translateY(-4px); box-shadow: var(--rs-sh); border-color: #e2ddff; }
.rs-jrn__node--src { flex: 0 0 306px; min-width: 306px; }
.rs-jrn__hint { text-align: center; margin: 16px 0 0; font-size: .84rem; color: var(--rs-muted); font-weight: 500; }
.rs-jrn__hint svg { width: 15px; height: 15px; vertical-align: -3px; margin-left: 3px; }
.rs-jrn__num { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); width: 27px; height: 27px; border-radius: 50%; background: var(--rs-grad); color: #fff; font-size: .8rem; font-weight: 700; display: grid; place-items: center; box-shadow: 0 6px 14px rgba(115, 102, 255, .32); }
.rs-jrn__ic { margin: 4px auto 12px; }
.rs-jrn__node h4 { font-size: 1rem; margin-bottom: 5px; }
.rs-jrn__node p { font-size: .84rem; color: var(--rs-muted); margin: 0; line-height: 1.4; }
.rs-jrn__cap { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--rs-muted); font-weight: 700; margin: 2px 0 14px; }
.rs-jrn__srcs { display: grid; gap: 11px; }
.rs-jrn__src { display: flex; align-items: center; gap: 10px; text-align: left; }
.rs-jrn__src .rs-ic { width: 40px; height: 40px; border-radius: 11px; margin: 0; flex: none; }
.rs-jrn__src .rs-ic svg { width: 20px; height: 20px; }
.rs-jrn__src b { display: block; font-size: .9rem; color: var(--rs-ink); }
.rs-jrn__src > span > span { font-size: .76rem; color: var(--rs-muted); }
.rs-jrn__conn { flex: 0 0 44px; align-self: center; position: relative; height: 3px; background: #e2ddf5; border-radius: 3px; }
.rs-jrn__dot { position: absolute; top: 50%; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--rs-primary); box-shadow: 0 0 0 4px rgba(115, 102, 255, .18); transform: translate(-50%, -50%); animation: rs-jrn-x 1.9s ease-in-out infinite; }
.rs-jrn > *:nth-child(4) .rs-jrn__dot { animation-delay: .4s; }
.rs-jrn > *:nth-child(6) .rs-jrn__dot { animation-delay: .8s; }
.rs-jrn > *:nth-child(8) .rs-jrn__dot { animation-delay: 1.2s; }
.rs-jrn > *:nth-child(10) .rs-jrn__dot { animation-delay: 1.6s; }
@keyframes rs-jrn-x { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes rs-jrn-y { 0% { top: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 100%; opacity: 0; } }
@media (max-width: 680px) {
    .rs-jrn { flex-direction: column; align-items: stretch; overflow: visible; padding: 14px 0; scroll-snap-type: none; -webkit-mask-image: none; mask-image: none; }
    .rs-jrn__node, .rs-jrn__node--src { flex: none; width: 100%; min-width: 0; }
    .rs-jrn__node:hover { transform: none; }
    .rs-jrn__conn { flex: none; width: 3px; height: 46px; margin: 3px auto; }
    .rs-jrn__dot { top: 0; left: 50%; animation-name: rs-jrn-y; }
    .rs-jrn__hint { display: none; }
}
@media (prefers-reduced-motion: reduce) { .rs-jrn__dot { animation: none; opacity: .9; } }

/* ----------------------------------------------- Seções split (feature) --- */
.rs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.rs-split--rev .rs-split__media { order: 2; }
.rs-split__list { margin-top: 22px; display: grid; gap: 14px; }
.rs-split__list li { display: flex; gap: 12px; align-items: flex-start; }
.rs-split__list .rs-ic { width: 40px; height: 40px; border-radius: 11px; margin: 0; flex: none; }
.rs-split__list .rs-ic svg { width: 20px; height: 20px; }
.rs-split__list b { color: var(--rs-ink); display: block; margin-bottom: 1px; }
.rs-split__list span { font-size: .92rem; }

/* Cartão ilustrativo genérico (loja /f/, /i/, etc.) */
.rs-illus { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r-lg); box-shadow: var(--rs-sh); padding: 22px; }
.rs-tag-url { display: inline-flex; align-items: center; gap: 8px; background: var(--rs-primary-50); color: var(--rs-primary-d); font-weight: 600; font-size: .9rem; padding: 8px 14px; border-radius: 999px; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; }
.rs-illus__rows { margin-top: 18px; }
.rs-row-item { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--rs-line); }
.rs-row-item:last-child { border-bottom: 0; }
.rs-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--rs-grad); color: #fff; display: grid; place-items: center; font-weight: 600; flex: none; }
.rs-row-item__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.rs-row-item__ic svg { width: 20px; height: 20px; }
.rs-row-item__txt { flex: 1 1 auto; min-width: 0; }
.rs-row-item__txt b { display: block; color: var(--rs-ink); font-size: .9rem; line-height: 1.3; }
.rs-row-item__txt span { display: block; font-size: .78rem; color: var(--rs-muted); line-height: 1.32; margin-top: 2px; }
.rs-pill { margin-left: auto; flex: none; font-size: .72rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.rs-pill--g { background: rgba(47, 179, 68, .12); color: var(--rs-green); }
.rs-pill--a { background: rgba(245, 165, 36, .14); color: #b9770a; }
.rs-pill--p { background: var(--rs-primary-100); color: var(--rs-primary-d); }

/* --------------------------------------- Diagrama influenciador+distribuidor */
.rs-dual { display: grid; grid-template-columns: 1fr auto 1.35fr auto 1fr; align-items: center; }
.rs-dual__card { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 24px 20px; box-shadow: var(--rs-sh-sm); text-align: center; }
.rs-dual__card .rs-ic { margin: 0 auto 12px; }
.rs-dual__card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.rs-dual__card p { font-size: .89rem; color: var(--rs-muted); margin: 0; }
.rs-dual__badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .03em; padding: 4px 11px; border-radius: 999px; margin-bottom: 14px; }
.rs-dual__link { position: relative; width: 46px; height: 3px; background: #ddd8f2; border-radius: 3px; overflow: hidden; align-self: center; }
.rs-dual__link span { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--rs-primary), transparent); background-size: 60% 100%; background-repeat: no-repeat; animation: rs-sweepx 1.8s linear infinite; }
@keyframes rs-sweepx { from { background-position: -60% 0; } to { background-position: 160% 0; } }
@keyframes rs-sweepy { from { background-position: 0 -60%; } to { background-position: 0 160%; } }
.rs-dual__hub { background: var(--rs-grad); color: #fff; border-radius: var(--rs-r-lg); padding: 28px 26px; text-align: center; box-shadow: var(--rs-sh); }
.rs-dual__hubic { width: 56px; height: 56px; border-radius: 15px; background: rgba(255, 255, 255, .16); display: grid; place-items: center; margin: 0 auto 14px; }
.rs-dual__hubic svg { width: 28px; height: 28px; color: #fff; }
.rs-dual__hub b { display: block; font-size: 1.35rem; margin-bottom: 8px; }
.rs-dual__hub > p { font-size: .87rem; color: rgba(255, 255, 255, .92); margin: 0 0 18px; line-height: 1.5; }
.rs-dual__hub ul { display: grid; gap: 9px; text-align: left; }
.rs-dual__hub li { display: flex; gap: 9px; align-items: flex-start; font-size: .85rem; color: rgba(255, 255, 255, .96); }
.rs-dual__hub li svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: #fff; }

/* ------------------------------------------------------------ Painel grid -- */
.rs-mods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rs-mod { background: #fff; border: 1px solid var(--rs-line); border-radius: 14px; padding: 20px; box-shadow: var(--rs-sh-sm); transition: transform .2s, box-shadow .2s; }
.rs-mod:hover { transform: translateY(-4px); box-shadow: var(--rs-sh); }
.rs-mod .rs-ic { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; }
.rs-mod .rs-ic svg { width: 22px; height: 22px; }
.rs-mod h3 { font-size: 1rem; margin-bottom: 4px; }
.rs-mod p { font-size: .84rem; margin: 0; }

/* --------------------------------------------------------------- Perfis ---- */
.rs-persona { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 24px; box-shadow: var(--rs-sh-sm); height: 100%; }
.rs-persona__h { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.rs-persona h3 { font-size: 1.06rem; margin: 0; }
.rs-persona p { font-size: .92rem; margin: 0; }

/* -------------------------------------------------------------- Segurança -- */
.rs-dark { background: linear-gradient(150deg, var(--rs-dark) 0%, var(--rs-dark-2) 100%); color: #cbc9e6; position: relative; overflow: hidden; }
.rs-dark h2, .rs-dark h3 { color: #fff; }
.rs-dark .rs-eyebrow { background: rgba(255, 255, 255, .12); color: #d9d4ff; }
.rs-dark__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rs-sec-item { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: 14px; padding: 20px; }
.rs-sec-item svg { width: 24px; height: 24px; color: #b3a8ff; margin-bottom: 10px; }
.rs-sec-item b { color: #fff; display: block; margin-bottom: 4px; }
.rs-sec-item span { font-size: .88rem; color: #b4b1d4; }

/* ----------------------------------------------------- Integrações (cards) - */
.rs-int-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(188px, 1fr)); gap: 18px; }
.rs-int-card { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 26px 18px; box-shadow: var(--rs-sh-sm); text-align: center; transition: transform .25s, box-shadow .25s, border-color .25s; }
.rs-int-card:hover { transform: translateY(-5px); box-shadow: var(--rs-sh); border-color: #e2ddff; }
.rs-int-logo { width: 78px; height: 78px; border-radius: 18px; display: grid; place-items: center; margin: 0 auto 16px; }
.rs-int-logo img { max-width: 56px; max-height: 48px; width: auto; height: auto; object-fit: contain; display: block; }
.rs-int-ini { font-weight: 700; font-size: 1.6rem; letter-spacing: -.02em; }
.rs-int-card b { color: var(--rs-ink); font-size: 1.02rem; display: block; margin-bottom: 4px; }
.rs-int-desc { font-size: .84rem; color: var(--rs-muted); line-height: 1.42; }

/* ---------------------------------------------------------- Comparação ----- */
.rs-vs { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.rs-vs__col { border-radius: var(--rs-r-lg); padding: 30px 30px 26px; }
.rs-vs__col--bad { background: #fff; border: 1px solid var(--rs-line); }
.rs-vs__col--good { background: var(--rs-grad); color: #fff; box-shadow: var(--rs-sh); }
.rs-vs__head { display: flex; align-items: center; gap: 11px; font-size: 1.16rem; font-weight: 600; color: var(--rs-ink); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--rs-line); }
.rs-vs__col--good .rs-vs__head { color: #fff; border-bottom-color: rgba(255, 255, 255, .22); }
.rs-vs__hic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.rs-vs__hic svg { width: 20px; height: 20px; }
.rs-vs__hic--bad { background: rgba(245, 65, 127, .1); color: var(--rs-pink); }
.rs-vs__hic--good { background: rgba(255, 255, 255, .18); color: #fff; }
.rs-vs__col li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: .95rem; }
.rs-vs__col--bad li { color: var(--rs-body); }
.rs-vs__col--good li { color: rgba(255, 255, 255, .95); }
.rs-vs__col li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.rs-vs__col--bad li svg { color: #c9ccd8; }
.rs-vs__col--good li svg { color: #fff; }
.rs-vs__badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 1px solid var(--rs-line); box-shadow: var(--rs-sh); display: grid; place-items: center; z-index: 2; }
.rs-vs__badge svg { width: 22px; height: 22px; color: var(--rs-primary); }
@media (max-width: 680px) { .rs-vs__badge { display: none; } }

/* ----------------------------------------------------------- Demonstração -- */
.rs-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rs-shot { border-radius: var(--rs-r); overflow: hidden; border: 1px solid var(--rs-line); box-shadow: var(--rs-sh-sm); background: #fff; }
.rs-shot__ph { aspect-ratio: 16 / 10; display: grid; place-items: center; text-align: center; color: var(--rs-muted); background: repeating-linear-gradient(45deg, #f5f4fc, #f5f4fc 12px, #f0eef9 12px, #f0eef9 24px); padding: 20px; }
.rs-shot__ph svg { width: 40px; height: 40px; margin-bottom: 8px; color: #c3bff0; }
.rs-shot__ph span { font-size: .78rem; }
.rs-shot__cap { padding: 14px 16px; font-size: .9rem; color: var(--rs-ink-2); font-weight: 500; border-top: 1px solid var(--rs-line); }

/* -------------------------------------------------------------- Depoimentos */
.rs-quote { background: #fff; border: 1px solid var(--rs-line); border-radius: var(--rs-r); padding: 26px; box-shadow: var(--rs-sh-sm); height: 100%; }
.rs-quote__stars { color: var(--rs-amber); margin-bottom: 12px; display: flex; gap: 3px; }
.rs-quote__stars svg { width: 18px; height: 18px; }
.rs-quote p { font-style: italic; color: var(--rs-ink-2); }
.rs-quote__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.rs-quote__ph { width: 44px; height: 44px; border-radius: 50%; background: var(--rs-soft-2); border: 1px dashed #cdc9ec; }
.rs-quote__who b { color: var(--rs-ink); font-size: .92rem; display: block; } .rs-quote__who span { font-size: .8rem; }
.rs-note { background: var(--rs-primary-50); border: 1px dashed #cbc3ff; color: var(--rs-primary-d); border-radius: 12px; padding: 12px 16px; font-size: .86rem; text-align: center; margin-top: 22px; }

/* -------------------------------------------- Planos (tabela comparativa) -- */
.rs-btn--sm { padding: 10px 18px; font-size: .88rem; }
.rs-cmp-wrap { overflow-x: auto; border-radius: var(--rs-r-lg); box-shadow: var(--rs-sh); border: 1px solid var(--rs-line); background: #fff; -webkit-overflow-scrolling: touch; }
.rs-cmp { width: 100%; min-width: 800px; border-collapse: collapse; background: #fff; }
.rs-cmp th, .rs-cmp td { text-align: center; padding: 14px 16px; border-bottom: 1px solid var(--rs-line); vertical-align: middle; }
.rs-cmp tbody tr:last-child th, .rs-cmp tbody tr:last-child td { border-bottom: 0; }

/* Cabeçalho dos planos */
.rs-cmp thead th { vertical-align: top; padding: 24px 16px 20px; border-bottom: 2px solid var(--rs-line); position: relative; }
.rs-cmp__corner { text-align: left !important; width: 25%; background: var(--rs-soft); position: sticky; left: 0; z-index: 3; }
.rs-cmp__hint { font-size: .82rem; color: var(--rs-muted); font-weight: 500; }
.rs-cmp__plan { width: 18.75%; }
.rs-cmp__name { display: block; font-size: 1.25rem; font-weight: 700; color: var(--rs-ink); letter-spacing: -.01em; }
.rs-cmp__who { display: block; font-size: .8rem; color: var(--rs-muted); font-weight: 400; margin: 7px auto 15px; line-height: 1.42; max-width: 190px; min-height: 46px; }
.rs-cmp__flag { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--rs-grad); color: #fff; font-size: .66rem; font-weight: 600; letter-spacing: .02em; padding: 4px 13px; border-radius: 0 0 10px 10px; box-shadow: 0 6px 14px rgba(115, 102, 255, .32); }
.rs-cmp__plan.is-hot { background: var(--rs-primary-50); }
.rs-cmp__plan.is-hot .rs-cmp__name { color: var(--rs-primary-d); }

/* Coluna de rótulos (fixa ao rolar na horizontal) */
.rs-cmp__label { text-align: left !important; font-weight: 500; color: var(--rs-ink-2); font-size: .92rem; background: var(--rs-soft); position: sticky; left: 0; z-index: 1; }

/* Linha de título de grupo */
.rs-cmp__grouprow td { text-align: left; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--rs-primary-d); background: var(--rs-primary-100); padding: 11px 16px; }

/* Células */
.rs-cmp__cell.is-hot { background: rgba(115, 102, 255, .05); }
.rs-cmp__val { font-weight: 600; color: var(--rs-ink); font-size: .95rem; }
.rs-cmp__val.is-off { color: #c6cad6; font-weight: 400; }
.rs-cmp__yes { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(47, 179, 68, .13); color: var(--rs-green); }
.rs-cmp__yes svg { width: 15px; height: 15px; }
.rs-cmp__no { display: inline-grid; place-items: center; width: 24px; height: 24px; color: #d2d5df; }
.rs-cmp__no svg { width: 18px; height: 18px; }

/* ----------------------------------------------------------------- FAQ ----- */
.rs-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.rs-faq__item { background: #fff; border: 1px solid var(--rs-line); border-radius: 14px; overflow: hidden; box-shadow: var(--rs-sh-sm); }
.rs-faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 22px; font: inherit; font-weight: 500; font-size: 1.02rem; color: var(--rs-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.rs-faq__q svg { width: 20px; height: 20px; color: var(--rs-primary); flex: none; transition: transform .3s; }
.rs-faq__item.is-open .rs-faq__q svg { transform: rotate(45deg); }
.rs-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.rs-faq__a > div { padding: 0 22px 20px; color: var(--rs-body); font-size: .95rem; }

/* ---------------------------------------------------------------- CTA/form - */
.rs-cta { background: var(--rs-grad); color: #fff; }
.rs-cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.rs-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.rs-cta p { color: rgba(255, 255, 255, .9); }
.rs-cta__benes { margin-top: 20px; display: grid; gap: 12px; }
.rs-cta__benes li { display: flex; gap: 10px; align-items: center; }
.rs-cta__benes svg { width: 20px; height: 20px; color: #fff; flex: none; }
.rs-cta__eco { margin-top: 28px; padding: 18px 20px; border-radius: 16px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); }
.rs-cta__eco-lbl { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: rgba(255, 255, 255, .8); margin-bottom: 12px; }
.rs-cta__eco-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rs-cta__eco-chips span { font-size: .86rem; font-weight: 500; color: #fff; background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .2); padding: 6px 13px; border-radius: 999px; }
.rs-form { background: #fff; border-radius: var(--rs-r-lg); padding: 30px; box-shadow: var(--rs-sh-lg); }
.rs-form h3 { font-size: 1.3rem; }
.rs-form p.rs-form__hint { color: var(--rs-muted); font-size: .88rem; margin-bottom: 20px; }
.rs-field { margin-bottom: 15px; }
.rs-field label { display: block; font-size: .84rem; font-weight: 500; color: var(--rs-ink-2); margin-bottom: 6px; }
.rs-field label .req { color: var(--rs-pink); }
.rs-input, .rs-select, .rs-textarea {
    width: 100%; font: inherit; font-size: .95rem; color: var(--rs-ink); background: var(--rs-soft);
    border: 1.5px solid var(--rs-line); border-radius: 11px; padding: 12px 14px; transition: border-color .2s, background .2s, box-shadow .2s;
}
.rs-input:focus, .rs-select:focus, .rs-textarea:focus { outline: none; border-color: var(--rs-primary-l); background: #fff; box-shadow: 0 0 0 4px rgba(115, 102, 255, .12); }
.rs-textarea { resize: vertical; min-height: 92px; }
.rs-field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rs-check { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--rs-body); margin: 4px 0 6px; }
.rs-check input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--rs-primary); flex: none; }
.rs-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rs-field .rs-err { color: var(--rs-pink); font-size: .78rem; margin-top: 5px; display: none; }
.rs-field.has-error .rs-input, .rs-field.has-error .rs-select, .rs-field.has-error .rs-textarea { border-color: var(--rs-pink); background: #fff7fa; }
.rs-field.has-error .rs-err { display: block; }
.rs-form__msg { border-radius: 11px; padding: 13px 16px; font-size: .92rem; margin-bottom: 16px; display: none; }
.rs-form__msg.is-ok { display: block; background: rgba(47, 179, 68, .1); color: #1c7a2c; border: 1px solid rgba(47, 179, 68, .25); }
.rs-form__msg.is-err { display: block; background: rgba(245, 65, 127, .09); color: #b31655; border: 1px solid rgba(245, 65, 127, .22); }

/* ----------------------------------------------------------------- Footer -- */
.rs-footer { background: var(--rs-dark); color: #aaa6cf; padding: 68px 0 0; }
.rs-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 44px; }
.rs-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.rs-footer a { color: #aaa6cf; font-size: .92rem; }
.rs-footer a:hover { color: #fff; }
.rs-footer__links li { margin-bottom: 10px; }
.rs-footer__brand p { font-size: .92rem; max-width: 320px; margin: 14px 0 18px; }
.rs-footer__social { display: flex; gap: 10px; }
.rs-footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; }
.rs-footer__social a:hover { background: var(--rs-primary); }
.rs-footer__social svg { width: 18px; height: 18px; color: #fff; }
.rs-subfooter { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; }
.rs-subfooter a { color: #aaa6cf; margin-left: 18px; }

/* ------------------------------------------------------------ WhatsApp fab - */
.rs-wa { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; box-shadow: 0 12px 28px rgba(37, 211, 102, .45); display: grid; place-items: center; transition: transform .2s; }
.rs-wa:hover { transform: scale(1.08); }
.rs-wa svg { width: 30px; height: 30px; color: #fff; }

/* ---------------------------------------- Plataforma (módulos + janela) ---- */
/* barra de ícones (tabs) */
.rs-orb__bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; width: max-content; max-width: 100%; margin: 0 auto 42px; padding: 10px; background: #fff; border: 1px solid var(--rs-line); border-radius: 20px; box-shadow: var(--rs-sh-sm); }
.rs-orb__tab { width: 52px; height: 52px; border-radius: 13px; border: 1px solid transparent; background: var(--rs-primary-50); color: var(--rs-primary-d); display: grid; place-items: center; cursor: pointer; padding: 0; position: relative; transition: background .2s, color .2s, transform .2s, box-shadow .2s; }
.rs-orb__tab svg { width: 24px; height: 24px; }
.rs-orb__tab:hover { transform: translateY(-2px); border-color: #d7cfff; }
.rs-orb__tab.is-active { background: var(--rs-grad); color: #fff; box-shadow: 0 8px 18px rgba(115, 102, 255, .4); }
.rs-orb__tab.is-active::after { content: ''; position: absolute; bottom: -7px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--rs-primary); }

/* conteúdo: esquerda texto + direita janela */
.rs-orb__panes { position: relative; }
.rs-orb__pane[hidden] { display: none; }
.rs-orb__pane { display: grid; grid-template-columns: 1fr 1.08fr; gap: 48px; align-items: center; }
.rs-orb__info { min-width: 0; }
.rs-orb__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; color: var(--rs-primary-d); background: var(--rs-primary-50); padding: 7px 15px 7px 11px; border-radius: 999px; margin-bottom: 20px; }
.rs-orb__badge svg { width: 17px; height: 17px; }
.rs-orb__title { font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 14px; }
.rs-orb__desc { font-size: 1rem; color: var(--rs-body); margin: 0 0 24px; }
.rs-page .rs-orb__list { display: grid; gap: 13px; margin: 0 0 28px; padding: 0; list-style: none; }
.rs-orb__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; color: var(--rs-ink-2); }
.rs-orb__list li svg { width: 20px; height: 20px; color: var(--rs-green); flex: none; margin-top: 1px; stroke-width: 2.6; }

/* janela (mockup de app) */
.rs-orb__win { min-width: 0; border: 1px solid var(--rs-line); border-radius: 16px; overflow: hidden; background: #fff; box-shadow: var(--rs-sh); }
.rs-win__bar { display: flex; align-items: center; gap: 12px; padding: 11px 15px; border-bottom: 1px solid var(--rs-line); background: #f7f5ff; }
.rs-win__dots { display: flex; gap: 6px; flex: none; }
.rs-win__dots span { width: 11px; height: 11px; border-radius: 50%; }
.rs-win__dots span:nth-child(1) { background: #ff5f57; }
.rs-win__dots span:nth-child(2) { background: #febc2e; }
.rs-win__dots span:nth-child(3) { background: #28c840; }
.rs-win__title { font-size: .82rem; color: var(--rs-muted); font-weight: 500; }
.rs-win__body { padding: 20px; min-height: 240px; }
.rs-win__section { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--rs-muted); }
.rs-win__body .rs-mk__kpi, .rs-win__body .rs-mk__rows li, .rs-win__body .rs-mk__chip { background: #f8f7ff; }
.rs-orb__live { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--rs-primary-d); font-weight: 700; }
.rs-orb__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #2fb344; box-shadow: 0 0 0 3px rgba(47, 179, 68, .2); animation: rs-orb-pulse 1.6s ease-in-out infinite; }
@keyframes rs-orb-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.rs-orb__foot { display: flex; align-items: center; gap: 6px 16px; flex-wrap: wrap; margin-top: 4px; }
.rs-orb__cta { padding: 10px 20px; font-size: .9rem; box-shadow: 0 6px 16px rgba(115, 102, 255, .26); }
.rs-orb__cta svg { width: 16px; height: 16px; }
.rs-orb__cta:hover { box-shadow: 0 10px 22px rgba(115, 102, 255, .34); }
.rs-orb__foothint { font-size: .82rem; color: var(--rs-muted); }

/* --- mini-widgets do painel (KPIs + gráficos variados por módulo) --- */
.rs-mk__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 13px; }
.rs-mk__kpi { background: #fff; border: 1px solid #ece8fb; border-radius: 11px; padding: 9px 12px; display: grid; grid-template-columns: 1fr auto; align-items: baseline; column-gap: 6px; }
.rs-mk__klabel { grid-column: 1 / -1; font-size: .71rem; color: var(--rs-muted); font-weight: 500; margin-bottom: 3px; }
.rs-mk__num { grid-column: 1; font-size: 1.16rem; font-weight: 700; color: var(--rs-ink); font-variant-numeric: tabular-nums; line-height: 1.1; }
.rs-mk__trend { grid-column: 2; justify-self: end; align-self: center; font-size: .66rem; font-weight: 700; padding: 2px 7px; border-radius: 6px; white-space: nowrap; }
.rs-mk__trend--up { color: #1c7a2c; background: rgba(47, 179, 68, .14); }
.rs-mk__trend--dn { color: #b4690e; background: rgba(245, 165, 36, .18); }
.rs-mk__cap { display: block; margin-top: 9px; font-size: .74rem; color: var(--rs-muted); }
.rs-mk__chart--row { display: flex; align-items: center; gap: 18px; }

/* barras */
.rs-mk__bars { display: flex; align-items: flex-end; gap: 7px; height: 82px; }
.rs-mk__bar { flex: 1; border-radius: 5px 5px 0 0; background: var(--rs-grad); min-height: 5px; height: 0; transition: height .7s cubic-bezier(.22, 1, .36, 1); }
.rs-orb__pane.is-on .rs-mk__bar { height: var(--h); }

/* progresso / funil */
.rs-mk__prog { display: grid; gap: 9px; }
.rs-mk__prow { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; font-size: .78rem; color: var(--rs-body); }
.rs-mk__plabel { white-space: nowrap; }
.rs-mk__track { height: 8px; border-radius: 999px; background: #e5e0fb; overflow: hidden; }
.rs-mk__fill { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--rs-grad); transition: width .75s cubic-bezier(.22, 1, .36, 1); }
.rs-orb__pane.is-on .rs-mk__fill { width: var(--w); }
.rs-mk__pval { font-weight: 700; color: var(--rs-ink); font-size: .76rem; min-width: 32px; text-align: right; }

/* linhas de status */
.rs-mk__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.rs-mk__rows li { display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: var(--rs-body); background: #fff; border: 1px solid #ece8fb; border-radius: 9px; padding: 7px 12px; opacity: 0; transform: translateY(6px); }
.rs-orb__pane.is-on .rs-mk__rows li { opacity: 1; transform: none; transition: opacity .4s ease, transform .4s ease; }
.rs-orb__pane.is-on .rs-mk__rows li:nth-child(2) { transition-delay: .09s; }
.rs-orb__pane.is-on .rs-mk__rows li:nth-child(3) { transition-delay: .18s; }
.rs-mk__pill { font-size: .68rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; white-space: nowrap; }
.rs-mk__pill--g { color: #1c7a2c; background: rgba(47, 179, 68, .14); }
.rs-mk__pill--b { color: #2456c9; background: rgba(58, 134, 255, .14); }
.rs-mk__pill--a { color: #b4690e; background: rgba(245, 165, 36, .18); }

/* chips on/off */
.rs-mk__chips { display: flex; flex-wrap: wrap; gap: 7px; }
.rs-mk__chip { position: relative; font-size: .76rem; font-weight: 600; padding: 6px 12px 6px 26px; border-radius: 999px; border: 1px solid #ece8fb; background: #fff; color: var(--rs-ink); opacity: 0; transform: scale(.88); }
.rs-orb__pane.is-on .rs-mk__chip { opacity: 1; transform: none; transition: opacity .3s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1); }
.rs-orb__pane.is-on .rs-mk__chip:nth-child(2) { transition-delay: .05s; }
.rs-orb__pane.is-on .rs-mk__chip:nth-child(3) { transition-delay: .1s; }
.rs-orb__pane.is-on .rs-mk__chip:nth-child(4) { transition-delay: .15s; }
.rs-orb__pane.is-on .rs-mk__chip:nth-child(5) { transition-delay: .2s; }
.rs-orb__pane.is-on .rs-mk__chip:nth-child(6) { transition-delay: .25s; }
.rs-mk__chip::before { content: ''; position: absolute; left: 11px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; }
.rs-mk__chip.is-on::before { background: #2fb344; box-shadow: 0 0 0 3px rgba(47, 179, 68, .18); }
.rs-mk__chip.is-off { color: var(--rs-muted); }
.rs-mk__chip.is-off::before { background: #cdd0dd; }

/* rosca (donut) */
.rs-mk__donut { position: relative; width: 96px; height: 96px; flex: none; }
.rs-mk__donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.rs-mk__dbg { fill: none; stroke: #e5e0fb; stroke-width: 9; }
.rs-mk__ring { fill: none; stroke: var(--rs-primary); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .85s cubic-bezier(.22, 1, .36, 1); }
.rs-orb__pane.is-on .rs-mk__ring { stroke-dashoffset: calc(1 - var(--p)); }
.rs-mk__dctr { position: absolute; inset: 0; display: grid; place-items: center; }
.rs-mk__dctr b { font-size: 1.32rem; color: var(--rs-ink); }
.rs-mk__cinfo { flex: 1; }
.rs-mk__clbl { display: block; font-weight: 600; color: var(--rs-ink); font-size: .92rem; }
.rs-mk__cinfo .rs-mk__cap { margin-top: 4px; }

/* medidor (gauge) */
.rs-mk__gauge { position: relative; width: 140px; margin: 2px auto 0; }
.rs-mk__gauge svg { width: 100%; display: block; overflow: visible; }
.rs-mk__gbg { fill: none; stroke: #e5e0fb; stroke-width: 8; stroke-linecap: round; }
.rs-mk__garc { fill: none; stroke: var(--rs-primary); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset .85s cubic-bezier(.22, 1, .36, 1); }
.rs-orb__pane.is-on .rs-mk__garc { stroke-dashoffset: calc(1 - var(--p)); }
.rs-mk__gctr { text-align: center; margin-top: -8px; }
.rs-mk__gctr b { display: block; font-size: 1.32rem; color: var(--rs-ink); }
.rs-mk__gctr span { font-size: .76rem; color: var(--rs-muted); }

/* linha (sparkline) */
.rs-mk__spark { height: 82px; }
.rs-mk__spark svg { width: 100%; height: 100%; }
.rs-mk__sarea { fill: rgba(115, 102, 255, .13); opacity: 0; transition: opacity .6s ease .25s; }
.rs-mk__sline { fill: none; stroke: var(--rs-primary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1s cubic-bezier(.4, 0, .2, 1); }
.rs-orb__pane.is-on .rs-mk__sline { stroke-dashoffset: 0; }
.rs-orb__pane.is-on .rs-mk__sarea { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .rs-orb__live::before { animation: none; }
    .rs-orb__tab, .rs-mk__bar, .rs-mk__fill, .rs-mk__ring, .rs-mk__garc, .rs-mk__sline, .rs-mk__sarea, .rs-mk__rows li, .rs-mk__chip { transition: none !important; }
}

@media (max-width: 900px) {
    .rs-orb__pane { grid-template-columns: 1fr; gap: 30px; }
    .rs-orb__win { max-width: 520px; }
}
@media (max-width: 720px) {
    .rs-orb__bar { flex-wrap: nowrap; overflow-x: auto; width: 100%; justify-content: flex-start; gap: 8px; padding: 9px 10px 12px; border-radius: 16px; scrollbar-width: thin; scrollbar-color: var(--rs-primary) #ece8fb; }
    .rs-orb__bar::-webkit-scrollbar { height: 6px; }
    .rs-orb__bar::-webkit-scrollbar-track { background: #ece8fb; border-radius: 99px; margin: 0 8px; }
    .rs-orb__bar::-webkit-scrollbar-thumb { background: var(--rs-primary); border-radius: 99px; }
    .rs-orb__tab { flex: 0 0 auto; }
    .rs-orb__tab.is-active::after { display: none; }
}
@media (max-width: 600px) {
    .rs-orb__tab { width: 46px; height: 46px; border-radius: 11px; }
    .rs-orb__tab svg { width: 21px; height: 21px; }
    .rs-win__body { padding: 16px; min-height: 0; }
    .rs-mk__kpis { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------- Reveal ----- */
.rs-reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.rs-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rs-reveal { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------- Responsivo ----- */
@media (max-width: 992px) {
    .rs-hero__grid, .rs-split, .rs-cta__grid { grid-template-columns: 1fr; }
    .rs-hero__grid { gap: 40px; }
    .rs-split--rev .rs-split__media { order: 0; }
    .rs-flow { grid-template-columns: repeat(2, 1fr); }
    .rs-flow__step::after { display: none; }
    .rs-mods { grid-template-columns: repeat(3, 1fr); }
    .rs-dark__grid, .rs-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .rs-dual { grid-template-columns: 1fr; gap: 14px; }
    .rs-dual__link { width: 3px; height: 40px; justify-self: center; }
    .rs-dual__link span { background: linear-gradient(180deg, transparent, var(--rs-primary), transparent); background-size: 100% 60%; animation-name: rs-sweepy; }
    .rs-plans, .rs-shots { grid-template-columns: 1fr; }
    .rs-plan--hot { transform: none; }
    .rs-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
    .rs-nav__links, .rs-nav__login { display: none; }
    .rs-nav__actions .rs-btn--primary { display: none; } /* CTA vai para o drawer */
    .rs-nav__toggle { display: inline-flex; }
    .rs-nav.is-open .rs-nav__links {
        display: flex; flex-direction: column; align-items: stretch; gap: 4px;
        position: absolute; top: var(--rs-nav-h); left: 0; right: 0; background: #fff;
        padding: 14px 22px 22px; box-shadow: 0 20px 30px rgba(28, 33, 56, .12); border-top: 1px solid var(--rs-line);
    }
    .rs-nav.is-open .rs-nav__links a { padding: 12px 10px; }
    .rs-nav.is-open .rs-nav__mobile-only { display: block !important; }
    .rs-nav.is-open .rs-nav__mobile-only.rs-btn { padding: 13px 20px; margin-top: 8px; color: #fff; justify-content: center; }
}
@media (max-width: 680px) {
    .rs-section { padding: 72px 0; }
    .rs-eyebrow { font-size: .66rem; letter-spacing: .03em; }
    .rs-page .rs-brand__img { height: 30px; }
    .rs-nav.is-scrolled .rs-brand__img { height: 28px; }
    .rs-grid--2, .rs-grid--3, .rs-grid--4, .rs-mods, .rs-vs, .rs-dark__grid, .rs-footer__grid, .rs-field--2 { grid-template-columns: 1fr; }
    .rs-flow { grid-template-columns: 1fr; }
    .rs-float--tl { left: 0; } .rs-float--br { right: 0; }
    .rs-hero__cta .rs-btn { width: 100%; }
    .rs-ent { flex-direction: column; align-items: flex-start; }
    .rs-kpis { grid-template-columns: 1fr 1fr; }
}
