/*
 * Site institucional da Tasskee — home (2026-09).
 *
 * Tudo aqui vive sob o prefixo `sx-` para conviver com o `tk-` das landings
 * antigas (/kanban, /gantt, /chamados, /atendimento), que carregam este
 * arquivo só por causa do cabeçalho e do rodapé novos (partial/header.html e
 * partial/footer.html). Nenhuma regra toca elemento solto fora de `.sx`.
 */

:root {
  --sx-blue: #268df3;
  --sx-blue-d: #0c6fd6;
  --sx-blue-dd: #0a4f9e;
  --sx-teal: #26f3b7;
  --sx-teal-d: #0a9c74;
  --sx-green: #16a34a;
  --sx-ink: #0b1b33;
  --sx-ink-2: #34445c;
  --sx-muted: #66758c;
  --sx-line: #e3eaf4;
  --sx-soft: #f5f8fd;
  --sx-soft-2: #eef4fc;
  --sx-white: #ffffff;
  --sx-navy: #07152b;
  --sx-navy-2: #0d2242;
  --sx-amber: #f59e0b;
  --sx-radius: 18px;
  --sx-shadow-sm: 0 1px 2px rgba(11, 27, 51, .06), 0 1px 3px rgba(11, 27, 51, .05);
  --sx-shadow-md: 0 12px 32px rgba(12, 70, 140, .10);
  --sx-shadow-lg: 0 34px 80px rgba(12, 70, 140, .20);
  --sx-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.sx, .sx-header, .sx-foot { font-family: var(--sx-font); color: var(--sx-ink); -webkit-font-smoothing: antialiased; }
.sx *, .sx-header *, .sx-foot * { box-sizing: border-box; margin: 0; padding: 0; }
.sx a, .sx-header a, .sx-foot a { color: inherit; text-decoration: none; }
.sx img, .sx svg, .sx-header img, .sx-foot img { display: block; max-width: 100%; }
.sx { background: var(--sx-white); line-height: 1.6; overflow-x: clip; }
.sx-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sx h1, .sx h2, .sx h3, .sx h4 { letter-spacing: -0.025em; line-height: 1.1; font-weight: 800; }
.sx-grad { background: linear-gradient(110deg, var(--sx-blue) 5%, #19c0d8 55%, var(--sx-teal-d) 95%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sx :focus-visible, .sx-header :focus-visible { outline: 3px solid rgba(38, 141, 243, .45); outline-offset: 2px; border-radius: 8px; }

/* ---------- Botões ---------- */
.sx-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: 700 15px/1 var(--sx-font); border-radius: 12px; padding: 13px 20px; cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; white-space: nowrap; }
.sx-btn svg { width: 18px; height: 18px; flex: none; }
.sx-btn-primary { color: #fff !important; background: linear-gradient(135deg, var(--sx-blue) 0%, var(--sx-blue-d) 100%); box-shadow: 0 10px 24px rgba(38, 141, 243, .35); }
.sx-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(38, 141, 243, .45); }
.sx-btn-ghost { color: var(--sx-ink); background: #fff; border-color: var(--sx-line); box-shadow: var(--sx-shadow-sm); }
.sx-btn-ghost:hover { border-color: #c5d8f1; transform: translateY(-2px); }
.sx-btn-light { color: var(--sx-blue-dd) !important; background: #fff; box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.sx-btn-light:hover { transform: translateY(-2px); }
.sx-btn-outline-light { color: #fff !important; border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .06); }
.sx-btn-outline-light:hover { background: rgba(255, 255, 255, .12); transform: translateY(-2px); }
.sx-btn-lg { padding: 16px 26px; font-size: 16px; border-radius: 14px; }
.sx-btn-block { width: 100%; }

/* ---------- Cabeçalho ---------- */
.sx-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(170%) blur(14px); -webkit-backdrop-filter: saturate(170%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.sx-header.is-scrolled { border-color: var(--sx-line); box-shadow: 0 6px 24px rgba(11, 27, 51, .06); }
.sx-nav { display: flex; align-items: center; gap: 24px; height: 70px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sx-logo img { height: 30px; width: auto; }
.sx-nav-links { display: flex; gap: 4px; margin-left: 12px; }
.sx-nav-links a { font-size: 14.5px; font-weight: 600; color: var(--sx-ink-2); padding: 8px 12px; border-radius: 10px; transition: background .15s, color .15s; }
.sx-nav-links a:hover, .sx-nav-links a.active { background: var(--sx-soft-2); color: var(--sx-blue-d); }
.sx-nav-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.sx-nav-cta .sx-btn { padding: 11px 16px; font-size: 14.5px; }
.sx-burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--sx-line); background: #fff; cursor: pointer; align-items: center; justify-content: center; color: var(--sx-ink); }
.sx-burger svg { width: 22px; height: 22px; }
.sx-mobile { display: none; border-top: 1px solid var(--sx-line); background: #fff; padding: 12px 16px 18px; }
.sx-mobile a { display: block; font-weight: 600; padding: 12px 8px; border-radius: 10px; color: var(--sx-ink-2); }
.sx-mobile a:hover { background: var(--sx-soft); }
.sx-mobile .sx-btn { margin-top: 10px; }
.sx-header.is-open .sx-mobile { display: block; }

/* ---------- Seções ---------- */
.sx-section { padding: 110px 0; position: relative; }
.sx-section[id], .sx [id^="precos"] { scroll-margin-top: 70px; }
.sx-section-sm { padding: 72px 0; }
.sx-soft { background: var(--sx-soft); }
.sx-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--sx-blue-d); margin-bottom: 14px; }
.sx-eyebrow::before { content: ''; width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.sx-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.sx-head .sx-eyebrow::before { display: none; }
.sx-head h2, .sx-h2 { font-size: clamp(30px, 4.2vw, 48px); margin-bottom: 16px; }
.sx-head p, .sx-lead { font-size: 18px; color: var(--sx-muted); }
.sx-lead b { color: var(--sx-ink); }

/* ---------- Hero ---------- */
.sx-hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.sx-hero::before { content: ''; position: absolute; inset: -30% -10% auto -10%; height: 900px; background:
  radial-gradient(600px 380px at 18% 30%, rgba(38, 141, 243, .16), transparent 70%),
  radial-gradient(520px 360px at 85% 20%, rgba(38, 243, 183, .16), transparent 70%); pointer-events: none; }
.sx-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(11, 27, 51, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 27, 51, .045) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, #000 20%, transparent 75%); pointer-events: none; }
.sx-hero > * { position: relative; z-index: 1; }
.sx-hero-copy { max-width: 880px; margin: 0 auto; text-align: center; }
.sx-pill { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: 999px; background: #fff; border: 1px solid var(--sx-line); box-shadow: var(--sx-shadow-sm); font-size: 13.5px; font-weight: 600; color: var(--sx-ink-2); margin-bottom: 26px; }
.sx-pill b { background: linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)); color: #fff; font-size: 11.5px; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; }
.sx-hero h1 { font-size: clamp(38px, 6.4vw, 74px); letter-spacing: -0.035em; margin-bottom: 22px; }
.sx-hero .sx-lead { font-size: clamp(17px, 1.6vw, 20px); max-width: 720px; margin: 0 auto 32px; }
.sx-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.sx-hero-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 22px; font-size: 14px; color: var(--sx-muted); font-weight: 500; }
.sx-hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.sx-hero-note svg { width: 16px; height: 16px; color: var(--sx-green); }

.sx-stage { position: relative; max-width: 1080px; margin: 64px auto 0; }
.sx-browser { position: relative; border-radius: 16px; background: #fff; border: 1px solid #d9e4f2; box-shadow: var(--sx-shadow-lg); overflow: hidden; }
.sx-browser-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #f3f6fb; border-bottom: 1px solid var(--sx-line); }
.sx-browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #dfe6f0; }
.sx-browser-bar i:nth-child(1) { background: #ff6159; } .sx-browser-bar i:nth-child(2) { background: #ffbd2e; } .sx-browser-bar i:nth-child(3) { background: #28c941; }
.sx-browser-bar span { margin: 0 auto; font-size: 12px; font-weight: 600; color: var(--sx-muted); background: #fff; border: 1px solid var(--sx-line); padding: 4px 28px; border-radius: 8px; }
.sx-browser img { width: 100%; height: auto; }
.sx-float { position: absolute; z-index: 3; background: #fff; border: 1px solid var(--sx-line); border-radius: 16px; box-shadow: var(--sx-shadow-md), 0 2px 6px rgba(11, 27, 51, .06); padding: 14px 16px; font-size: 13.5px; animation: sx-bob 6s ease-in-out infinite; }
.sx-float small { display: block; color: var(--sx-muted); font-size: 12px; font-weight: 600; }
.sx-float b { font-weight: 700; }
.sx-float-wa { left: -46px; top: 20%; width: 270px; }
.sx-float-wa .sx-wa-head { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.sx-float-wa .sx-wa-ic { width: 30px; height: 30px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; }
.sx-float-wa .sx-wa-ic svg { width: 17px; height: 17px; }
.sx-bubble { padding: 9px 12px; border-radius: 12px; font-size: 13px; line-height: 1.45; margin-top: 6px; }
.sx-bubble.in { background: #f1f4f8; border-top-left-radius: 4px; }
.sx-bubble.ai { background: #e7f7ef; color: #0d5a34; border-top-right-radius: 4px; margin-left: 22px; }
.sx-float-ai { right: -40px; bottom: 14%; width: 290px; animation-delay: -3s; }
.sx-float-ai .sx-ai-row { display: flex; gap: 10px; align-items: flex-start; }
.sx-float-ai .sx-ai-ic { flex: none; width: 32px; height: 32px; border-radius: 10px; background: linear-gradient(135deg, #7c5cff, var(--sx-blue)); color: #fff; display: grid; place-items: center; }
.sx-float-ai .sx-ai-ic svg { width: 17px; height: 17px; }
.sx-float-ok { left: 8%; bottom: -26px; display: flex; align-items: center; gap: 10px; animation-delay: -1.5s; }
.sx-float-ok .sx-dot-ok { width: 30px; height: 30px; border-radius: 50%; background: #e7f7ef; color: var(--sx-green); display: grid; place-items: center; }
.sx-float-ok .sx-dot-ok svg { width: 16px; height: 16px; }
@keyframes sx-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Faixa "no lugar de" ---------- */
.sx-replace { padding: 56px 0 8px; }
.sx-replace-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 14px; color: var(--sx-muted); font-size: 14.5px; font-weight: 600; }
.sx-replace-in .sx-x { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; border: 1px dashed #cfdbeb; background: #fff; text-decoration: line-through; text-decoration-color: rgba(220, 38, 38, .55); text-decoration-thickness: 2px; }
.sx-replace-in .sx-arrow { color: var(--sx-blue); }
.sx-replace-in .sx-into { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: linear-gradient(135deg, var(--sx-blue), var(--sx-blue-d)); color: #fff; box-shadow: 0 8px 18px rgba(38, 141, 243, .3); }
.sx-replace-in .sx-into img { height: 16px; filter: brightness(0) invert(1); }

/* ---------- Fácil ---------- */
.sx-easy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sx-card { background: #fff; border: 1px solid var(--sx-line); border-radius: var(--sx-radius); padding: 28px; box-shadow: var(--sx-shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.sx-card:hover { transform: translateY(-4px); box-shadow: var(--sx-shadow-md); border-color: #d3e2f5; }
.sx-ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--sx-soft-2); color: var(--sx-blue-d); margin-bottom: 18px; }
.sx-ic svg { width: 22px; height: 22px; }
.sx-ic.t { background: #e5fbf4; color: var(--sx-teal-d); }
.sx-ic.v { background: #f0ecff; color: #6d4bf5; }
.sx-ic.a { background: #fff4e0; color: #c47a00; }
.sx-ic.g { background: #e7f7ef; color: var(--sx-green); }
.sx-ic.r { background: #ffecec; color: #d9423a; }
.sx-card h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.015em; }
.sx-card p { color: var(--sx-muted); font-size: 15px; }
.sx-kbd { display: inline-block; font: 700 12px/1 ui-monospace, SFMono-Regular, Menlo, monospace; padding: 4px 7px; border-radius: 6px; border: 1px solid var(--sx-line); border-bottom-width: 2px; background: #fff; color: var(--sx-ink-2); }

/* ---------- Tour ---------- */
.sx-tour { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: start; }
.sx-tabs { display: flex; flex-direction: column; gap: 8px; }
.sx-tab { position: relative; text-align: left; width: 100%; border: 1px solid transparent; background: transparent; border-radius: 16px; padding: 16px 18px; cursor: pointer; font-family: var(--sx-font); color: var(--sx-ink); transition: background .2s, border-color .2s, box-shadow .2s; overflow: hidden; }
.sx-tab:hover { background: rgba(255, 255, 255, .7); }
.sx-tab .sx-tab-t { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 16.5px; }
.sx-tab .sx-tab-t svg { width: 20px; height: 20px; color: var(--sx-muted); transition: color .2s; }
.sx-tab .sx-tab-d { display: none; color: var(--sx-muted); font-size: 14.5px; margin-top: 8px; padding-left: 32px; }
.sx-tab[aria-selected="true"] { background: #fff; border-color: var(--sx-line); box-shadow: var(--sx-shadow-md); }
.sx-tab[aria-selected="true"] .sx-tab-t svg { color: var(--sx-blue); }
.sx-tab[aria-selected="true"] .sx-tab-d { display: block; }
.sx-tab .sx-prog { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--sx-blue), var(--sx-teal-d)); }
.sx-tab[aria-selected="true"] .sx-prog.run { animation: sx-prog var(--sx-tour-ms, 7000ms) linear forwards; }
@keyframes sx-prog { from { width: 0; } to { width: 100%; } }
.sx-panels { position: relative; }
.sx-panel { display: none; }
.sx-panel.is-on { display: block; animation: sx-in .45s ease both; }
@keyframes sx-in { from { opacity: 0; transform: translateY(10px) scale(.99); } to { opacity: 1; transform: none; } }
.sx-panel-cap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.sx-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--sx-line); color: var(--sx-ink-2); }
.sx-chip svg { width: 14px; height: 14px; color: var(--sx-green); }

/* ---------- Números ---------- */
.sx-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--sx-line); border-radius: 22px; background: #fff; box-shadow: var(--sx-shadow-sm); overflow: hidden; }
.sx-stat { padding: 30px 26px; border-right: 1px solid var(--sx-line); }
.sx-stat:last-child { border-right: 0; }
.sx-stat b { display: block; font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.sx-stat span { color: var(--sx-muted); font-size: 14.5px; font-weight: 500; }

/* ---------- Diferencial: split ---------- */
.sx-split { display: grid; grid-template-columns: 1fr 1.12fr; gap: 64px; align-items: center; }
.sx-split.rev { grid-template-columns: 1.12fr 1fr; }
.sx-split.rev > :first-child { order: 2; }
.sx-list { list-style: none; display: grid; gap: 16px; margin: 28px 0 32px; }
.sx-list li { display: flex; gap: 14px; align-items: flex-start; }
.sx-list .sx-ic { flex: none; width: 38px; height: 38px; border-radius: 11px; margin: 0; }
.sx-list .sx-ic svg { width: 19px; height: 19px; }
.sx-list b { display: block; font-size: 16px; margin-bottom: 2px; }
.sx-list span { color: var(--sx-muted); font-size: 14.5px; }
.sx-shot { position: relative; }
.sx-shot .sx-browser { box-shadow: var(--sx-shadow-lg); }
.sx-tagline { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; font-size: 13.5px; color: var(--sx-muted); font-weight: 600; }

/* Atendimento (seção escura) */
.sx-dark { background: radial-gradient(900px 500px at 85% 10%, rgba(38, 243, 183, .14), transparent 60%), radial-gradient(800px 500px at 0% 100%, rgba(38, 141, 243, .22), transparent 60%), var(--sx-navy); color: #dbe6f6; }
.sx-dark h2, .sx-dark h3, .sx-dark b { color: #fff; }
.sx-dark .sx-eyebrow { color: var(--sx-teal); }
.sx-dark .sx-lead, .sx-dark .sx-list span, .sx-dark .sx-tagline { color: #a9bad3; }
.sx-dark .sx-ic { background: rgba(38, 243, 183, .12); color: var(--sx-teal); }
.sx-dark .sx-browser { border-color: rgba(255, 255, 255, .12); box-shadow: 0 40px 100px rgba(0, 0, 0, .5); }
.sx-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 80px; counter-reset: sxflow; }
.sx-flow-step { position: relative; padding: 22px 20px; border-radius: 16px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); }
.sx-flow-step::before { counter-increment: sxflow; content: counter(sxflow); display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: 13px; font-weight: 800; background: rgba(38, 243, 183, .14); color: var(--sx-teal); margin-bottom: 14px; }
.sx-flow-step:not(:last-child)::after { content: ''; position: absolute; top: 36px; right: -12px; width: 10px; height: 10px; border-top: 2px solid rgba(38, 243, 183, .5); border-right: 2px solid rgba(38, 243, 183, .5); transform: rotate(45deg); }
.sx-flow-step b { display: block; font-size: 15.5px; margin-bottom: 4px; }
.sx-flow-step span { font-size: 14px; color: #a9bad3; }
.sx-channels { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.sx-channels span { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); color: #fff; }
.sx-channels i { width: 8px; height: 8px; border-radius: 50%; background: #25d366; }
.sx-channels i.m { background: #60a5fa; }
.sx-dark .sx-price-hint { margin-top: 18px; font-size: 14px; color: #a9bad3; }
.sx-dark .sx-price-hint b { color: var(--sx-teal); }
.sx-dark .sx-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* IA */
.sx-ai-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 28px 0 30px; }
.sx-ai-card { padding: 18px; border-radius: 16px; border: 1px solid var(--sx-line); background: #fff; }
.sx-ai-card b { display: flex; align-items: center; gap: 8px; font-size: 15.5px; margin-bottom: 4px; }
.sx-ai-card b svg { width: 18px; height: 18px; color: #6d4bf5; }
.sx-ai-card span { color: var(--sx-muted); font-size: 14px; }

/* Páginas de recurso (/kanban, /metas, ...) e hub /recursos */
.sx-pill-static { cursor: default; }
.sx-feat-hero { padding-bottom: 20px; }
.sx-feat-hero .sx-crumb { justify-content: center; margin-bottom: 20px; }
.sx-planbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 28px; border-radius: var(--sx-radius); border: 1px solid var(--sx-line); background: linear-gradient(135deg, #f4f9ff, #effcf7); }
.sx-planbar b { display: block; font-size: 17px; color: var(--sx-ink); }
.sx-planbar span { font-size: 15px; color: var(--sx-muted); }
.sx-related .sx-card { display: flex; flex-direction: column; }
.sx-related .sx-card p { flex: 1; }
.sx-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 700; color: var(--sx-blue-d); }
.sx-card-link svg { width: 16px; height: 16px; }
.sx-related .sx-card:hover .sx-card-link { gap: 10px; }
.sx-hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sx-hub .sx-card { display: flex; flex-direction: column; }
.sx-hub .sx-card p { flex: 1; font-size: 14.5px; }
.sx-hub-group { margin-top: 56px; }
.sx-hub-group:first-of-type { margin-top: 0; }
.sx-hub-group > h3 { font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--sx-muted); margin-bottom: 18px; }

/* Blog: índice e artigo */
.sx-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sx-post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--sx-line); border-radius: var(--sx-radius); padding: 26px; box-shadow: var(--sx-shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.sx-post-card:hover { transform: translateY(-4px); box-shadow: var(--sx-shadow-md); border-color: #d3e2f5; }
.sx-post-card.is-first { grid-column: span 3; background: linear-gradient(135deg, #f4f9ff, #effcf7); }
.sx-post-card.is-first h2 { font-size: clamp(24px, 3vw, 34px); max-width: 780px; }
.sx-post-card.is-first p { max-width: 720px; font-size: 16.5px; }
.sx-post-card h2 { font-size: 19px; letter-spacing: -0.015em; margin-bottom: 8px; }
.sx-post-card p { flex: 1; color: var(--sx-muted); font-size: 14.5px; }
.sx-post-cat { display: inline-flex; align-self: flex-start; padding: 5px 12px; border-radius: 999px; background: var(--sx-soft-2, #eef4fd); color: var(--sx-blue-d); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.sx-post-meta { margin-top: 14px; font-size: 13.5px; color: var(--sx-muted); }
.sx-post { padding: 56px 0 24px; }
.sx-post-wrap { max-width: 780px; }
.sx-post-head { margin-bottom: 38px; }
.sx-post-head h1 { font-size: clamp(30px, 5vw, 46px); letter-spacing: -0.03em; margin: 14px 0 18px; }
.sx-post-head .sx-lead { font-size: 19px; }
.sx-article { font-size: 17.5px; line-height: 1.75; color: var(--sx-ink-2, #33405a); }
.sx-article > * + * { margin-top: 22px; }
.sx-article h2 { font-size: clamp(23px, 3vw, 30px); color: var(--sx-ink); margin-top: 48px; }
.sx-article h3 { font-size: 20px; color: var(--sx-ink); margin-top: 34px; }
.sx-article ul, .sx-article ol { padding-left: 22px; display: grid; gap: 10px; }
.sx-article li { padding-left: 4px; }
.sx-article a { color: var(--sx-blue-d); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.sx-article strong { color: var(--sx-ink); }
.sx-article blockquote { border-left: 4px solid var(--sx-teal); background: var(--sx-soft); border-radius: 0 14px 14px 0; padding: 18px 22px; font-size: 17px; }
.sx-article table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.sx-article th, .sx-article td { border: 1px solid var(--sx-line); padding: 10px 12px; text-align: left; vertical-align: top; }
.sx-article th { background: var(--sx-soft); font-weight: 800; color: var(--sx-ink); }
.sx-article-cta { border: 1px solid var(--sx-line); border-radius: var(--sx-radius); background: linear-gradient(135deg, #f4f9ff, #effcf7); padding: 24px 26px; }
.sx-article-cta b { display: block; font-size: 17px; color: var(--sx-ink); margin-bottom: 6px; }
.sx-article-cta p { font-size: 15.5px; margin-bottom: 14px !important; }
.sx-post-cta { margin-top: 56px; padding: 30px; border-radius: var(--sx-radius); border: 1px solid var(--sx-line); background: #fff; box-shadow: var(--sx-shadow-md); display: grid; gap: 20px; }
.sx-post-cta b { display: block; font-size: 19px; color: var(--sx-ink); margin-bottom: 6px; }
.sx-post-cta span { color: var(--sx-muted); font-size: 15.5px; }
.sx-post-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Telas de erro (404, 500, ...) — layout próprio do site, sem o auth.css do app */
.sx-err-body { margin: 0; }
.sx-err-body .sx-header { position: static; }
.sx-err { background: radial-gradient(900px 500px at 85% -10%, rgba(38, 243, 183, .10), transparent 60%), radial-gradient(900px 560px at -10% 110%, rgba(38, 141, 243, .14), transparent 60%), var(--sx-white); min-height: calc(100vh - 78px); display: flex; flex-direction: column; justify-content: center; text-align: center; padding: 64px 0 34px; }
.sx-err-code { font-size: clamp(88px, 16vw, 168px); font-weight: 800; line-height: 1; letter-spacing: -.05em; background: linear-gradient(120deg, var(--sx-blue) 10%, var(--sx-teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sx-err-h { font-size: clamp(26px, 4vw, 40px); font-weight: 800; letter-spacing: -.03em; color: var(--sx-ink); margin-top: 8px; }
.sx-err-p { max-width: 560px; margin: 16px auto 0; font-size: 17.5px; color: var(--sx-muted); }
.sx-err-detail { max-width: 720px; margin: 14px auto 0; font-size: 13px; color: #b45309; word-break: break-word; }
.sx-err-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.sx-err-links { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--sx-line); display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center; font-size: 15px; }
.sx-err-links span { color: var(--sx-muted); }
.sx-err-links a { color: var(--sx-blue-d); font-weight: 700; text-decoration: none; }
.sx-err-links a:hover { text-decoration: underline; }
.sx-err-foot { margin-top: auto; padding-top: 56px; font-size: 14px; color: var(--sx-muted); }

/* BYOK: IA em créditos x IA com a chave do cliente */
.sx-byok { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.sx-byok-col { border-radius: var(--sx-radius); padding: 30px; border: 1px solid var(--sx-line); background: #fff; }
.sx-byok-col.is-credit { background: var(--sx-soft); }
.sx-byok-col.is-byok { border: 2px solid var(--sx-blue); box-shadow: var(--sx-shadow-md); }
.sx-byok-t { font-size: 19px; font-weight: 800; color: var(--sx-ink); letter-spacing: -0.015em; }
.sx-byok-s { margin: 4px 0 20px; color: var(--sx-muted); font-size: 14.5px; }
.sx-byok ul { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.sx-byok li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--sx-muted); }
.sx-byok li b { color: var(--sx-ink); }
.sx-byok li svg { flex: none; width: 22px; height: 22px; padding: 4px; border-radius: 50%; margin-top: 1px; }
.sx-byok .is-credit svg { background: #fdecec; color: #dc2626; }
.sx-byok .is-byok svg { background: #e7f7ef; color: var(--sx-green); }
.sx-byok-note { max-width: 760px; margin: 24px auto 0; text-align: center; font-size: 14px; color: var(--sx-muted); }
.sx-byok.is-dark .sx-byok-col { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .12); }
.sx-byok.is-dark .sx-byok-col.is-byok { background: rgba(38, 243, 183, .06); border-color: var(--sx-teal); box-shadow: none; }
.sx-byok.is-dark .sx-byok-t, .sx-byok.is-dark li b { color: #fff; }
.sx-byok.is-dark .sx-byok-s, .sx-byok.is-dark li { color: #a9bad3; }
.sx-byok.is-dark .is-credit svg { background: rgba(220, 38, 38, .16); color: #f87171; }
.sx-byok.is-dark .is-byok svg { background: rgba(38, 243, 183, .14); color: var(--sx-teal); }
.sx-byok-note.is-dark { color: #a9bad3; }
.sx-prompt { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding: 12px 14px 12px 18px; border-radius: 14px; background: #fff; border: 1px solid #d9e4f2; box-shadow: var(--sx-shadow-md); font-size: 15px; color: var(--sx-ink-2); min-height: 56px; }
.sx-prompt .sx-caret { display: inline-block; width: 2px; height: 18px; background: var(--sx-blue); margin-left: 2px; vertical-align: -3px; animation: sx-blink 1s steps(1) infinite; }
.sx-prompt .sx-send { margin-left: auto; flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--sx-blue), var(--sx-blue-d)); }
.sx-prompt .sx-send svg { width: 17px; height: 17px; }
@keyframes sx-blink { 50% { opacity: 0; } }
.sx-guard { display: flex; flex-wrap: wrap; gap: 8px; }
.sx-guard span { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; padding: 7px 12px; border-radius: 10px; }
.sx-guard .g1 { background: #e7f7ef; color: #11703a; }
.sx-guard .g2 { background: #eaf3fe; color: var(--sx-blue-dd); }
.sx-guard .g3 { background: #fff4e0; color: #9a5c00; }
.sx-guard .g4 { background: #ffecec; color: #b3261e; }

/* Conectado */
.sx-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.sx-duo .sx-card { padding: 0; overflow: hidden; }
.sx-duo .sx-card .sx-duo-t { padding: 26px 28px 20px; }
.sx-duo .sx-card img { border-top: 1px solid var(--sx-line); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }

/* Bento de recursos */
.sx-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sx-bento .sx-card { padding: 22px; }
.sx-bento .sx-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.sx-bento .sx-card p { font-size: 14px; }
.sx-bento .sx-ic { width: 40px; height: 40px; border-radius: 11px; margin-bottom: 14px; }
.sx-bento .sx-ic svg { width: 20px; height: 20px; }
.sx-bento .sx-wide { grid-column: span 2; display: flex; gap: 18px; align-items: flex-start; background: linear-gradient(135deg, #f4f9ff, #effcf7); }
.sx-bento .sx-wide .sx-ic { flex: none; }

/* Pilha de ferramentas */
.sx-stack { display: grid; grid-template-columns: 1fr auto 1fr; gap: 28px; align-items: center; }
.sx-stack-col { background: #fff; border: 1px solid var(--sx-line); border-radius: 22px; padding: 28px; box-shadow: var(--sx-shadow-sm); height: 100%; }
.sx-stack-col h3 { font-size: 18px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.sx-stack-col ul { list-style: none; display: grid; gap: 10px; }
.sx-stack-col li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; background: var(--sx-soft); font-size: 14.5px; font-weight: 600; color: var(--sx-ink-2); }
.sx-stack-col li svg { width: 18px; height: 18px; flex: none; }
.sx-stack-col.before li svg { color: #d9423a; }
.sx-stack-col.after { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)) border-box; box-shadow: var(--sx-shadow-md); }
.sx-stack-col.after li { background: #f0f7ff; }
.sx-stack-col.after li svg { color: var(--sx-green); }
.sx-stack-mid { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)); color: #fff; box-shadow: 0 12px 28px rgba(38, 141, 243, .35); }
.sx-stack-mid svg { width: 28px; height: 28px; }
.sx-stack-foot { margin-top: 18px; font-size: 14px; color: var(--sx-muted); }
.sx-stack-foot b { color: var(--sx-ink); }

/* Como funciona o teste */
.sx-trial { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.sx-trial::before { content: ''; position: absolute; left: 16%; right: 16%; top: 31px; height: 2px; background: linear-gradient(90deg, var(--sx-blue), var(--sx-teal-d)); opacity: .35; }
.sx-trial-step { text-align: center; padding: 0 22px; position: relative; }
.sx-trial-step .sx-trial-n { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid #cfe2f8; font-weight: 800; font-size: 13px; color: var(--sx-blue-d); box-shadow: var(--sx-shadow-sm); line-height: 1.1; text-align: center; }
.sx-trial-step.last .sx-trial-n { border-color: var(--sx-green); color: var(--sx-green); }
.sx-trial-n svg { width: 26px; height: 26px; }
.sx-trial-step h3 { font-size: 18px; margin-bottom: 8px; }
.sx-trial-step p { color: var(--sx-muted); font-size: 15px; max-width: 320px; margin: 0 auto; }

/* ---------- Preços ---------- */
.sx-switch { display: inline-flex; padding: 5px; border-radius: 14px; background: #fff; border: 1px solid var(--sx-line); box-shadow: var(--sx-shadow-sm); margin: 0 auto 28px; }
.sx-switch button { font: 700 14.5px/1 var(--sx-font); padding: 12px 18px; border-radius: 10px; border: 0; background: transparent; color: var(--sx-muted); cursor: pointer; display: inline-flex; align-items: center; gap: 8px; }
.sx-switch button[aria-selected="true"] { background: linear-gradient(135deg, var(--sx-blue), var(--sx-blue-d)); color: #fff; box-shadow: 0 6px 14px rgba(38, 141, 243, .3); }
.sx-switch button small { font-size: 11px; font-weight: 800; padding: 3px 7px; border-radius: 999px; background: rgba(38, 243, 183, .2); color: var(--sx-teal-d); }
.sx-switch button[aria-selected="true"] small { background: rgba(255, 255, 255, .22); color: #fff; }
.sx-center { text-align: center; }
.sx-pricing-pane { display: none; }
.sx-pricing-pane.is-on { display: block; animation: sx-in .35s ease both; }

.sx-calc { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; margin: 0 auto 28px; padding: 14px 20px; border-radius: 16px; background: #fff; border: 1px solid var(--sx-line); width: fit-content; max-width: 100%; box-shadow: var(--sx-shadow-sm); }
.sx-calc label { font-size: 14.5px; font-weight: 700; color: var(--sx-ink-2); }
.sx-stepper { display: inline-flex; align-items: center; border: 1px solid var(--sx-line); border-radius: 12px; overflow: hidden; background: var(--sx-soft); }
.sx-stepper button { width: 40px; height: 40px; border: 0; background: transparent; font: 800 18px/1 var(--sx-font); color: var(--sx-blue-d); cursor: pointer; }
.sx-stepper button:hover { background: var(--sx-soft-2); }
.sx-stepper input { width: 54px; height: 40px; border: 0; border-left: 1px solid var(--sx-line); border-right: 1px solid var(--sx-line); text-align: center; font: 800 16px/1 var(--sx-font); color: var(--sx-ink); background: #fff; -moz-appearance: textfield; appearance: textfield; }
.sx-stepper input::-webkit-outer-spin-button, .sx-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sx-calc-field { display: inline-flex; align-items: center; gap: 12px; }

.sx-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.sx-plans.three { grid-template-columns: repeat(3, 1fr); max-width: 1020px; margin: 0 auto; }
.sx-plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--sx-line); border-radius: 22px; padding: 28px 24px 24px; box-shadow: var(--sx-shadow-sm); }
.sx-plan.hot { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)) border-box; box-shadow: var(--sx-shadow-lg); transform: translateY(-8px); }
.sx-plan .sx-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)); white-space: nowrap; box-shadow: 0 6px 14px rgba(38, 141, 243, .3); }
.sx-plan h3 { font-size: 22px; margin-bottom: 4px; }
.sx-plan .sx-plan-sub { color: var(--sx-muted); font-size: 14px; min-height: 44px; }
.sx-price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 2px; }
.sx-price .cur { font-size: 17px; font-weight: 700; color: var(--sx-ink-2); }
.sx-price .val { font-size: 46px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.sx-price .per { font-size: 13.5px; color: var(--sx-muted); font-weight: 600; }
.sx-plan-total { font-size: 13.5px; color: var(--sx-muted); min-height: 42px; margin-bottom: 16px; }
.sx-plan-total b { color: var(--sx-ink); }
.sx-plan-extra { font-size: 13.5px; font-weight: 700; color: var(--sx-blue-d); margin-top: 2px; }
.sx-plan ul { list-style: none; display: grid; gap: 9px; margin: 18px 0 24px; font-size: 14px; color: var(--sx-ink-2); }
.sx-plan li { display: flex; gap: 9px; align-items: flex-start; }
.sx-plan li svg { flex: none; width: 17px; height: 17px; color: var(--sx-green); margin-top: 2px; }
.sx-plan li.lead { font-weight: 800; color: var(--sx-ink); }
.sx-plan li.lead svg { display: none; }
.sx-plan .sx-btn { margin-top: auto; }
.sx-limits { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; padding: 12px 0; border-top: 1px dashed var(--sx-line); border-bottom: 1px dashed var(--sx-line); font-size: 12.5px; color: var(--sx-muted); }
.sx-limits b { display: block; font-size: 14px; color: var(--sx-ink); }
.sx-pricing-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 30px; font-size: 14px; color: var(--sx-muted); font-weight: 500; }
.sx-pricing-note span { display: inline-flex; align-items: center; gap: 7px; }
.sx-pricing-note svg { width: 16px; height: 16px; color: var(--sx-green); }
.sx-addon-req { display: flex; align-items: center; gap: 12px; max-width: 1020px; margin: 0 auto 26px; padding: 14px 18px; border-radius: 14px; background: #fff8eb; border: 1px solid #fde5b4; color: #7a4a00; font-size: 14.5px; }
.sx-addon-req svg { width: 20px; height: 20px; flex: none; }
.sx-example { max-width: 1020px; margin: 26px auto 0; padding: 20px 22px; border-radius: 16px; background: #fff; border: 1px solid var(--sx-line); display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: space-between; font-size: 14.5px; color: var(--sx-ink-2); }
.sx-example b { color: var(--sx-ink); }
.sx-example .big { font-size: 22px; font-weight: 800; color: var(--sx-blue-d); }

/* Tabela comparativa */
.sx-compare { max-width: 1100px; margin: 36px auto 0; }
.sx-compare summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; color: var(--sx-blue-d); font-size: 15px; padding: 12px; }
.sx-compare summary::-webkit-details-marker { display: none; }
.sx-compare summary svg { width: 18px; height: 18px; transition: transform .2s; }
.sx-compare[open] summary svg { transform: rotate(180deg); }
.sx-table-wrap { overflow-x: auto; border: 1px solid var(--sx-line); border-radius: 18px; background: #fff; margin-top: 10px; -webkit-overflow-scrolling: touch; }
.sx-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 14px; }
.sx-table th, .sx-table td { padding: 12px 16px; border-bottom: 1px solid var(--sx-line); text-align: center; }
.sx-table th:first-child, .sx-table td:first-child { text-align: left; color: var(--sx-ink-2); font-weight: 600; }
.sx-table thead th { position: sticky; top: 0; background: #f8fbff; font-size: 15px; font-weight: 800; }
.sx-table thead th.hot { color: var(--sx-blue-d); }
.sx-table td.hot { background: #f7fbff; }
.sx-table tr.grp td { background: var(--sx-soft); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--sx-muted); text-align: left; }
.sx-table .y { color: var(--sx-green); font-weight: 800; }
.sx-table .n { color: #b6c2d3; }
.sx-table tr:last-child td { border-bottom: 0; }

/* FAQ */
.sx-faq { max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.sx-faq details { background: #fff; border: 1px solid var(--sx-line); border-radius: 16px; padding: 4px 22px; transition: box-shadow .2s, border-color .2s; }
.sx-faq details[open] { box-shadow: var(--sx-shadow-md); border-color: #d3e2f5; }
.sx-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; font-weight: 700; font-size: 16.5px; }
.sx-faq summary::-webkit-details-marker { display: none; }
.sx-faq summary .pm { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sx-soft-2); color: var(--sx-blue-d); display: grid; place-items: center; transition: transform .2s; }
.sx-faq summary .pm svg { width: 16px; height: 16px; }
.sx-faq details[open] summary .pm { transform: rotate(45deg); }
.sx-faq .ans { color: var(--sx-muted); padding: 0 0 18px; font-size: 15.5px; }

/* CTA final */
.sx-cta { position: relative; overflow: hidden; border-radius: 30px; padding: 72px 40px; text-align: center; color: #fff; background: radial-gradient(600px 300px at 90% 0%, rgba(38, 243, 183, .35), transparent 60%), linear-gradient(135deg, var(--sx-blue) 0%, var(--sx-blue-dd) 100%); box-shadow: var(--sx-shadow-lg); }
.sx-cta h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 14px; }
.sx-cta p { color: rgba(255, 255, 255, .86); font-size: 18px; max-width: 640px; margin: 0 auto 30px; }
.sx-cta .sx-hero-actions { justify-content: center; }
.sx-cta .sx-hero-note { color: rgba(255, 255, 255, .85); }
.sx-cta .sx-hero-note svg { color: var(--sx-teal); }

/* ---------- Rodapé ---------- */
.sx-foot { background: var(--sx-navy); color: #a9bad3; padding: 72px 0 32px; line-height: 1.6; }
.sx-foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px 28px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sx-foot-logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.sx-foot p.desc { font-size: 14.5px; max-width: 320px; }
.sx-foot h5 { color: #fff; font-size: 14px; font-weight: 800; margin-bottom: 14px; letter-spacing: .02em; }
.sx-foot ul { list-style: none; display: grid; gap: 9px; font-size: 14.5px; }
.sx-foot a:hover { color: #fff; }
.sx-foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; max-width: 1200px; margin: 48px auto 0; padding: 22px 24px 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }

/* =====================================================================
 * Landing /atendimento — peças próprias (mocks de SLA, CSAT, registro,
 * portas de entrada e o "monte a sua central").
 * ===================================================================== */

/* Portas de entrada */
.sx-doors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sx-door { display: flex; gap: 14px; align-items: center; padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--sx-line); box-shadow: var(--sx-shadow-sm); }
.sx-door .sx-ic { margin: 0; flex: none; }
.sx-door b { display: block; font-size: 15px; }
.sx-door span { font-size: 13px; color: var(--sx-muted); }
.sx-doors-foot { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-size: 14.5px; font-weight: 700; color: var(--sx-ink-2); }
.sx-doors-foot svg { width: 20px; height: 20px; color: var(--sx-blue); }

/* Janela de mock genérica */
.sx-mock { background: #fff; border: 1px solid #d9e4f2; border-radius: 18px; box-shadow: var(--sx-shadow-lg); overflow: hidden; }
.sx-mock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--sx-line); background: #f8fbff; font-weight: 800; font-size: 14.5px; }
.sx-mock-head small { font-weight: 600; color: var(--sx-muted); font-size: 12.5px; }
.sx-mock-body { padding: 16px 18px; }

/* SLA */
.sx-sla-tabs { display: flex; gap: 6px; padding: 12px 18px 0; }
.sx-sla-tabs span { font-size: 12.5px; font-weight: 700; padding: 7px 12px; border-radius: 9px 9px 0 0; color: var(--sx-muted); border-bottom: 2px solid transparent; }
.sx-sla-tabs span.on { color: #b3261e; border-color: #d9423a; }
.sx-sla-tabs span b { display: inline-grid; place-items: center; min-width: 18px; height: 18px; border-radius: 9px; background: #d9423a; color: #fff; font-size: 11px; margin-left: 4px; padding: 0 5px; }
.sx-sla-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-bottom: 1px dashed var(--sx-line); }
.sx-sla-row:last-child { border-bottom: 0; }
.sx-av { flex: none; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 13px; background: #3b82f6; }
.sx-sla-row .who { flex: 1; min-width: 0; }
.sx-sla-row .who b { display: block; font-size: 14px; }
.sx-sla-row .who span { display: block; font-size: 12.5px; color: var(--sx-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sx-clock { flex: none; display: inline-flex; align-items: center; gap: 6px; font: 800 12.5px/1 var(--sx-font); padding: 7px 10px; border-radius: 999px; font-variant-numeric: tabular-nums; }
.sx-clock svg { width: 14px; height: 14px; }
.sx-clock.ok { background: #e7f7ef; color: #11703a; }
.sx-clock.warn { background: #fff4e0; color: #9a5c00; }
.sx-clock.late { background: #ffecec; color: #b3261e; animation: sx-pulse 1.6s ease-in-out infinite; }
.sx-clock.paused { background: #eef2f7; color: var(--sx-muted); }
@keyframes sx-pulse { 50% { box-shadow: 0 0 0 5px rgba(217, 66, 58, .12); } }
.sx-policy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.sx-policy div { padding: 12px; border-radius: 12px; background: var(--sx-soft); text-align: center; }
.sx-policy b { display: block; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.sx-policy span { font-size: 12px; color: var(--sx-muted); font-weight: 600; }
.sx-bell { position: absolute; right: -26px; top: -22px; display: flex; gap: 10px; align-items: center; padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid var(--sx-line); box-shadow: var(--sx-shadow-md); font-size: 13px; max-width: 260px; animation: sx-bob 6s ease-in-out infinite; }
.sx-bell .i { flex: none; width: 30px; height: 30px; border-radius: 50%; background: #ffecec; color: #d9423a; display: grid; place-items: center; }
.sx-bell .i svg { width: 16px; height: 16px; }
.sx-bell small { display: block; color: var(--sx-muted); }

/* CSAT e registro */
.sx-duo-mock { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sx-duo-mock > .sx-card { display: flex; flex-direction: column; }
.sx-duo-mock .sx-mock { margin-top: 22px; box-shadow: var(--sx-shadow-md); }
.sx-wa { background: #efeae2; padding: 16px; display: grid; gap: 8px; }
.sx-wa .m { max-width: 82%; padding: 9px 12px; border-radius: 10px; font-size: 13.5px; line-height: 1.45; background: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, .06); }
.sx-wa .m.me { justify-self: end; background: #d9fdd3; }
.sx-wa .opts { display: grid; gap: 4px; margin-top: 6px; }
.sx-wa .opts span { display: block; text-align: center; padding: 7px; border-top: 1px solid #eef0f2; color: #0a7cff; font-weight: 700; font-size: 13px; }
.sx-stars { display: inline-flex; gap: 2px; color: #f5b301; }
.sx-stars svg { width: 15px; height: 15px; }
.sx-csat { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border-top: 1px solid var(--sx-line); }
.sx-csat b { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--sx-green); }
.sx-csat span { font-size: 13px; color: var(--sx-muted); }
.sx-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--sx-muted); margin-bottom: 12px; }
.sx-crumb i { font-style: normal; color: #b6c2d3; }
.sx-crumb b { color: var(--sx-blue-d); }
.sx-field { margin-bottom: 12px; }
.sx-field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--sx-ink-2); margin-bottom: 6px; }
.sx-opts { display: flex; flex-wrap: wrap; gap: 6px; }
.sx-opts span { font-size: 12.5px; font-weight: 700; padding: 7px 11px; border-radius: 9px; border: 1px solid var(--sx-line); color: var(--sx-ink-2); background: #fff; }
.sx-opts span.on { border-color: var(--sx-blue); background: #eaf3fe; color: var(--sx-blue-dd); }
.sx-input { font-size: 13px; padding: 9px 11px; border-radius: 9px; border: 1px solid var(--sx-line); color: var(--sx-muted); background: #fbfcfe; }
.sx-req { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: #9a5c00; background: #fff8eb; border: 1px solid #fde5b4; padding: 9px 11px; border-radius: 10px; }
.sx-req svg { width: 15px; height: 15px; flex: none; }

/* Monte a sua central */
.sx-builder { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; max-width: 1080px; margin: 0 auto; align-items: start; }
.sx-builder-in { background: #fff; border: 1px solid var(--sx-line); border-radius: 22px; padding: 26px; box-shadow: var(--sx-shadow-sm); }
.sx-builder-in h3 { font-size: 17px; margin-bottom: 14px; }
.sx-builder-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-bottom: 24px; }
.sx-builder-row .sx-calc-field { flex-direction: column; align-items: flex-start; gap: 8px; }
.sx-tiers { display: grid; gap: 10px; }
.sx-tier { position: relative; display: flex; gap: 14px; align-items: flex-start; padding: 16px; border-radius: 16px; border: 1.5px solid var(--sx-line); cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.sx-tier:hover { border-color: #c5d8f1; }
.sx-tier input { position: absolute; opacity: 0; pointer-events: none; }
.sx-tier .dot { flex: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid #c5d3e5; margin-top: 2px; display: grid; place-items: center; }
.sx-tier input:checked ~ .dot { border-color: var(--sx-blue); }
.sx-tier input:checked ~ .dot::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--sx-blue); }
.sx-tier:has(input:checked) { border-color: var(--sx-blue); background: #f5faff; box-shadow: 0 8px 20px rgba(38, 141, 243, .12); }
.sx-tier:has(input:focus-visible) { outline: 3px solid rgba(38, 141, 243, .45); outline-offset: 2px; }
.sx-tier .t { flex: 1; }
.sx-tier .t b { font-size: 16px; }
.sx-tier .t em { font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, var(--sx-blue), var(--sx-teal-d)); padding: 3px 8px; border-radius: 999px; margin-left: 6px; vertical-align: 2px; }
.sx-tier .t span { display: block; font-size: 13.5px; color: var(--sx-muted); margin-top: 3px; }
.sx-tier .p { text-align: right; font-size: 13px; color: var(--sx-muted); white-space: nowrap; }
.sx-tier .p b { display: block; font-size: 17px; color: var(--sx-ink); }
.sx-bill { position: sticky; top: 90px; background: var(--sx-navy); color: #c9d6ea; border-radius: 22px; padding: 26px; box-shadow: var(--sx-shadow-lg); }
.sx-bill h3 { color: #fff; font-size: 17px; margin-bottom: 16px; }
.sx-bill-line { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, .12); font-size: 14px; }
.sx-bill-line b { color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.sx-bill-line small { display: block; color: #8ea3c2; font-size: 12.5px; }
.sx-bill-total { display: flex; justify-content: space-between; align-items: baseline; margin: 18px 0 6px; }
.sx-bill-total span { font-weight: 700; color: #fff; }
.sx-bill-total b { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--sx-teal); font-variant-numeric: tabular-nums; }
.sx-bill-per { font-size: 13px; color: #8ea3c2; margin-bottom: 20px; }
.sx-bill-per b { color: #fff; }
.sx-bill .sx-btn { width: 100%; }
.sx-bill-note { font-size: 12.5px; color: #8ea3c2; margin-top: 14px; }

/* ---------- Revelar ao rolar ---------- */
.sx-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.sx-reveal.is-in { opacity: 1; transform: none; }
.sx-reveal.d1 { transition-delay: .08s; } .sx-reveal.d2 { transition-delay: .16s; } .sx-reveal.d3 { transition-delay: .24s; }
.sx-no-js .sx-reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sx *, .sx *::before, .sx *::after { animation: none !important; transition: none !important; }
  .sx-reveal { opacity: 1; transform: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1180px) {
  .sx-float-wa { left: -12px; }
  .sx-float-ai { right: -12px; }
}
@media (max-width: 1080px) {
  .sx-plans { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .sx-plan.hot { transform: none; }
  .sx-bento { grid-template-columns: repeat(2, 1fr); }
  .sx-tour { grid-template-columns: 1fr; }
  .sx-tabs { flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 4px; scrollbar-width: none; }
  .sx-tabs::-webkit-scrollbar { display: none; }
  .sx-tab { flex: none; width: auto; padding: 11px 14px; }
  .sx-tab .sx-tab-t { font-size: 14.5px; gap: 8px; }
  .sx-tab .sx-tab-d { display: none !important; }
}
@media (max-width: 960px) {
  .sx-doors { grid-template-columns: repeat(2, 1fr); }
  .sx-duo-mock, .sx-builder, .sx-byok { grid-template-columns: 1fr; }
  .sx-hub, .sx-bento, .sx-posts { grid-template-columns: repeat(2, 1fr); }
  .sx-post-card.is-first { grid-column: span 2; }
  .sx-byok-col { padding: 24px 20px; }
  .sx-bill { position: static; }
  .sx-bell { right: 8px; }
  .sx-nav-links, .sx-nav-cta .sx-hide-md { display: none; }
  .sx-burger { display: inline-flex; }
  .sx-split, .sx-split.rev { grid-template-columns: 1fr; gap: 40px; }
  .sx-split.rev > :first-child { order: 0; }
  .sx-easy-grid { grid-template-columns: repeat(2, 1fr); }
  .sx-stats { grid-template-columns: repeat(2, 1fr); }
  .sx-stat:nth-child(2) { border-right: 0; }
  .sx-stat:nth-child(-n+2) { border-bottom: 1px solid var(--sx-line); }
  .sx-flow { grid-template-columns: repeat(2, 1fr); }
  .sx-flow-step::after { display: none; }
  .sx-duo { grid-template-columns: 1fr; }
  .sx-stack { grid-template-columns: 1fr; }
  .sx-stack-mid { margin: 0 auto; transform: rotate(90deg); }
  .sx-plans.three { grid-template-columns: 1fr; max-width: 480px; }
  .sx-foot-grid { grid-template-columns: 1fr 1fr; }
  .sx-float { display: none; }
}
@media (max-width: 640px) {
  .sx-doors { grid-template-columns: 1fr; }
  .sx-bell { display: none; }
  .sx-policy b { font-size: 17px; }
  .sx-builder-in, .sx-bill { padding: 20px; }
  .sx-wrap, .sx-nav, .sx-foot-grid { padding-left: 16px; padding-right: 16px; }
  .sx-section { padding: 76px 0; }
  .sx-hero { padding-top: 44px; }
  .sx-hero-actions .sx-btn { width: 100%; }
  .sx-stage { margin-top: 40px; }
  .sx-browser-bar span { display: none; }
  .sx-easy-grid, .sx-bento, .sx-plans, .sx-ai-cards, .sx-flow, .sx-trial, .sx-hub, .sx-posts { grid-template-columns: 1fr; }
  .sx-post-card.is-first { grid-column: auto; }
  .sx-bento .sx-wide { grid-column: auto; flex-direction: column; gap: 0; }
  .sx-trial { gap: 30px; }
  .sx-trial::before { display: none; }
  .sx-stat { padding: 22px 18px; }
  .sx-stat b { font-size: 34px; }
  .sx-card { padding: 22px; }
  .sx-calc { width: 100%; }
  .sx-cta { padding: 52px 20px; border-radius: 22px; }
  .sx-foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .sx-nav-cta .sx-btn-primary { padding: 10px 13px; font-size: 13.5px; }
  .sx-switch { width: 100%; }
  .sx-switch button { flex: 1; justify-content: center; padding: 12px 10px; }
}
