/* =====================================================================
   Sistema Resolve — tema ResolveVendas
   Design system de vendas: navy (confiança) + azul elétrico (tecnologia)
   + laranja (ação/urgência). Tipografia grande, muito espaço, movimento.
   ===================================================================== */

:root {
    --navy-950: #060D24;
    --navy-900: #0B1B3F;
    --navy-800: #10245A;
    --navy-700: #16307A;
    --blue-600: #2F6BFF;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-100: #DBEAFE;
    --blue-50: #EFF5FF;
    --orange-600: #EA580C;
    --orange-500: #FF6B1A;
    --orange-400: #FF8A47;
    --orange-100: #FFEDD5;
    --green-600: #16A34A;
    --green-500: #22C55E;
    --green-100: #DCFCE7;
    --wa: #25D366;
    --wa-dark: #128C7E;
    --ink: #0F172A;
    --ink-2: #334155;
    --ink-3: #64748B;
    --ink-4: #94A3B8;
    --line: #E2E8F0;
    --line-2: #CBD5E1;
    --bg: #FFFFFF;
    --bg-2: #F7F9FF;
    --bg-3: #EEF3FF;
    --accent: var(--blue-600);
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
    --shadow: 0 10px 30px -10px rgba(11, 27, 63, .25);
    --shadow-lg: 0 30px 60px -20px rgba(11, 27, 63, .35);
    --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
    --container: 1200px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body *, body *::before, body *::after { font-family: inherit; }
body h1, body h2, body h3, body h4, body .font-head { font-family: var(--font-head); letter-spacing: -.02em; line-height: 1.12; font-weight: 800; color: var(--ink); }
body p { color: var(--ink-2); }
body a { color: inherit; text-decoration: none; }
body img { display: block; }
body button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
body input, body select, body textarea { font: inherit; }
::selection { background: var(--orange-500); color: #fff; }

.container { width: min(var(--container), 100% - 40px); margin: 0 auto; }
@media (max-width: 640px) { .container { width: calc(100% - 32px); } }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: radial-gradient(1200px 600px at 20% -10%, rgba(47, 107, 255, .35), transparent 60%), radial-gradient(900px 500px at 100% 100%, rgba(255, 107, 26, .18), transparent 55%), var(--navy-900); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255, 255, 255, .75); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 48px); margin: 14px 0 16px; }
.section-head p { font-size: clamp(16px, 1.4vw, 19px); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent); padding: 6px 12px; border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 10%, #fff); border: 1px solid color-mix(in srgb, var(--accent) 22%, #fff);
}
.section--dark .eyebrow { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .18); color: #fff; }
.eyebrow--orange { --accent: var(--orange-600); }
.eyebrow--green { --accent: var(--green-600); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 24px; border-radius: 14px; font-weight: 700; font-size: 16px; line-height: 1;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
    white-space: nowrap; border: 1.5px solid transparent; position: relative; overflow: hidden; margin-top: 0;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: linear-gradient(180deg, var(--orange-400), var(--orange-500) 55%, var(--orange-600)); color: #fff; box-shadow: 0 10px 24px -8px rgba(255, 107, 26, .65), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(255, 107, 26, .75), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn--primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s var(--ease); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--blue { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px -10px rgba(47, 107, 255, .7); }
.btn--blue:hover { background: #2559E0; transform: translateY(-2px); }
.btn--outline { border-color: var(--line-2); color: var(--ink) !important; background: #fff; }
.btn--outline:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.btn--ghost { color: #fff; background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .18); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .7); }
.btn--wa:hover { background: #1fbd59; transform: translateY(-2px); }
.btn--lg { padding: 18px 30px; font-size: 17px; border-radius: 16px; }
.btn--sm { padding: 10px 16px; font-size: 14px; border-radius: 10px; }
.btn--block { width: 100%; }
.btn .btn__icon { width: 20px; height: 20px; display: inline-block; }
.btn[disabled], .btn.is-disabled { opacity: .55; pointer-events: none; }
.btn-link { color: var(--ink-3) !important; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.btn-link:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 90; transition: background .3s, box-shadow .3s, border-color .3s;
    background: rgba(255, 255, 255, .78); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -14px rgba(11, 27, 63, .25); }
.site-header--dark { background: rgba(6, 13, 36, .6); }
.site-header--dark.is-scrolled { background: rgba(255, 255, 255, .85); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.site-header--dark:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .site-nav > .nav-item > a { padding: 10px 14px; border-radius: 10px; font-weight: 600; color: var(--ink-2); font-size: 15px; transition: background .2s, color .2s; display: inline-flex; align-items: center; gap: 6px; }
.site-nav > a:hover, .site-nav > .nav-item > a:hover { background: var(--bg-3); color: var(--ink); }
.site-header--dark:not(.is-scrolled) .site-nav > a, .site-header--dark:not(.is-scrolled) .site-nav > .nav-item > a { color: rgba(255, 255, 255, .85); }
.site-header--dark:not(.is-scrolled) .site-nav > a:hover, .site-header--dark:not(.is-scrolled) .site-nav > .nav-item > a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.site-nav .nav-cta { margin-left: 10px; display: flex; gap: 8px; }
.site-nav .btn { padding: 11px 18px; font-size: 15px; }
.site-header--dark:not(.is-scrolled) .btn--outline { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .35); color: #fff !important; }
.site-header--dark:not(.is-scrolled) .btn--outline:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .55); }
.nav-item { position: relative; }
.nav-item > a::after { content: ''; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }
.mega {
    position: absolute; left: 50%; top: calc(100% + 10px); transform: translateX(-50%) translateY(8px); width: min(920px, calc(100vw - 40px));
    background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); padding: 22px;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s var(--ease), transform .3s var(--ease), visibility 0s .25s;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 18px; color: var(--ink);
}
.nav-item:hover .mega, .nav-item:focus-within .mega, .nav-item.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.mega__group { display: contents; }
.mega__title { grid-column: 1 / -1; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-4); font-weight: 700; margin: 8px 0 2px; padding: 0 10px; }
.mega__link { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--ink-2); transition: background .2s, color .2s; }
.mega__link:hover { background: var(--bg-3); color: var(--ink); }
.mega__link i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-size: 14px; color: var(--feature-accent, var(--blue-600)); background: color-mix(in srgb, var(--feature-accent, var(--blue-600)) 12%, #fff); flex: none; }
.mega__foot { grid-column: 1 / -1; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: var(--ink-3); }
.mega__foot a { color: var(--blue-600); font-weight: 700; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; place-items: center; }
.nav-toggle span { width: 22px; height: 2px; background: currentColor; display: block; position: relative; transition: transform .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .3s, top .3s; }
.nav-toggle span::before { top: -7px; } .nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
.site-header--dark:not(.is-scrolled) .nav-toggle { color: #fff; }

/* ---------- Hero ---------- */
.hero {
    position: relative; overflow: hidden; color: #fff; margin-top: -74px; padding-top: 74px;
    background: radial-gradient(1100px 600px at 15% -10%, rgba(47, 107, 255, .55), transparent 60%),
        radial-gradient(800px 500px at 95% 10%, rgba(255, 107, 26, .22), transparent 55%),
        radial-gradient(700px 400px at 60% 110%, rgba(59, 130, 246, .3), transparent 55%),
        linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
}
.hero__grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%); pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; animation: orb 14s ease-in-out infinite alternate; }
.hero__orb--a { width: 520px; height: 520px; left: -160px; top: 10%; background: #2F6BFF; }
.hero__orb--b { width: 420px; height: 420px; right: -120px; top: 20%; background: #FF6B1A; opacity: .35; animation-delay: -6s; }
@keyframes orb { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(40px, 30px, 0) scale(1.15); } }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 48px; align-items: center; padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px); position: relative; }
.hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 64px); margin: 22px 0 20px; text-wrap: balance; }
.hero h1 .hl { background: linear-gradient(90deg, #FFB26B, var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: clamp(17px, 1.6vw, 21px); color: rgba(255, 255, 255, .78); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 22px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: rgba(255, 255, 255, .72); }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust i { width: 18px; height: 18px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; font-size: 11px; font-style: normal; font-weight: 800; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .9); backdrop-filter: blur(8px); }
.hero__badge b { background: var(--orange-500); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.hero__badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 0 rgba(34, 197, 94, .7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .7); } 70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); } 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }
.hero__media, .fhero__media, .showcase__media, .fstory__media { position: relative; min-width: 0; }
.hero__media .srshow { box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08); }
.hero__float { position: absolute; background: #fff; color: var(--ink); border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; animation: float 6s ease-in-out infinite; z-index: 3; }
.hero__float i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-style: normal; font-size: 15px; background: var(--green-100); color: var(--green-600); }
.hero__float small { display: block; font-weight: 500; color: var(--ink-3); font-size: 12px; }
.hero__float--a { top: -18px; right: -10px; animation-delay: -2s; }
.hero__float--b { top: 62%; left: -36px; animation-delay: -4s; }
.hero__float--b i { background: var(--blue-100); color: var(--blue-600); }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero__scroll { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .5); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__scroll i { width: 1px; height: 28px; background: linear-gradient(180deg, rgba(255, 255, 255, .6), transparent); animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Proof bar / segments ---------- */
.proof { border-bottom: 1px solid var(--line); background: #fff; }
.proof__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0; }
.proof__item { text-align: center; }
.proof__item strong { display: block; font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; color: var(--navy-900); letter-spacing: -.03em; }
.proof__item span { color: var(--ink-3); font-size: 14px; }
.segments { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 28px; }
.segments span { padding: 8px 14px; border-radius: 999px; background: var(--bg-3); color: var(--navy-800); font-size: 13px; font-weight: 600; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 10px; width: max-content; animation: marquee 40s linear infinite; }
.marquee__track > span { padding: 8px 14px; border-radius: 999px; background: var(--bg-3); color: var(--navy-800); font-size: 13px; font-weight: 600; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px 28px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--navy-700)); margin-bottom: 18px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; }
.step__time { display: inline-block; margin-top: 14px; font-size: 12px; font-weight: 700; color: var(--green-600); background: var(--green-100); padding: 4px 10px; border-radius: 999px; }

/* ---------- Feature grid ---------- */
.feat-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 34px; }
.feat-tabs button { padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: all .2s; }
.feat-tabs button:hover { border-color: var(--ink-3); }
.feat-tabs button.is-active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card {
    --feature-accent: var(--blue-600);
    display: flex; flex-direction: column; gap: 12px; padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s, opacity .3s; position: relative; overflow: hidden;
}
.feat-card::before { content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 4px; background: var(--feature-accent); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card.is-hidden { display: none; }
.feat-card__icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; color: var(--feature-accent); background: color-mix(in srgb, var(--feature-accent) 12%, #fff); }
/* Ícones da fonte (fontello) trazem margens/width no ::before — zera para centralizar nos quadradinhos */
.feat-card__icon i, .fhero__icon i, .pshow__feature i, .mega__item i, .wa-fab i { display: grid; place-items: center; line-height: 1; }
.feat-card__icon i::before, .fhero__icon i::before, .pshow__feature i::before, .mega__item i::before { margin: 0 !important; width: auto !important; line-height: 1 !important; }
.feat-card h3 { font-size: 18px; }
.feat-card p { font-size: 14.5px; color: var(--ink-3); flex: 1; }
.feat-card__more { font-size: 14px; font-weight: 700; color: var(--feature-accent); display: inline-flex; align-items: center; gap: 6px; }
.feat-card__more::after { content: '→'; transition: transform .25s; }
.feat-card:hover .feat-card__more::after { transform: translateX(4px); }
.feat-card__tag { position: absolute; top: 16px; right: 16px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; color: var(--green-600); background: var(--green-100); padding: 4px 8px; border-radius: 999px; }

/* ---------- Showcase (alternating) ---------- */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; padding: clamp(40px, 6vw, 80px) 0; }
.showcase:nth-child(even) .showcase__media { order: -1; }
.showcase h2 { font-size: clamp(28px, 3.6vw, 42px); margin: 14px 0 14px; }
.showcase p.lead { font-size: 17px; }
.showcase__list { margin: 22px 0 26px; display: grid; gap: 12px; }
.showcase__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.showcase__list li i { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-style: normal; font-size: 12px; font-weight: 800; color: var(--green-600); background: var(--green-100); margin-top: 2px; }
.showcase__media { position: relative; }
.showcase__media::before { content: ''; position: absolute; inset: 10% -6% -6% 10%; background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 28%, transparent), transparent); filter: blur(30px); z-index: 0; }
.showcase__media .srmock, .showcase__media .srshow { position: relative; z-index: 1; }
.showcase__links { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Pricing ---------- */
.pricing-toggle { display: inline-flex; flex-wrap: wrap; justify-content: center; max-width: 100%; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 999px; gap: 4px; margin: 0 auto 40px; box-shadow: var(--shadow-sm); }
.pricing-toggle button { padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--ink-3); position: relative; transition: all .25s; }
.pricing-toggle button.is-active { background: var(--navy-900); color: #fff; }
.pricing-toggle button small { position: absolute; top: -10px; right: -6px; background: var(--green-500); color: #fff; font-size: 10px; padding: 2px 7px; border-radius: 999px; font-weight: 800; }
.pricing-toggle-wrap { text-align: center; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.is-featured { border: 2px solid var(--orange-500); box-shadow: 0 30px 60px -24px rgba(255, 107, 26, .5); }
.plan__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(90deg, var(--orange-500), var(--orange-600)); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 22px; }
.plan__desc { font-size: 14.5px; color: var(--ink-3); margin: 6px 0 18px; min-height: 44px; }
.plan__price { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-head); }
.plan__price .cur { font-size: 18px; font-weight: 700; color: var(--ink-3); }
.plan__price .val { font-size: 46px; font-weight: 800; letter-spacing: -.04em; color: var(--navy-900); line-height: 1; }
.plan__price .per { font-size: 15px; color: var(--ink-3); font-weight: 600; }
.plan__note { font-size: 13px; color: var(--ink-3); min-height: 20px; margin-top: 6px; }
.plan__note b { color: var(--green-600); }
.plan__total { font-size: 13px; color: var(--ink-4); }
.plan__features { margin: 22px 0 26px; display: grid; gap: 10px; flex: 1; }
.plan__features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.plan__features li i { flex: none; width: 20px; height: 20px; border-radius: 6px; background: var(--green-100); color: var(--green-600); display: grid; place-items: center; font-style: normal; font-size: 11px; font-weight: 800; margin-top: 1px; }
.plan__features li.is-more { color: var(--ink-4); font-size: 13px; }
.plan .btn { width: 100%; }
.plan__cta-note { text-align: center; font-size: 12px; color: var(--ink-4); margin-top: 10px; }
.plan[data-period-missing] .btn { opacity: .5; }
.pricing-guarantee { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; margin-top: 34px; font-size: 14px; color: var(--ink-3); }
.pricing-guarantee span { display: inline-flex; align-items: center; gap: 8px; }
.pricing-guarantee i { color: var(--green-600); font-style: normal; font-weight: 800; }

/* ---------- Testimonials ---------- */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.story { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 26px; display: flex; flex-direction: column; gap: 16px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story__stars { color: #F59E0B; letter-spacing: 2px; font-size: 14px; }
.story blockquote { font-size: 16px; color: var(--ink); line-height: 1.55; flex: 1; }
.story blockquote b { background: linear-gradient(transparent 60%, var(--orange-100) 60%); }
.story__who { display: flex; align-items: center; gap: 12px; }
.story__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--blue-500), var(--navy-700)); font-size: 14px; }
.story__who strong { display: block; font-size: 14px; }
.story__who span { font-size: 13px; color: var(--ink-3); }
.story__result { font-size: 12px; font-weight: 700; color: var(--green-600); background: var(--green-100); padding: 4px 10px; border-radius: 999px; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-3); color: var(--blue-600); display: grid; place-items: center; font-weight: 800; flex: none; transition: transform .3s, background .3s; }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--orange-100); color: var(--orange-600); }
.faq details p { padding: 0 0 20px; font-size: 15.5px; }

/* ---------- Capture / final CTA ---------- */
.cta-final { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); background: radial-gradient(800px 400px at 0% 0%, rgba(47, 107, 255, .5), transparent 60%), radial-gradient(600px 400px at 100% 100%, rgba(255, 107, 26, .35), transparent 60%), var(--navy-900); color: #fff; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.cta-final h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); margin: 12px 0 14px; }
.cta-final p { color: rgba(255, 255, 255, .78); font-size: 17px; }
.cta-final .hero__trust { margin-top: 18px; }
.capture-form { background: #fff; border-radius: 22px; padding: 26px; color: var(--ink); display: grid; gap: 12px; box-shadow: var(--shadow-lg); }
.capture-form h3 { font-size: 20px; }
.capture-form p { font-size: 14px; color: var(--ink-3); }
.capture-form small { font-size: 12px; color: var(--ink-4); text-align: center; }

/* ---------- Form fields ---------- */
.field { display: grid; gap: 6px; position: relative; }
.field label, .field .label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.field input, .field select, .field textarea, .capture-form input { width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line-2); background: #fff; font-size: 15.5px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .capture-form input:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(47, 107, 255, .14); }
.field input::placeholder, .capture-form input::placeholder { color: var(--ink-4); }
.field input:disabled { background: var(--bg-2); color: var(--ink-3); }
.field .hint { font-size: 12.5px; color: var(--ink-4); }
.field.is-error input { border-color: #DC2626; }
.field .field__action { position: absolute; right: 10px; bottom: 9px; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; color: var(--ink-3); }
.field .field__action:hover { background: var(--bg-3); color: var(--ink); }
.field .field__action svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.field .field__action[aria-pressed="true"] .eye-open, .field .field__action:not([aria-pressed="true"]) .eye-closed { display: none; }
.fields { display: grid; gap: 14px; }
.fields--2 { grid-template-columns: 1fr 1fr; }
.fields--3 { grid-template-columns: 1fr 1fr 1fr; }
.field--loading::after { content: ''; position: absolute; right: 14px; bottom: 16px; width: 16px; height: 16px; border: 2px solid var(--line-2); border-top-color: var(--blue-600); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(255, 255, 255, .6); font-size: 14.5px; max-width: 320px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a, .site-footer p { display: block; font-size: 14.5px; color: rgba(255, 255, 255, .65); margin-bottom: 8px; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 22px; font-size: 13px; color: rgba(255, 255, 255, .45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { display: inline; margin: 0 0 0 16px; font-size: 13px; }

/* ---------- WhatsApp FAB + sticky mobile CTA ---------- */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 12px; border-radius: 999px; background: var(--wa); color: #fff; font-weight: 700; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .8); transition: transform .3s var(--ease); }
.wa-fab:hover { transform: translateY(-3px) scale(1.02); }
.wa-fab i { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .2); display: grid; place-items: center; font-size: 20px; }
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: none; align-items: center; gap: 12px; transform: translateY(110%); transition: transform .4s var(--ease); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta strong { font-size: 14px; display: block; }
.sticky-cta small { font-size: 12px; color: var(--ink-3); }
.sticky-cta .btn { margin-left: auto; padding: 12px 18px; font-size: 14px; }

/* ---------- Modal WhatsApp ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s; }
.modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(6, 13, 36, .7); backdrop-filter: blur(6px); }
.modal__card { position: relative; width: min(440px, 100%); background: #fff; border-radius: 24px; padding: 30px; box-shadow: var(--shadow-lg); transform: translateY(20px) scale(.98); transition: transform .35s var(--ease); display: grid; gap: 12px; }
.modal.is-open .modal__card { transform: none; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3); display: grid; place-items: center; font-size: 18px; }
.modal__card h3 { font-size: 22px; }
.modal__card small { font-size: 12px; color: var(--ink-4); text-align: center; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: .05s; } [data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: .12s; } [data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: .19s; } [data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: .26s; } [data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: .33s; } [data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: .4s; } [data-reveal-stagger].is-in > *:nth-child(n+7) { transition-delay: .47s; }
@media (prefers-reduced-motion: reduce) { [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; } .hero__orb, .hero__float, .marquee__track { animation: none; } }

/* =====================================================================
   PLAYER "ESTILO VÍDEO" (.srshow) + MOCKUPS DE DISPOSITIVO
   ===================================================================== */
.srshow { --accent: var(--blue-600); min-width: 0; max-width: 100%; border-radius: 22px; overflow: hidden; background: var(--navy-950); color: #fff; user-select: none; position: relative; }
.srshow__stage { position: relative; aspect-ratio: 4 / 3; overflow: hidden; outline: none; cursor: pointer; background: radial-gradient(900px 500px at 20% 0%, color-mix(in srgb, var(--accent) 45%, transparent), transparent 60%), radial-gradient(700px 500px at 100% 100%, rgba(255, 107, 26, .18), transparent 55%), linear-gradient(180deg, #0A1533, #0B1B3F); transition: background .6s; }
.srshow__stage:focus-visible { box-shadow: inset 0 0 0 3px var(--orange-500); }
.srshow__glow { position: absolute; inset: 0; pointer-events: none; }
.srshow__glow i { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; background: var(--accent); width: 46%; aspect-ratio: 1; left: -10%; top: -20%; animation: orb 12s ease-in-out infinite alternate; transition: background .6s; }
.srshow__glow i:last-child { left: auto; right: -12%; top: auto; bottom: -25%; background: var(--orange-500); opacity: .28; animation-delay: -5s; }
.srshow__frame { position: absolute; inset: 0; display: grid; place-items: center; padding: 6% 7% 0; }
.srshow__scene { position: absolute; inset: 0; display: grid; place-items: center; padding: inherit; transition: opacity .5s var(--ease), transform .55s var(--ease); }
.srshow__scene--phone { align-items: start; }
.srshow__scene--laptop, .srshow__scene--tv { align-items: center; padding-bottom: 4%; }
.srshow__scene.is-enter { opacity: 0; transform: translateY(24px) scale(.96); }
.srshow__scene.is-live { opacity: 1; transform: none; }
.srshow__scene.is-leave { opacity: 0; transform: translateY(-18px) scale(.97); pointer-events: none; }
.srshow__frame.is-frozen .a, .srshow__frame.is-frozen .mk-bar, .srshow__frame.is-frozen .mk-line__path, .srshow__frame.is-frozen .mk-cursor { animation-play-state: paused; }
.srshow__caption { padding: 14px 18px 4px; display: flex; flex-direction: column; gap: 2px; min-height: 86px; }
.srshow__step { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 700; }
.srshow__title { color: #fff; font-size: clamp(16px, 1.8vw, 21px); margin: 2px 0 2px; line-height: 1.2; }
.srshow__text { color: rgba(255, 255, 255, .72); font-size: 14px; margin: 0; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.srshow__caption.is-anim .srshow__title { animation: capIn .6s var(--ease) both; }
.srshow__caption.is-anim .srshow__text { animation: capIn .6s .12s var(--ease) both; }
@keyframes capIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.srshow__big { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; border-radius: 50%; background: rgba(255, 255, 255, .92); box-shadow: 0 20px 50px -10px rgba(0, 0, 0, .6); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s var(--ease-spring); pointer-events: none; z-index: 5; }
.srshow__big i { width: 0; height: 0; border-left: 26px solid var(--navy-900); border-top: 16px solid transparent; border-bottom: 16px solid transparent; margin-left: 6px; }
.srshow.is-paused .srshow__big { opacity: 1; transform: scale(1); pointer-events: auto; }
.srshow__controls { display: flex; align-items: center; gap: 10px; padding: 10px 14px 14px; }
.srshow__btn { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, .08); font-size: 20px; line-height: 1; transition: background .2s; flex: none; }
.srshow__btn:hover { background: rgba(255, 255, 255, .16); }
.srshow__btn--play i { width: 0; height: 0; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.srshow.is-playing .srshow__btn--play i { border: 0; width: 11px; height: 13px; margin: 0; background: linear-gradient(90deg, #fff 0 38%, transparent 38% 62%, #fff 62%); }
.srshow__chapters { flex: 1; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); gap: 5px; min-width: 0; align-items: center; padding: 8px 0; }
.srshow__chapter { flex: 1; height: 6px; position: relative; border-radius: 3px; overflow: hidden; background: rgba(255, 255, 255, .14); min-width: 0; transition: height .2s; }
.srshow__chapter:hover { height: 10px; }
.srshow__chapter-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--accent); transition: background .6s; }
.srshow__chapter.is-done .srshow__chapter-fill { background: rgba(255, 255, 255, .35); }
.srshow__chapter-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.srshow__chapter.is-active .srshow__chapter-label { color: #fff; }
.srshow__counter { font-size: 12px; font-variant-numeric: tabular-nums; color: rgba(255, 255, 255, .6); font-weight: 600; }
@media (max-width: 640px) {
    .srshow__stage { aspect-ratio: 1 / 1; }
    .srshow__frame { padding: 5% 4% 0; }
    .srshow .srshow__scene .dev--laptop, .srshow .srshow__scene .dev--tv { width: 96%; }
    .srshow .srshow__scene .dev--phone { max-width: 60%; }
    .srshow__caption { padding: 12px 14px 2px; min-height: 0; }
    .srshow__title { font-size: 16px; }
    .srshow__text { font-size: 13px; }
    .srshow__controls { padding: 6px 10px 10px; gap: 8px; }
    .srshow__btn { width: 32px; height: 32px; }
}

/* Dispositivos */
.dev { position: relative; width: 100%; max-width: 100%; max-height: 100%; }
.dev__screen { position: relative; overflow: hidden; background: #fff; }
.dev--laptop { width: 100%; padding: 0 4%; }
.srshow__scene .dev--laptop { width: 76%; }
.srshow__scene .dev--tv { width: 78%; }
.dev--laptop .dev__screen { aspect-ratio: 16 / 10; border-radius: 14px 14px 4px 4px; border: 8px solid #1B2540; border-bottom-width: 14px; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .06); }
.dev--laptop .dev__base { height: 12px; margin: 0 -4%; background: linear-gradient(180deg, #3A4560, #1B2540); border-radius: 0 0 14px 14px; position: relative; }
.dev--laptop .dev__base::before { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 14%; height: 4px; background: #0F1629; border-radius: 0 0 6px 6px; }
.dev--phone { width: auto; height: 100%; aspect-ratio: 9 / 19; max-width: 46%; container-type: inline-size; }
.srshow__scene .dev--phone { height: 122%; max-height: none; max-width: 52%; }
/* Corpo: moldura de titânio com bisel preto fino e botões laterais */
.dev--phone .dev__screen { height: 100%; border-radius: 15cqw; border: 2.6cqw solid #0B0F1A; box-shadow: 0 0 0 1.4cqw #3D4658, 0 0 0 1.8cqw #1B2540, 0 0 0 2.2cqw rgba(255, 255, 255, .12), 0 40px 70px -24px rgba(0, 0, 0, .75), inset 0 0 0 1px rgba(0, 0, 0, .35); background: #fff; }
.dev--phone::before, .dev--phone::after { content: ''; position: absolute; width: 1.6cqw; background: linear-gradient(90deg, #4B5568, #2A3347); border-radius: 2px; z-index: 0; }
.dev--phone::before { left: -3.6cqw; top: 20%; height: 8%; box-shadow: 0 13.5% 0 0 #3A4457; } /* volume + / volume − */
.dev--phone::after { right: -3.6cqw; top: 24%; height: 12%; } /* power */
/* Dynamic island + barra home + reflexo de vidro */
.dev--phone .dev__notch { position: absolute; top: 4.6cqw; left: 50%; transform: translateX(-50%); width: 26cqw; height: 7.2cqw; background: #05070D; border-radius: 999px; z-index: 3; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06); }
.dev--phone .dev__notch::after { content: ''; position: absolute; right: 14%; top: 50%; width: 2.2cqw; height: 2.2cqw; transform: translateY(-50%); border-radius: 50%; background: radial-gradient(circle at 35% 35%, #1F2A44, #05070D 70%); }
.dev--phone .dev__screen::after { content: ''; position: absolute; left: 50%; bottom: 2cqw; transform: translateX(-50%); width: 34cqw; height: 1.4cqw; border-radius: 999px; background: rgba(15, 23, 42, .85); z-index: 3; pointer-events: none; }
.dev--phone .dev__screen::before { content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(115deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .03) 28%, transparent 46%); }
.dev--tv { width: 100%; }
.dev--tv .dev__screen { aspect-ratio: 16 / 9; border-radius: 8px; border: 6px solid #1B2540; background: #000; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .7); }
.dev--tv .dev__stand { width: 24%; height: 10px; margin: 0 auto; background: linear-gradient(180deg, #3A4560, #1B2540); border-radius: 0 0 10px 10px; }
.srmock { position: relative; }
.srmock .dev--phone { height: auto; max-width: 320px; margin: 0 auto; }
.srmock .dev--phone .dev__screen { height: auto; aspect-ratio: 9 / 19; }
.srmock .dev--laptop .dev__screen { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 27, 63, .08); }
.srmock .dev--tv .dev__screen { box-shadow: var(--shadow-lg); }

/* Prints reais (Ken Burns) */
.srshow__print { position: absolute; inset: 0; overflow: hidden; }
.srshow__print img { width: 100%; height: 100%; object-fit: cover; object-position: top center; animation: kenburns 9s ease-in-out both; }
.srshow__print.is-tall img { object-fit: cover; animation: panDown 9s ease-in-out both; }
@keyframes kenburns { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.14) translate(-2%, -3%); } }
@keyframes panDown { from { object-position: top center; } to { object-position: bottom center; } }

/* ---------- Mock UI base ---------- */
/* Os mocks são desenhados numa "tela de design" fixa (--mk-w × --mk-h) e reduzidos com scale
   para caber na tela do dispositivo — presentation.js calcula --mk-scale (ResizeObserver). */
.mk { --d: 0ms; --mk-w: 720px; position: absolute; left: 0; top: 0; box-sizing: border-box; width: var(--mk-w); height: calc(100% / var(--mk-scale, 1)); transform: scale(var(--mk-scale, 1)); transform-origin: 0 0; font-family: var(--font-body); color: #0F172A; background: #F5F7FB; font-size: 11px; line-height: 1.3; overflow: hidden; }
.dev--phone .mk { --mk-w: 360px; font-size: 12.5px; }
.mk .a { opacity: 0; transform: translateY(8px); }
.is-live .mk .a, .srmock.is-live .mk .a { animation: mkIn .55s var(--ease) both; animation-delay: var(--d); }
@keyframes mkIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.mk .a.is-hidden { animation: mkOut .3s both !important; }
@keyframes mkOut { to { opacity: 0; transform: scale(.9); } }
.mk b, .mk strong { font-weight: 700; }
.mk small { display: block; color: #64748B; font-size: .9em; }
.mk--desktop { display: grid; grid-template-columns: 22% 1fr; }
.mk--desktop main { padding: 3% 3.5%; display: flex; flex-direction: column; gap: 2.2%; min-width: 0; position: relative; }
.mk-side { background: #0B1B3F; padding: 4% 3%; display: flex; flex-direction: column; gap: 3%; }
.mk-side__logo { height: 9%; min-height: 12px; border-radius: 6px; background: linear-gradient(90deg, #2F6BFF, #7C9BFF); margin-bottom: 8%; width: 70%; }
.mk-side__item { display: flex; align-items: center; gap: 8%; padding: 6% 8%; border-radius: 6px; color: rgba(255, 255, 255, .6); font-size: .95em; font-weight: 600; }
.mk-side__item i { width: 1.1em; height: 1.1em; border-radius: 4px; background: currentColor; opacity: .5; flex: none; }
.mk-side__item.is-active { background: rgba(255, 255, 255, .12); color: #fff; }
.mk-top { display: flex; align-items: center; gap: 2%; font-size: 1.25em; }
.mk-top strong { flex: 1; }
.mk-top__search { width: 22%; height: 1.6em; border-radius: 999px; background: #fff; border: 1px solid #E2E8F0; }
.mk-top__avatar { width: 1.8em; height: 1.8em; border-radius: 50%; background: linear-gradient(135deg, #FF8A47, #FF6B1A); }
.mk-status { height: 7%; display: flex; justify-content: space-between; align-items: center; padding: 1.5% 8% 0 9%; font-weight: 700; font-size: .95em; }
.mk-status__icons { display: flex; gap: .45em; align-items: center; }
.mk-status__icons i { display: block; height: .8em; }
.mk-status__icons i:nth-child(1) { width: 1.1em; background: repeating-linear-gradient(90deg, #0F172A 0 .19em, transparent .19em .3em); clip-path: polygon(0 62%, 100% 0, 100% 100%, 0 100%); }
.mk-status__icons i:nth-child(2) { width: 1.05em; background: radial-gradient(circle at 50% 100%, #0F172A 0 .16em, transparent .16em .3em, #0F172A .3em .42em, transparent .42em .56em, #0F172A .56em .68em, transparent .68em); clip-path: polygon(0 0, 100% 0, 50% 100%); }
.mk-status__icons i:nth-child(3) { width: 1.5em; height: .72em; border: .1em solid rgba(15, 23, 42, .55); border-radius: .22em; padding: .09em; background: linear-gradient(90deg, #0F172A 0 72%, transparent 72%) content-box; box-sizing: border-box; position: relative; }
.mk-status__icons i:nth-child(3)::after { content: ''; position: absolute; right: -.22em; top: 50%; transform: translateY(-50%); width: .12em; height: .3em; background: rgba(15, 23, 42, .55); border-radius: 0 .1em .1em 0; }
.mk-appbar { display: flex; align-items: center; gap: 4%; padding: 2% 6%; font-size: 1.2em; }
.mk-appbar__back { width: .7em; height: .7em; border-left: 2px solid #0F172A; border-bottom: 2px solid #0F172A; transform: rotate(45deg); }
.mk-appbar strong { flex: 1; }
.mk-appbar__dot { width: 1.6em; height: 1.6em; border-radius: 50%; background: #E2E8F0; }
.mk--phone { padding: 0; display: flex; flex-direction: column; gap: 2.5%; }
.mk--phone > * { margin: 0 5%; }
.mk--phone > .mk-status, .mk--phone > .mk-appbar { margin: 0; }
.mk-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5%; }
.mk-kpis--phone { grid-template-columns: 1fr 1fr; }
.mk-kpi { background: #fff; border-radius: 8px; padding: 6% 7%; box-shadow: 0 1px 2px rgba(15, 23, 42, .06); border: 1px solid #EEF2F7; display: grid; gap: 2px; }
.mk-kpi__label { color: #64748B; font-size: .9em; font-weight: 600; }
.mk-kpi__value { font-size: 1.7em; letter-spacing: -.03em; font-family: var(--font-head); }
.mk-kpi__delta { font-style: normal; font-size: .85em; color: #16A34A; font-weight: 600; }
.mk-kpi.is-green .mk-kpi__value { color: #16A34A; } .mk-kpi.is-blue .mk-kpi__value { color: #2F6BFF; } .mk-kpi.is-red .mk-kpi__value { color: #DC2626; } .mk-kpi.is-orange .mk-kpi__value { color: #EA580C; } .mk-kpi.is-purple .mk-kpi__value { color: #7C3AED; }
.mk-card { background: #fff; border-radius: 8px; padding: 3.5% 4%; border: 1px solid #EEF2F7; box-shadow: 0 1px 2px rgba(15, 23, 42, .06); min-width: 0; }
.mk-card header { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.05em; margin-bottom: 4%; }
.mk-card header span { color: #94A3B8; font-weight: 500; font-size: .85em; }
.mk-card--list { padding: 2% 3%; }
.mk-fin__charts { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5%; }
.mk-bars { display: flex; align-items: flex-end; gap: 4%; height: 4.2em; color: #2F6BFF; }
.mk-bars.is-green { color: #16A34A; }
.mk-bar { flex: 1; height: var(--h); border-radius: 3px 3px 0 0; background: linear-gradient(180deg, currentColor, color-mix(in srgb, currentColor 55%, #fff)); transform: scaleY(0); transform-origin: bottom; }
.is-live .mk-bar, .srmock.is-live .mk-bar { animation: mkGrow .8s var(--ease-spring) both; animation-delay: var(--d); }
@keyframes mkGrow { to { transform: scaleY(1); } }
.mk-line { width: 100%; height: 4.6em; color: #2F6BFF; display: block; overflow: visible; }
.mk-line.is-green { color: #16A34A; }
.mk-line__path { stroke-dasharray: 600; stroke-dashoffset: 600; }
.is-live .mk-line__path, .srmock.is-live .mk-line__path { animation: mkDraw 1.8s var(--ease) forwards; animation-delay: calc(var(--d) + 200ms); }
@keyframes mkDraw { to { stroke-dashoffset: 0; } }
.mk-line__area { opacity: 0; } .is-live .mk-line__area, .srmock.is-live .mk-line__area { animation: mkFade 1s 1.4s both; }
.mk-line__dot { opacity: 0; } .is-live .mk-line__dot, .srmock.is-live .mk-line__dot { animation: mkFade .4s 1.9s both; }
@keyframes mkFade { to { opacity: 1; } }
.mk-donut { display: grid; place-items: center; position: relative; }
.mk-donut svg { width: 62%; transform: rotate(-90deg); }
.mk-donut__bg { fill: none; stroke: #EEF2F7; stroke-width: 12; }
.mk-donut__fg { fill: none; stroke: #2F6BFF; stroke-width: 12; stroke-linecap: round; stroke-dashoffset: 251; }
.is-live .mk-donut__fg, .srmock.is-live .mk-donut__fg { animation: mkDonut 1.6s var(--ease) forwards; animation-delay: calc(var(--d) + 200ms); }
@keyframes mkDonut { to { stroke-dashoffset: var(--off); } }
.mk-donut strong { position: absolute; top: 34%; font-size: 1.5em; font-family: var(--font-head); }
.mk-donut span { font-size: .85em; color: #64748B; }
.mk-row { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; align-items: center; gap: 2%; padding: 2.4% 2%; border-bottom: 1px solid #F1F5F9; font-size: .95em; }
.mk-row:last-child { border-bottom: 0; }
.mk-row span:first-child { grid-column: span 2; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.mk-row span:last-child { text-align: right; }
.mk-row.is-in { background: #F0FDF4; border-radius: 6px; }
.mk-row.is-muted { color: #94A3B8; }
.mk-badge { display: inline-block; padding: 2px 6px; border-radius: 999px; font-size: .78em; font-weight: 700; white-space: nowrap; }
.mk-badge.is-blue { background: #DBEAFE; color: #1D4ED8; } .mk-badge.is-green { background: #DCFCE7; color: #15803D; } .mk-badge.is-orange { background: #FFEDD5; color: #C2410C; } .mk-badge.is-red { background: #FEE2E2; color: #B91C1C; } .mk-badge.is-purple { background: #EDE9FE; color: #6D28D9; } .mk-badge.is-pink { background: #FCE7F3; color: #BE185D; }
.mk-toast { position: absolute; right: 3%; bottom: 4%; display: flex; align-items: center; gap: 6px; padding: 5px 9px; border-radius: 8px; background: #0F172A; color: #fff; font-weight: 600; font-size: .95em; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, .5); z-index: 4; max-width: 80%; }
.mk-toast__icon { width: 1.6em; height: 1.6em; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: .95em; background: #16A34A; flex: none; }
.mk-toast.is-wa .mk-toast__icon { background: #25D366; } .mk-toast.is-orange .mk-toast__icon { background: #EA580C; }
.mk--phone .mk-toast { left: 4%; right: 4%; bottom: 3%; margin: 0; }
.mk-cursor { position: absolute; left: var(--x); top: var(--y); width: 12px; height: 12px; z-index: 6; pointer-events: none; }
.mk-cursor::before { content: ''; position: absolute; inset: 0; border-left: 8px solid #0F172A; border-bottom: 8px solid transparent; border-top: 0; width: 0; height: 12px; transform: skewX(-20deg); filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .3)); }
.mk-cursor.is-click::after { content: ''; position: absolute; left: -10px; top: -10px; width: 28px; height: 28px; border-radius: 50%; border: 2px solid #FF6B1A; opacity: 0; }
.is-live .mk-cursor.is-click::after, .srmock.is-live .mk-cursor.is-click::after { animation: mkClick .7s calc(var(--d) + 500ms) both; }
@keyframes mkClick { 0% { transform: scale(.3); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.mk-avatar { display: inline-grid; place-items: center; width: 2em; height: 2em; border-radius: 50%; font-size: .8em; font-weight: 800; color: #fff; flex: none; }
.mk-avatar.is-blue { background: #2F6BFF; } .mk-avatar.is-purple { background: #7C3AED; } .mk-avatar.is-green { background: #16A34A; } .mk-avatar.is-pink { background: #DB2777; } .mk-avatar.is-orange { background: #EA580C; } .mk-avatar.is-red { background: #DC2626; }
.mk-chip { display: inline-block; padding: 3px 8px; border-radius: 999px; background: #fff; border: 1px solid #E2E8F0; font-size: .85em; font-weight: 600; }
.mk-chip.is-active { background: #0B1B3F; color: #fff; border-color: #0B1B3F; }
.mk-chips { display: flex; flex-wrap: wrap; gap: 4px; }
.mk-tabs { display: flex; gap: 2%; font-size: .95em; font-weight: 600; color: #64748B; }
.mk-tabs span { padding: 3px 0; border-bottom: 2px solid transparent; }
.mk-tabs span b { background: #EEF2F7; padding: 0 5px; border-radius: 999px; font-size: .85em; }
.mk-tabs span.is-active { color: #0F172A; border-color: #FF6B1A; }
.mk-tabs span.is-active b { background: #FFEDD5; color: #C2410C; }
.mk-btn { padding: 4% 6%; border-radius: 8px; text-align: center; font-weight: 700; font-size: 1.05em; }
.mk-btn.is-accent { background: #FF6B1A; color: #fff; box-shadow: 0 6px 14px -6px rgba(255, 107, 26, .8); }
.mk-btn.is-wa { background: #25D366; color: #fff; }
.mk-btn.is-ghost { background: #fff; border: 1px solid #E2E8F0; }
.mk-btn.is-wide { width: auto; }
.mk-photo { border-radius: 8px; background: linear-gradient(135deg, hsl(var(--hue) 70% 60%), hsl(calc(var(--hue) + 40) 70% 45%)); aspect-ratio: 4 / 3; position: relative; overflow: hidden; }
.mk-photo::after { content: ''; position: absolute; inset: auto -10% -30% auto; width: 70%; aspect-ratio: 1; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.mk-photo.is-sm { width: 22%; flex: none; aspect-ratio: 1; }
.mk-photo.is-xs { width: 1.8em; aspect-ratio: 1; border-radius: 4px; display: inline-block; }
.mk-field { background: #fff; border: 1px solid #E2E8F0; border-radius: 8px; padding: 3% 5%; }
.mk-field span { display: block; font-size: .8em; color: #94A3B8; font-weight: 600; }
.mk-progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 3%; background: #fff; border-radius: 8px; padding: 3%; border: 1px solid #EEF2F7; font-weight: 600; }
.mk-progress div { height: 6px; border-radius: 999px; background: #EEF2F7; overflow: hidden; }
.mk-progress div i { display: block; height: 100%; width: 0; background: #25D366; }
.is-live .mk-progress div i { animation: mkWidth 2.4s var(--ease) forwards; animation-delay: calc(var(--d) + 200ms); }
@keyframes mkWidth { to { width: 100%; } }
.mk-agc__done { position: absolute; left: 6%; right: 6%; top: 28%; background: #fff; border-radius: 14px; padding: 8% 6%; text-align: center; box-shadow: 0 30px 60px -20px rgba(11, 27, 63, .5); z-index: 5; display: grid; gap: 3px; }
.mk-agc__done i { width: 3.4em; height: 3.4em; border-radius: 50%; background: #DCFCE7; color: #16A34A; display: grid; place-items: center; font-style: normal; font-size: 1.4em; font-weight: 800; margin: 0 auto 4%; }
.mk-agc__done strong { font-size: 1.35em; font-family: var(--font-head); }
.mk-agc__done span { font-size: 1em; color: #334155; }
.mk-agc__done small { color: #16A34A; font-weight: 600; margin-top: 2%; }

/* Agenda */
.mk-agenda__pros { display: flex; gap: 2%; align-items: center; }
.mk-agenda__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5%; flex: 1; min-height: 0; }
.mk-agenda__day { background: #fff; border-radius: 8px; border: 1px solid #EEF2F7; position: relative; overflow: hidden; }
.mk-agenda__day header { text-align: center; font-weight: 700; font-size: .9em; padding: 5% 0; border-bottom: 1px solid #F1F5F9; color: #64748B; }
.mk-apt { position: absolute; left: 6%; right: 6%; top: calc(18% + var(--top) * .82); height: calc(var(--len) * .82); border-radius: 6px; padding: 4% 7%; font-size: .85em; border-left: 3px solid; overflow: hidden; }
.mk-apt strong { display: block; } .mk-apt span { color: #475569; font-size: .9em; }
.mk-apt.is-blue { background: #DBEAFE; border-color: #2F6BFF; } .mk-apt.is-purple { background: #EDE9FE; border-color: #7C3AED; } .mk-apt.is-green { background: #DCFCE7; border-color: #16A34A; } .mk-apt.is-pink { background: #FCE7F3; border-color: #DB2777; }
/* Agenda cliente */
.mk-agc h4 { font-size: 1.15em; margin-top: 2%; }
.mk-agc__brand { display: flex; align-items: center; gap: 4%; padding: 2% 0; }
.mk-agc__logo { width: 3em; height: 3em; border-radius: 12px; background: linear-gradient(135deg, #2F6BFF, #7C3AED); flex: none; }
.mk-agc__brand strong { font-size: 1.2em; }
.mk-agc__svc { display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1.5px solid #E2E8F0; border-radius: 10px; padding: 4% 5%; }
.mk-agc__svc.is-picked { border-color: #FF6B1A; background: #FFF7ED; }
.mk-agc__svc b { color: #0B1B3F; }
.mk-agc__times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4%; }
.mk-agc__times span { text-align: center; padding: 6% 0; border-radius: 8px; background: #fff; border: 1.5px solid #E2E8F0; font-weight: 700; }
.mk-agc__times span.is-picked { background: #0B1B3F; color: #fff; border-color: #0B1B3F; }
/* WhatsApp */
.mk-wa { background: #EFE7DD; }
.mk-wa__head { background: #075E54; color: #fff; padding: 3% 5%; display: flex; align-items: center; gap: 4%; margin: 0; }
.mk-wa__head strong { font-size: 1.15em; } .mk-wa__head small { color: rgba(255, 255, 255, .75); }
.mk-wa__avatar { width: 3em; height: 3em; border-radius: 50%; background: linear-gradient(135deg, #2F6BFF, #7C3AED); }
.mk-wa__body { flex: 1; display: flex; flex-direction: column; gap: 3%; padding: 2% 0; overflow: hidden; }
.mk-wa__date { align-self: center; background: #fff; padding: 2px 8px; border-radius: 6px; font-size: .8em; color: #64748B; }
.mk-bubble { max-width: 84%; background: #fff; padding: 3% 4%; border-radius: 10px 10px 10px 2px; font-size: 1em; box-shadow: 0 1px 1px rgba(0, 0, 0, .08); position: relative; }
.mk-bubble.is-mine { align-self: flex-end; background: #DCF8C6; border-radius: 10px 10px 2px 10px; }
.mk-bubble small { text-align: right; font-size: .75em; color: #94A3B8; margin-top: 2px; }
.mk-bubble.is-preview { max-width: 100%; background: #DCF8C6; border-radius: 10px; }
.mk-typing { display: flex; gap: 3px; background: #fff; padding: 3% 4%; border-radius: 10px; width: max-content; }
.mk-typing i { width: 5px; height: 5px; border-radius: 50%; background: #94A3B8; animation: mkTyping 1s infinite; }
.mk-typing i:nth-child(2) { animation-delay: .15s; } .mk-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes mkTyping { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-3px); opacity: 1; } }
.mk-wa__input { background: #fff; border-radius: 999px; padding: 3% 5%; display: flex; justify-content: space-between; align-items: center; color: #94A3B8; margin-bottom: 4%; }
.mk-wa__input i { width: 2em; height: 2em; border-radius: 50%; background: #25D366; }
.mk-chat { background: #F5F7FB; }
.mk-chat__media { display: flex; gap: 3%; max-width: 70%; }
.mk-chat__media .mk-photo { flex: 1; }
.mk-chat__status { align-self: center; font-size: .85em; color: #64748B; background: #fff; padding: 3px 9px; border-radius: 999px; }
/* Cardápio */
.mk-food__hero { position: relative; margin: 0 !important; padding: 7% 5% 5%; color: #fff; }
.mk-food__cover { position: absolute; inset: 0; background: linear-gradient(135deg, #F97316, #DC2626); z-index: -1; border-radius: 0 0 14px 14px; }
.mk-food__hero strong { font-size: 1.4em; font-family: var(--font-head); color: #fff; }
.mk-food__hero small { color: rgba(255, 255, 255, .85); }
.mk-food__cats { display: flex; gap: 2%; overflow: hidden; }
.mk-food__cats span { padding: 3px 9px; border-radius: 999px; background: #fff; border: 1px solid #E2E8F0; font-weight: 600; white-space: nowrap; }
.mk-food__cats span.is-active { background: #EA580C; color: #fff; border-color: #EA580C; }
.mk-food__item { display: flex; gap: 4%; align-items: center; background: #fff; border-radius: 10px; padding: 3%; border: 1px solid #EEF2F7; }
.mk-food__item > div { flex: 1; min-width: 0; }
.mk-food__item b { color: #EA580C; display: block; }
.mk-food__add { width: 2.2em; height: 2.2em; border-radius: 8px; background: #FFEDD5; color: #EA580C; display: grid; place-items: center; font-weight: 800; font-size: 1.2em; }
.mk-food__add.is-hit { background: #EA580C; color: #fff; }
.mk-food__cart { position: absolute; left: 5%; right: 5%; bottom: 5%; background: #0B1B3F; color: #fff; border-radius: 12px; padding: 4% 5%; display: flex; align-items: center; justify-content: space-between; gap: 4%; margin: 0 !important; z-index: 4; }
.mk-food__cart em { font-style: normal; background: #FF6B1A; padding: 3px 9px; border-radius: 999px; font-weight: 700; }
/* KDS */
.mk-kds { background: #0F172A; color: #fff; display: flex; flex-direction: column; padding: 3% 3.5%; gap: 3%; }
.mk-kds__head { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 1.3em; min-width: 0; }
.mk-kds__head strong { white-space: nowrap; }
.mk-kds__head span { display: flex; gap: 6px; min-width: 0; overflow: hidden; }
.mk-kds__head span > * { white-space: nowrap; }
.mk-kds__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3%; flex: 1; align-content: start; grid-auto-rows: 64%; min-height: 0; }
.mk-kds__queue { display: flex; align-items: center; gap: 10px; padding: 2.5% 3%; border-radius: 8px; background: rgba(255, 255, 255, .06); color: rgba(255, 255, 255, .7); font-size: 1.05em; }
.mk-kds__queue b { color: #fff; }
.mk-kds__queue span { padding: 2px 8px; border-radius: 999px; background: rgba(255, 255, 255, .1); color: #fff; }
.mk-kds__ticket { background: #fff; color: #0F172A; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; border-top: 5px solid; }
.mk-kds__ticket.is-orange { border-color: #EA580C; } .mk-kds__ticket.is-blue { border-color: #2F6BFF; } .mk-kds__ticket.is-green { border-color: #16A34A; }
.mk-kds__ticket header { display: flex; justify-content: space-between; padding: 6% 8%; border-bottom: 1px dashed #E2E8F0; }
.mk-kds__ticket ul { padding: 6% 8%; flex: 1; font-size: 1.1em; display: grid; gap: 6px; align-content: start; }
.mk-kds__ticket ul { list-style: none; }
.mk-kds__ticket ul li::before { content: '•'; color: #94A3B8; margin-right: .4em; }
.mk-kds__ticket header strong { font-size: 1.25em; }
.mk-kds__ticket footer { display: flex; justify-content: space-between; align-items: center; padding: 5% 8%; }
.mk-kds__ticket footer em { font-style: normal; font-variant-numeric: tabular-nums; color: #64748B; }
.mk-kds__ticket footer b { background: #16A34A; color: #fff; padding: 3px 9px; border-radius: 6px; }
.mk-kds__ticket.is-new { box-shadow: 0 0 0 3px #16A34A; }
/* Kanban */
.mk-kanban__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5%; flex: 1; }
.mk-kanban__col { background: #EEF2F7; border-radius: 8px; padding: 2.5%; display: flex; flex-direction: column; gap: 2.5%; }
.mk-kanban__col header { font-weight: 700; font-size: .95em; color: #475569; padding: 2% 3%; }
.mk-kanban__col header b { background: #fff; padding: 0 6px; border-radius: 999px; font-size: .85em; }
.mk-task { background: #fff; border-radius: 6px; padding: 5% 6%; box-shadow: 0 1px 2px rgba(15, 23, 42, .08); display: grid; gap: 4%; }
.mk-task > div { display: flex; justify-content: space-between; align-items: center; }
.mk-task small { color: #94A3B8; }
.is-live .mk-task.is-moving { animation: mkIn .55s var(--ease) both, mkTaskOut .6s 2.6s var(--ease) forwards; animation-delay: var(--d), 2600ms; }
@keyframes mkTaskOut { to { opacity: 0; transform: translateX(40%) scale(.9); } }
.mk-task.is-arrived { box-shadow: 0 0 0 2px #16A34A; }
.mk-task.is-arrived small { color: #16A34A; font-weight: 700; }
/* Links */
.mk-links { align-items: stretch; background: linear-gradient(180deg, #0B1B3F, #16307A); color: #fff; }
.mk-links__cover { height: 18%; margin: 0 !important; background: linear-gradient(135deg, #2F6BFF, #7C3AED); }
.mk-links__avatar { width: 4.4em; height: 4.4em; border-radius: 50%; border: 3px solid #fff; background: linear-gradient(135deg, #FF8A47, #FF6B1A); margin: -2.2em auto 0 !important; }
.mk-links strong { text-align: center; font-size: 1.3em; font-family: var(--font-head); }
.mk-links small { text-align: center; color: rgba(255, 255, 255, .7); }
.mk-links__btn { display: flex; align-items: center; gap: 4%; padding: 3.5% 5%; border-radius: 10px; font-weight: 700; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .15); }
.mk-links__btn i { font-style: normal; }
.mk-links__btn.is-wa { background: #25D366; border-color: #25D366; } .mk-links__btn.is-accent { background: #FF6B1A; border-color: #FF6B1A; }
.mk-links__stat { position: absolute; left: 5%; right: 5%; bottom: 4%; background: #fff; color: #0F172A; border-radius: 10px; padding: 3% 5%; text-align: center; margin: 0 !important; font-weight: 600; }
.mk-links__stat em { font-style: normal; color: #16A34A; font-weight: 800; }
/* NFC */
.mk-nfc { justify-content: center; align-items: center; background: #F5F7FB; }
.mk-nfc__card { width: 74%; aspect-ratio: 1.6; border-radius: 12px; background: linear-gradient(135deg, #0B1B3F, #2F6BFF); color: #fff; padding: 7%; display: flex; flex-direction: column; justify-content: flex-end; position: relative; z-index: 2; box-shadow: 0 20px 40px -14px rgba(11, 27, 63, .6); }
.mk-nfc__card span { position: absolute; top: 10%; right: 10%; width: 1.8em; height: 1.8em; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); }
.mk-nfc__card span::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); }
.mk-nfc__card strong { font-size: 1.2em; } .mk-nfc__card small { color: rgba(255, 255, 255, .75); }
.mk-nfc__waves { position: absolute; inset: 0; display: grid; place-items: center; }
.mk-nfc__waves i { position: absolute; width: 40%; aspect-ratio: 1; border-radius: 50%; border: 2px solid #2F6BFF; opacity: 0; animation: mkWave 2.2s infinite; }
.mk-nfc__waves i:nth-child(2) { animation-delay: .7s; } .mk-nfc__waves i:nth-child(3) { animation-delay: 1.4s; }
@keyframes mkWave { 0% { transform: scale(.6); opacity: .8; } 100% { transform: scale(2.4); opacity: 0; } }
.mk-nfc__hint { color: #2F6BFF; font-weight: 700; font-size: 1.05em; }
/* Loja */
.mk-shop__head { display: flex; justify-content: space-between; align-items: center; font-size: 1.25em; padding: 2% 0; }
.mk-shop__cart { width: 2em; height: 2em; border-radius: 50%; background: #0B1B3F; position: relative; }
.mk-shop__cart b { position: absolute; top: -6px; right: -6px; background: #FF6B1A; color: #fff; font-size: .65em; width: 1.7em; height: 1.7em; border-radius: 50%; display: grid; place-items: center; }
.mk-shop__banner { background: linear-gradient(135deg, #FF6B1A, #DB2777); color: #fff; border-radius: 12px; padding: 5% 6%; }
.mk-shop__banner strong { font-size: 1.3em; display: block; } .mk-shop__banner small { color: rgba(255, 255, 255, .8); }
.mk-shop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4%; }
.mk-shop__item { background: #fff; border-radius: 10px; padding: 4%; border: 1px solid #EEF2F7; display: grid; gap: 3px; }
.mk-shop__item strong { font-size: .95em; } .mk-shop__item b { color: #0B1B3F; }
.mk-shop__item em { font-style: normal; text-align: center; background: #EEF2F7; border-radius: 6px; padding: 4px; font-weight: 700; font-size: .9em; }
.mk-shop__item em.is-hit { background: #FF6B1A; color: #fff; }
.mk-shop__checkout { position: absolute; left: 5%; right: 5%; bottom: 4%; background: #0B1B3F; color: #fff; border-radius: 12px; padding: 4% 5%; display: flex; align-items: center; justify-content: space-between; margin: 0 !important; z-index: 4; }
.mk-shop__checkout em { font-style: normal; background: #16A34A; padding: 3px 9px; border-radius: 999px; font-weight: 700; }
/* Planos */
.mk-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5%; flex: 1; }
.mk-plan { background: #fff; border-radius: 10px; padding: 6% 7%; border: 1.5px solid #EEF2F7; display: grid; gap: 3px; align-content: start; }
.mk-plan b { font-size: 1.5em; font-family: var(--font-head); letter-spacing: -.03em; }
.mk-plan span { margin-top: 6%; font-size: .85em; color: #64748B; }
.mk-plan.is-featured { border-color: #FF6B1A; box-shadow: 0 10px 30px -12px rgba(255, 107, 26, .5); }
.mk-plan.is-blue b { color: #2F6BFF; } .mk-plan.is-purple b { color: #7C3AED; } .mk-plan.is-green b { color: #16A34A; }
/* Checkout */
.mk-checkout__sum { background: #fff; border-radius: 12px; padding: 5%; border: 1px solid #EEF2F7; }
.mk-checkout__sum b { display: block; font-size: 1.5em; font-family: var(--font-head); color: #0B1B3F; margin-top: 3%; }
.mk-checkout__sum b em { font-style: normal; font-size: .55em; color: #64748B; font-weight: 500; }
.mk-qr { background: #fff; border-radius: 12px; padding: 5%; display: grid; justify-items: center; gap: 4%; border: 1px solid #EEF2F7; }
.mk-qr__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 2px; width: 48%; aspect-ratio: 1; }
.mk-qr__grid i { background: #EEF2F7; border-radius: 1px; } .mk-qr__grid i.on { background: #0F172A; }
.mk-qr span { color: #64748B; }
/* Caderneta */
.mk-cad__row { display: flex; align-items: center; gap: 4%; background: #fff; border-radius: 10px; padding: 3% 4%; border: 1px solid #EEF2F7; }
.mk-cad__row > div { flex: 1; } .mk-cad__row b { color: #0B1B3F; }
/* Orçamento */
.mk-doc { background: #fff; border-radius: 8px; padding: 3.5% 4%; border: 1px solid #EEF2F7; flex: 1; display: flex; flex-direction: column; }
.mk-doc header { display: flex; align-items: center; gap: 2.5%; margin-bottom: 3%; padding-bottom: 3%; border-bottom: 1px solid #F1F5F9; }
.mk-doc header > div { flex: 1; } .mk-doc header span { font-size: .9em; color: #64748B; }
.mk-doc__logo { width: 2.6em; height: 2.6em; border-radius: 8px; background: linear-gradient(135deg, #0B1B3F, #2F6BFF); }
.mk-doc footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 3%; border-top: 2px solid #0F172A; font-size: 1.15em; }
.mk-doc footer strong { font-size: 1.3em; color: #0B1B3F; }
.mk-doc__actions { display: flex; gap: 2.5%; }
.mk-doc__actions .mk-btn { flex: 1; }
/* Campanha */
.mk-campaign { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5%; }
.mk-campaign p { margin-top: 4%; font-weight: 600; }
/* Captura */
.mk-capture__hero { background: linear-gradient(135deg, #7C3AED, #2F6BFF); color: #fff; border-radius: 14px; padding: 8% 7%; margin-top: 2% !important; }
.mk-capture__hero em { font-style: normal; font-size: .85em; background: rgba(255, 255, 255, .2); padding: 2px 8px; border-radius: 999px; }
.mk-capture__hero strong { display: block; font-size: 1.35em; font-family: var(--font-head); margin-top: 4%; line-height: 1.2; }
/* Apoiador */
.mk-apoio__photo { position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden; }
.mk-apoio__photo .mk-photo { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.mk-apoio__frame { position: absolute; inset: 0; border: 10px solid #FF6B1A; border-radius: 12px; display: flex; align-items: flex-end; justify-content: center; }
.mk-apoio__frame span { background: #FF6B1A; color: #fff; padding: 3px 12px; border-radius: 6px 6px 0 0; font-weight: 800; }
.mk-apoio__frames { display: flex; gap: 4%; justify-content: center; }
.mk-apoio__frames i { width: 3em; height: 3em; border-radius: 8px; border: 3px solid hsl(var(--hue) 70% 50%); background: #fff; }
.mk-apoio__frames i.is-picked { box-shadow: 0 0 0 2px #0F172A; }
/* EAD */
.mk-ead { display: grid; grid-template-columns: 1.7fr 1fr; background: #0F172A; color: #fff; }
.mk-ead__player { padding: 3%; display: grid; gap: 4px; align-content: start; }
.mk-ead__video { aspect-ratio: 16 / 9; border-radius: 8px; background: linear-gradient(135deg, #1E293B, #334155); position: relative; display: grid; place-items: center; margin-bottom: 3%; overflow: hidden; }
.mk-ead__play { width: 0; height: 0; border-left: 2.2em solid #fff; border-top: 1.3em solid transparent; border-bottom: 1.3em solid transparent; margin-left: .5em; opacity: .9; }
.mk-ead__bar { position: absolute; left: 4%; right: 4%; bottom: 6%; height: 4px; background: rgba(255, 255, 255, .25); border-radius: 999px; }
.mk-ead__bar b { display: block; height: 100%; width: 0; background: #DC2626; border-radius: 999px; }
.is-live .mk-ead__bar b { animation: mkWidth 5s linear forwards; }
.mk-ead__player strong { font-size: 1.15em; } .mk-ead__player small { color: rgba(255, 255, 255, .6); }
.mk-ead__list { background: #1E293B; padding: 3%; display: flex; flex-direction: column; gap: 2%; }
.mk-ead__list header { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 3%; }
.mk-ead__lesson { display: flex; align-items: center; gap: 5%; padding: 4% 5%; border-radius: 6px; font-size: .95em; color: rgba(255, 255, 255, .8); }
.mk-ead__lesson i { width: 1.2em; height: 1.2em; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .3); flex: none; }
.mk-ead__lesson.is-done i { background: #16A34A; border-color: #16A34A; } .mk-ead__lesson.is-done { color: rgba(255, 255, 255, .5); }
.mk-ead__lesson.is-now { background: rgba(255, 255, 255, .1); color: #fff; } .mk-ead__lesson.is-now i { border-color: #DC2626; background: #DC2626; }
/* TV */
.mk--tv { background: #000; }
.mk-tv__slide { position: absolute; inset: 0; }
.mk-tv__slide .mk-photo { position: absolute; inset: 0; aspect-ratio: auto; border-radius: 0; }
.mk-tv__slide.is-second { z-index: 2; }
.mk-tv__text { position: absolute; left: 6%; bottom: 18%; color: #fff; text-shadow: 0 4px 20px rgba(0, 0, 0, .5); }
.mk-tv__text em { font-style: normal; background: #FF6B1A; padding: 3px 10px; border-radius: 999px; font-weight: 700; font-size: 1.1em; }
.mk-tv__text strong { display: block; font-size: 3em; font-family: var(--font-head); line-height: 1.05; margin-top: 3%; }
.mk-tv__ticker { position: absolute; left: 0; right: 0; bottom: 0; background: #0B1B3F; color: #fff; padding: 2% 0; overflow: hidden; z-index: 3; font-size: 1.15em; font-weight: 600; white-space: nowrap; }
.mk-tv__ticker span { display: inline-block; padding-left: 100%; animation: mkTicker 14s linear infinite; }
@keyframes mkTicker { to { transform: translateX(-100%); } }
/* Site */
.mk-site { background: #fff; display: flex; flex-direction: column; }
.mk-site__hello { background: #FF6B1A; color: #fff; text-align: center; padding: 1.5%; font-weight: 600; order: -1; }
.mk-site__hello b { background: #fff; color: #EA580C; padding: 2px 8px; border-radius: 999px; margin-left: 6px; }
.mk-site__nav { display: flex; align-items: center; gap: 3%; padding: 2% 5%; }
.mk-site__logo { width: 3em; height: 1.4em; border-radius: 4px; background: #0B1B3F; margin-right: auto; }
.mk-site__nav i { width: 2.6em; height: .6em; border-radius: 999px; background: #E2E8F0; }
.mk-site__nav b { background: #FF6B1A; color: #fff; padding: 4px 10px; border-radius: 6px; }
.mk-site__hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4%; padding: 3% 5%; align-items: center; }
.mk-site__hero em { font-style: normal; color: #2F6BFF; font-weight: 700; }
.mk-site__hero strong { display: block; font-size: 2.2em; font-family: var(--font-head); line-height: 1.05; margin: 2% 0; }
.mk-site__hero span { color: #64748B; display: block; margin-bottom: 5%; }
.mk-site__hero b { background: #FF6B1A; color: #fff; padding: 5px 12px; border-radius: 6px; }
.mk-site__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3%; padding: 0 5% 4%; }
.mk-site__cards > div { display: grid; gap: 4px; }
.mk-site__cards .mk-photo { width: 100%; aspect-ratio: 16 / 9; }
.mk-site__cards span { height: .6em; border-radius: 999px; background: #E2E8F0; } .mk-site__cards span.is-short { width: 60%; }
/* Rifa */
.mk-rifa__prize { display: flex; gap: 4%; align-items: center; background: #fff; border-radius: 12px; padding: 4%; border: 1px solid #EEF2F7; }
.mk-rifa__prize .mk-photo { width: 30%; aspect-ratio: 1; flex: none; }
.mk-rifa__prize em { font-style: normal; color: #DB2777; font-weight: 700; font-size: .85em; }
.mk-rifa__prize strong { display: block; font-size: 1.3em; font-family: var(--font-head); }
.mk-rifa__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.mk-rifa__grid i { aspect-ratio: 1; display: grid; place-items: center; border-radius: 6px; background: #fff; border: 1px solid #E2E8F0; font-style: normal; font-weight: 700; font-size: .85em; opacity: 0; }
.is-live .mk-rifa__grid i { animation: mkIn .4s var(--ease) both; animation-delay: var(--d); }
.mk-rifa__grid i.is-sold { background: #F1F5F9; color: #CBD5E1; text-decoration: line-through; }
.mk-rifa__grid i.is-pick { background: #16A34A; color: #fff; border-color: #16A34A; transform: scale(1.05); }

/* =====================================================================
   LANDING DE RECURSO (/recursos/{slug}) e ÍNDICE (/recursos)
   ===================================================================== */
.fhero { position: relative; overflow: hidden; color: #fff; margin-top: -74px; padding-top: 74px; background: radial-gradient(1000px 600px at 10% -10%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 60%), radial-gradient(700px 500px at 100% 20%, rgba(255, 107, 26, .18), transparent 55%), linear-gradient(180deg, var(--navy-950), var(--navy-900) 70%, var(--navy-800)); }
.fhero__inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 48px; align-items: center; padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 96px); position: relative; }
.fhero__crumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, .55); margin-bottom: 20px; }
.fhero__crumb a:hover { color: #fff; }
.fhero__icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; font-size: 28px; color: #fff; background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 85%, #fff), var(--accent)); box-shadow: 0 16px 40px -12px color-mix(in srgb, var(--accent) 80%, transparent); margin-bottom: 20px; }
.fhero h1 { color: #fff; font-size: clamp(32px, 4.6vw, 54px); margin: 14px 0 16px; text-wrap: balance; }
.fhero .lead { font-size: clamp(16px, 1.5vw, 20px); color: rgba(255, 255, 255, .78); }
.fhero__stats { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 28px; }
.fhero__stats div strong { display: block; font-family: var(--font-head); font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.fhero__stats div span { font-size: 13px; color: rgba(255, 255, 255, .65); }
.fhero__media .srshow { box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08); }
.fhero__badge-client { display: inline-flex; align-items: center; gap: 8px; margin-left: 10px; font-size: 12px; font-weight: 700; padding: 6px 10px; border-radius: 999px; background: rgba(34, 197, 94, .18); color: #86EFAC; border: 1px solid rgba(34, 197, 94, .35); }

.fbenefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fbenefit { padding: 26px 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.fbenefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fbenefit i { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); font-style: normal; font-weight: 800; font-size: 16px; margin-bottom: 14px; }
.fbenefit h3 { font-size: 17px; margin-bottom: 6px; }
.fbenefit p { font-size: 14.5px; color: var(--ink-3); }

/* Galeria de prints (app / cliente) */
.fscreens-tabs { display: inline-flex; padding: 5px; background: #fff; border: 1px solid var(--line); border-radius: 999px; gap: 4px; margin-bottom: 36px; box-shadow: var(--shadow-sm); }
.fscreens-tabs button { padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; color: var(--ink-3); transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.fscreens-tabs button.is-active { background: var(--navy-900); color: #fff; }
.fscreens-tabs button b { background: var(--bg-3); color: var(--ink-3); font-size: 11px; padding: 2px 7px; border-radius: 999px; }
.fscreens-tabs button.is-active b { background: rgba(255, 255, 255, .18); color: #fff; }
.fscreens-panel { display: none; }
.fscreens-panel.is-active { display: block; }
.fscreens { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: start; }
.fscreen { text-align: center; }
.fscreen .dev { margin: 0 auto; }
.fscreen .dev--phone { height: auto; max-width: 260px; }
.fscreen .dev--phone .dev__screen { height: auto; aspect-ratio: 9 / 19; }
.fscreen .dev__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: object-position 6s ease-in-out; }
.fscreen:hover .dev__screen img { object-position: bottom; }
.fscreen .dev--laptop .dev__screen { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 27, 63, .08); }
.fscreen .dev--phone .dev__screen, .srmock .dev--phone .dev__screen { box-shadow: 0 0 0 1.4cqw #3D4658, 0 0 0 1.8cqw #1B2540, 0 0 0 2.2cqw rgba(11, 27, 63, .12), var(--shadow-lg); }
.fscreen--wide { grid-column: span 2; }
.fscreen strong { display: block; margin-top: 18px; font-size: 16px; }
.fscreen span { font-size: 14px; color: var(--ink-3); }
.fscreen__zoom { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 110; background: rgba(6, 13, 36, .92); display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s .3s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: min(1200px, 100%); max-height: 90vh; border-radius: 12px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; font-size: 22px; display: grid; place-items: center; }

/* Scrollytelling: texto rola, mock fixo */
.fstory { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.fstory__steps { display: grid; gap: 24px; }
.fstory__step { padding: 28px; border-radius: 22px; border: 1px solid var(--line); background: #fff; transition: border-color .3s, box-shadow .3s, transform .3s var(--ease); scroll-margin-top: 120px; }
.fstory__step.is-active { border-color: var(--accent); box-shadow: 0 20px 50px -24px color-mix(in srgb, var(--accent) 60%, transparent); transform: translateX(6px); }
.fstory__step span { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.fstory__step h3 { font-size: 22px; margin: 8px 0 8px; }
.fstory__step p { font-size: 15.5px; }
.fstory__media { position: sticky; top: 100px; }

.fcta { text-align: center; }
.fcta h2 { font-size: clamp(30px, 4vw, 46px); margin: 12px 0 14px; }
.fcta .hero__actions { justify-content: center; }
.fcta .hero__trust { justify-content: center; }
.frelated { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

/* Índice de recursos */
.findex-hero { padding: clamp(36px, 5vw, 60px) 0 10px; text-align: center; }
.findex-hero h1 { font-size: clamp(34px, 5vw, 56px); margin: 14px 0 12px; }
.findex-group { margin-top: 56px; }
.findex-group h2 { font-size: 24px; margin-bottom: 6px; }
.findex-group > p { color: var(--ink-3); margin-bottom: 22px; }

/* =====================================================================
   CADASTRO (trial-first)
   ===================================================================== */
.signup { background: var(--bg-2); min-height: calc(100vh - 74px); padding: 32px 0 80px; }
.signup__grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.signup__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.signup__head h1 { font-size: clamp(26px, 3.4vw, 36px); margin: 10px 0 8px; }
.signup__head p { font-size: 16px; }
.signup__progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 28px 0 8px; }
.signup__step { text-align: left; padding: 0; position: relative; }
.signup__step i { display: block; height: 5px; border-radius: 999px; background: var(--line); transition: background .3s; margin-bottom: 8px; }
.signup__step span { font-size: 12.5px; font-weight: 700; color: var(--ink-4); display: flex; align-items: center; gap: 6px; }
.signup__step span b { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; font-size: 10px; color: var(--ink-4); }
.signup__step.is-active i { background: var(--orange-500); }
.signup__step.is-active span { color: var(--ink); }
.signup__step.is-active span b { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.signup__step.is-done i { background: var(--green-500); }
.signup__step.is-done span { color: var(--green-600); }
.signup__step.is-done span b { background: var(--green-500); border-color: var(--green-500); color: #fff; }
.signup__message { margin: 14px 0 0; padding: 12px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; display: none; }
.signup__message.is-error { display: block; background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.signup__message.is-success { display: block; background: var(--green-100); color: #166534; border: 1px solid #BBF7D0; }
.signup-form { margin-top: 26px; display: grid; gap: 22px; }
.signup-form.is-hidden { display: none; }
.signup-form h2 { font-size: 22px; }
.signup-form h2 + p { font-size: 14.5px; color: var(--ink-3); margin-top: 4px; }
.signup-fieldset { display: grid; gap: 14px; }
.signup-fieldset.is-hidden { display: none; }
.signup-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 6px; }
.signup-actions .btn--primary { min-width: 220px; }
.signup__security { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-4); }
.signup__security span { display: inline-flex; align-items: center; gap: 6px; }

/* Planos compactos no cadastro */
.plan-pick { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.plan-pick__card { position: relative; border: 2px solid var(--line); border-radius: 20px; padding: 20px; cursor: pointer; transition: border-color .25s, box-shadow .25s, transform .25s var(--ease); background: #fff; }
.plan-pick__card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.plan-pick__card.is-selected { border-color: var(--orange-500); box-shadow: 0 16px 40px -20px rgba(255, 107, 26, .6); }
.plan-pick__card.is-featured::before { content: 'Mais escolhido'; position: absolute; top: -11px; right: 16px; background: var(--orange-500); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.plan-pick__card h3 { font-size: 18px; }
.plan-pick__card .plan__desc { min-height: 0; margin: 4px 0 12px; font-size: 13.5px; }
.plan-pick__price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.plan-pick__price .val { font-family: var(--font-head); font-size: 32px; font-weight: 800; letter-spacing: -.03em; color: var(--navy-900); }
.plan-pick__price .per { font-size: 13px; color: var(--ink-3); }
.plan-pick__note { font-size: 12px; color: var(--green-600); font-weight: 700; min-height: 16px; }
.plan-pick__features { margin: 12px 0 0; display: grid; gap: 6px; font-size: 13px; color: var(--ink-2); }
.plan-pick__features li { display: flex; gap: 8px; }
.plan-pick__features li::before { content: '✓'; color: var(--green-600); font-weight: 800; }
.plan-pick__features li.is-more { color: var(--ink-4); }
.plan-pick__features li.is-more::before { content: '+'; }
.plan-pick__radio { position: absolute; top: 18px; right: 18px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line-2); display: grid; place-items: center; transition: all .2s; }
.plan-pick__radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #fff; transform: scale(0); transition: transform .2s var(--ease-spring); }
.plan-pick__card.is-selected .plan-pick__radio { background: var(--orange-500); border-color: var(--orange-500); }
.plan-pick__card.is-selected .plan-pick__radio::after { transform: scale(1); }
.plan-pick__card input { position: absolute; opacity: 0; pointer-events: none; }
.plan-pick__card.is-unavailable { opacity: .45; pointer-events: none; }

/* Resumo lateral */
.signup__aside { position: sticky; top: 94px; display: grid; gap: 16px; }
.summary { background: var(--navy-900); color: #fff; border-radius: 24px; padding: 26px; position: relative; overflow: hidden; }
.summary::before { content: ''; position: absolute; width: 220px; height: 220px; right: -80px; top: -80px; border-radius: 50%; background: var(--blue-600); filter: blur(60px); opacity: .6; }
.summary > * { position: relative; }
.summary h3 { color: #fff; font-size: 16px; margin-bottom: 14px; }
.summary__row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 14px; color: rgba(255, 255, 255, .75); }
.summary__row b { color: #fff; text-align: right; }
.summary__row:last-of-type { border-bottom: 0; }
.summary__trial { margin-top: 12px; background: rgba(34, 197, 94, .16); border: 1px solid rgba(34, 197, 94, .35); border-radius: 14px; padding: 12px 14px; font-size: 13.5px; color: #BBF7D0; display: flex; gap: 10px; align-items: flex-start; }
.summary__trial i { font-style: normal; font-size: 18px; }
.summary__trial b { color: #fff; display: block; margin-bottom: 2px; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; font-size: 14px; color: var(--ink-2); }
.aside-card h4 { font-size: 14px; margin-bottom: 10px; }
.aside-card ul { display: grid; gap: 8px; }
.aside-card li { display: flex; gap: 8px; }
.aside-card li i { color: var(--green-600); font-style: normal; font-weight: 800; }
.aside-card blockquote { font-style: italic; color: var(--ink); }
.aside-card .story__who { margin-top: 12px; }

/* Etapa 4: ativação */
.activate { display: grid; gap: 18px; }
.activate__ready { text-align: center; padding: 24px; border-radius: 20px; background: linear-gradient(180deg, var(--green-100), #fff); border: 1px solid #BBF7D0; }
.activate__ready i { width: 56px; height: 56px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; font-size: 26px; font-style: normal; font-weight: 800; margin: 0 auto 12px; animation: popIn .6s var(--ease-spring) both; }
@keyframes popIn { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.activate__ready h2 { font-size: 24px; margin-bottom: 6px; }
.activate__ready p { font-size: 15px; }
.activate__options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.activate__opt { border: 2px solid var(--line); border-radius: 20px; padding: 22px; display: grid; gap: 8px; align-content: start; }
.activate__opt.is-primary { border-color: var(--navy-900); }
.activate__opt h3 { font-size: 18px; }
.activate__opt p { font-size: 14px; color: var(--ink-3); }
.activate__opt .btn { margin-top: 8px; }
.activate__opt ul { display: grid; gap: 6px; font-size: 13.5px; color: var(--ink-2); }
.activate__opt li::before { content: '✓ '; color: var(--green-600); font-weight: 800; }
.payment-summary { display: flex; justify-content: space-between; gap: 12px; background: var(--bg-2); border-radius: 14px; padding: 14px 16px; }
.payment-summary span { font-size: 12px; color: var(--ink-4); display: block; }
.payment-summary strong { font-size: 16px; }
.payment-summary .js-payment-price { font-size: 22px; color: var(--navy-900); }
.payment-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.payment-tab { padding: 12px; border-radius: 12px; border: 1.5px solid var(--line-2); font-weight: 700; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; }
.payment-tab.is-active { border-color: var(--navy-900); background: var(--navy-900); color: #fff; }
.payment-panel { display: none; }
.payment-panel.is-active { display: grid; gap: 14px; }
.payment-loader { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-3); }
.payment-loader.is-hidden { display: none; }
.payment-loader .spinner { width: 18px; height: 18px; border: 2px solid var(--line-2); border-top-color: var(--blue-600); border-radius: 50%; animation: spin .8s linear infinite; }
.payment-pix-result { display: grid; justify-items: center; gap: 10px; }
.payment-pix-result img { width: 200px; height: 200px; border-radius: 12px; border: 1px solid var(--line); }
.payment-pix-result textarea { width: 100%; min-height: 80px; padding: 10px; border-radius: 10px; border: 1px solid var(--line-2); font-size: 12px; }
.payment-notice { padding: 10px 14px; border-radius: 10px; font-size: 14px; background: var(--bg-3); }
.payment-notice.is-error { background: #FEF2F2; color: #B91C1C; }
.payment-notice.is-success { background: var(--green-100); color: #166534; }
.sr-ghost-field { position: absolute !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; left: -9999px; }
.subdomain-preview { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); }
.subdomain-preview b { color: var(--navy-900); }
.subdomain-status { font-size: 12.5px; font-weight: 700; }
.subdomain-status.is-success { color: var(--green-600); } .subdomain-status.is-error { color: #DC2626; }
.password-meter { height: 5px; border-radius: 999px; background: var(--line); overflow: hidden; }
.password-meter i { display: block; height: 100%; width: 0; background: #DC2626; transition: width .3s, background .3s; }
.password-meter.is-2 i { width: 50%; background: #F59E0B; } .password-meter.is-3 i { width: 100%; background: var(--green-500); } .password-meter.is-1 i { width: 25%; }

/* Página simples */
.page-simple { padding: 40px 0 80px; }
.page-simple h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.page-simple .htmlchars { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(20px, 4vw, 40px); }
.page-simple .htmlchars p { margin-bottom: 14px; }
.page-404 { text-align: center; padding: 80px 0; }
.page-404 h1 { font-size: 80px; color: var(--navy-900); }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1080px) {
    .feat-grid, .stories { grid-template-columns: repeat(2, 1fr); }
    .fbenefits, .frelated { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .signup__grid { grid-template-columns: 1fr; }
    .signup__aside { position: static; }
}
@media (max-width: 900px) {
    .hero__float { display: none; }
    .hero__inner, .fhero__inner, .showcase, .cta-final, .fstory { grid-template-columns: minmax(0, 1fr); }
    .showcase:nth-child(even) .showcase__media { order: 0; }
    .hero__media { margin-top: 10px; }
    .hero__float--b { left: 6px; }
    .fstory__media { position: static; order: -1; }
    .steps { grid-template-columns: 1fr; }
    .proof__inner { grid-template-columns: repeat(2, 1fr); }
    .site-nav { position: fixed; inset: 74px 0 0 0; background: #fff; flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 4px; transform: translateX(100%); transition: transform .35s var(--ease); overflow-y: auto; z-index: 89; }
    .site-nav:not(.is-open) { visibility: hidden; }
    .site-nav.is-open { transform: none; visibility: visible; }
    .site-nav > a, .site-nav > .nav-item > a { font-size: 17px; padding: 14px 12px; color: var(--ink) !important; }
    .nav-item > a::after { margin-left: auto; }
    .mega { position: static; transform: none; width: auto; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 10px 12px; grid-template-columns: 1fr; display: none; }
    .nav-item.is-open .mega { display: grid; }
    .site-nav .nav-cta { margin: 14px 0 0; flex-direction: column; }
    .site-nav .btn { width: 100%; }
    .nav-toggle { display: grid; }
    .sticky-cta { display: flex; }
    .wa-fab { bottom: calc(20px + env(safe-area-inset-bottom)); padding: 12px; transition: bottom .4s var(--ease), transform .3s var(--ease); }
    body.has-sticky-cta .wa-fab { bottom: calc(92px + env(safe-area-inset-bottom)); }
    .wa-fab span { display: none; }
    .activate__options { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .feat-grid, .stories, .fbenefits, .frelated, .footer-grid, .fields--2, .fields--3, .plans { grid-template-columns: 1fr; }
    .fscreen--wide { grid-column: auto; }
    .hero__actions .btn { width: 100%; }
    .hero__float { display: none; }
    .proof__inner { padding: 24px 0; gap: 16px; }
    .section-head h2 { font-size: 28px; }
    .plan { padding: 24px 20px; }
    .pricing-toggle button { padding: 9px 12px; font-size: 13px; }
    .signup__progress { grid-template-columns: repeat(4, 1fr); gap: 5px; }
    .signup__step span { font-size: 0; }
    .signup__step span b { font-size: 10px; }
    .signup-actions { flex-direction: column-reverse; }
    .signup-actions .btn { width: 100%; }
    .payment-summary { flex-direction: column; }
    .cta-final { padding: 28px 20px; }
    .footer-bottom { flex-direction: column; }
    .footer-bottom a { margin: 0 12px 0 0; }
}

/* ===== Landing de plano (/planos/{slug}) — composta pelos blocos dos recursos ===== */
.phero__audience { margin: -4px 0 18px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.phero__audience b { color: #fff; }
.pincluded .feat-card__more::after { content: none; }
.pfeatures .showcase { padding: clamp(32px, 5vw, 64px) 0; border-top: 1px solid var(--line); }
.pfeatures .showcase:first-child { border-top: 0; padding-top: 8px; }
.pfeatures .showcase:nth-child(even) .showcase__media { order: 0; }
.pshow--media-left .showcase__media { order: -1; }
.pshow__feature { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.pshow__feature i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, #fff); font-size: 15px; }
.pshow__feature em { font-style: normal; text-transform: none; letter-spacing: 0; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--green-100); color: var(--green-600); }
.pshow .showcase__list { margin: 18px 0 20px; }
.pshow .showcase__list li span b { color: var(--ink); font-weight: 700; }
.pshow__stats { display: flex; flex-wrap: wrap; gap: 8px 28px; margin: 0 0 20px; }
.pshow__stats strong { display: block; font-family: var(--font-head); font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--accent); }
.pshow__stats span { font-size: 13px; color: var(--ink-3); }
.pshow .btn-link { display: inline-block; margin-top: 4px; color: var(--blue-600) !important; text-decoration: none; }
.pshow .btn-link:hover { text-decoration: underline; }
.pshow .showcase__media .srshow { box-shadow: var(--shadow); }
.plans--single { grid-template-columns: minmax(0, 520px); justify-content: center; }
.plan__details { display: block; text-align: center; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--blue-600); }
.plan__details:hover { text-decoration: underline; }
.plan-pick__details { display: inline-block; margin-top: 10px; font-size: 12.5px; font-weight: 700; color: var(--blue-600); position: relative; z-index: 2; }
.plan-pick__details:hover { text-decoration: underline; }
.plan-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.plan-mini { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 22px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.plan-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plan-mini h3 { font-size: 19px; }
.plan-mini__desc { font-size: 14px; color: var(--ink-3); margin: 4px 0 12px; }
.plan-mini__price { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; font-family: var(--font-head); margin-bottom: 10px; }
.plan-mini__price small { font-size: 12px; color: var(--ink-4); width: 100%; }
.plan-mini__price strong { font-size: 28px; font-weight: 800; letter-spacing: -.03em; color: var(--navy-900); }
.plan-mini__price span { font-size: 13px; color: var(--ink-3); }
.plan-mini__feats { font-size: 13.5px; color: var(--ink-3); flex: 1; margin-bottom: 16px; }
.plan-mini__feats b { color: var(--ink); }
.plan-mini__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.plan-mini__actions .btn-link { color: var(--blue-600) !important; text-decoration: none; }
@media (max-width: 900px) {
    .pshow--media-left .showcase__media { order: 0; }
    .plans--single { grid-template-columns: 1fr; }
}
