/* =========================================================
   Maxipas Criciúma — Guia Prático de SST
   Design system compartilhado com a página de Serviços
   ========================================================= */

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --magenta: #e6007e;
  --magenta-600: #c8006d;
  --magenta-700: #a3005a;
  --magenta-50: #fdf0f7;
  --magenta-100: #fbdced;
  --pink-light: #ff5fb0;

  --ink: #141416;
  --ink-2: #1c1c20;
  --text-2: #5c5c66;
  --text-3: #8b8b95;
  --line: #ebebef;
  --soft: #f6f6f8;
  --gray: #f2f2f2;
  --white: #fff;

  --font: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1120px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --nav-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --shadow-sm: 0 1px 2px rgba(20, 20, 22, .05), 0 4px 12px -6px rgba(20, 20, 22, .08);
  --shadow: 0 18px 40px -22px rgba(20, 20, 22, .35);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.65; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
figure, blockquote { margin: 0; }
kbd { font-family: var(--font); font-size: 11px; font-weight: 600; padding: 2px 6px; border-radius: 5px; background: var(--soft); border: 1px solid var(--line); color: var(--text-2); }
code { font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: .95em; }
mark { background: var(--magenta-100); color: var(--ink); padding: 0 3px; border-radius: 3px; }
[hidden] { display: none !important; }
::selection { background: var(--magenta); color: var(--white); }
:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; border-radius: 6px; }
html { scrollbar-color: var(--magenta) transparent; }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 8px 14px; border-radius: 8px; background: var(--ink); color: var(--white); font-size: 14px; font-weight: 600; transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: none; }

/* Barra de progresso de leitura */
.progress { position: fixed; inset: 0 0 auto; z-index: 70; height: 2px; pointer-events: none; }
.progress span { display: block; height: 100%; width: 100%; background: var(--magenta); transform-origin: left; transform: scaleX(var(--p, 0)); }

/* ---------- Tipografia ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--magenta-600); margin-bottom: 8px; }
.eyebrow--light { color: rgba(255, 255, 255, .85); }
.eyebrow i { font-size: 12px; }
.link { color: var(--magenta-600); font-weight: 600; background: linear-gradient(currentColor, currentColor) no-repeat 0 100% / 0 1px; transition: background-size .3s var(--ease); overflow-wrap: break-word; }
.link:hover { background-size: 100% 1px; }
.linkbtn { border: 0; background: none; padding: 0; color: inherit; font-weight: 600; text-decoration: underline; }

/* ---------- Botões ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 44px; padding-inline: 20px; border-radius: 999px; border: 1px solid transparent; font-size: 14px; font-weight: 600; white-space: nowrap; background: none; transition: background-color .2s, border-color .2s, color .2s, transform .35s var(--spring), box-shadow .25s; }
.btn:active { transform: scale(.96); }
.btn i { font-size: 13px; }
.btn--primary { background: var(--magenta); color: var(--white); }
.btn--primary:hover { background: var(--magenta-600); box-shadow: 0 10px 24px -10px rgba(230, 0, 126, .6); }
.btn--glass { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .3); color: var(--white); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--glass:hover { background: var(--white); color: var(--ink); }
.btn--line { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--line:hover { border-color: var(--magenta); color: var(--magenta-600); }
.btn--sm { height: 36px; padding-inline: 14px; font-size: 13px; }
.btn--xs { height: 30px; padding-inline: 12px; font-size: 12px; }
.btn--lg { height: 50px; padding-inline: 24px; font-size: 15px; }
.btn--block { width: 100%; }
.btn--icon-only { width: 36px; padding: 0; }
.btn .kbd-hint { display: none; }
.icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); transition: background-color .2s, color .2s, transform .3s var(--spring); }
.icon-btn:hover { background: var(--ink); color: var(--white); }
.icon-btn:active { transform: scale(.92); }

/* =========================================================
   HERO / CABEÇALHO (padrão do site)
   ========================================================= */
.hero { position: relative; isolation: isolate; overflow: hidden; display: flex; min-height: clamp(560px, 86svh, 760px); background: var(--ink); color: var(--white); }
.hero--page { min-height: clamp(460px, 64svh, 600px); }
.hero__bg { position: absolute; inset: -4% 0 auto; z-index: -2; width: 100%; height: 108%; object-fit: cover; object-position: 70% 35%; will-change: transform; animation: heroZoom 1.8s var(--ease) both; }
@keyframes heroZoom { from { transform: scale(1.08); opacity: .4; } to { transform: scale(1); opacity: 1; } }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14, 14, 16, .94) 0%, rgba(14, 14, 16, .82) max(28%, calc(50% - 260px)), rgba(14, 14, 16, .25) 74%, rgba(14, 14, 16, .08) 100%), linear-gradient(180deg, rgba(14, 14, 16, .55) 0%, rgba(14, 14, 16, 0) 26%, rgba(14, 14, 16, 0) 70%, rgba(14, 14, 16, .55) 100%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero__inner { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; padding-block: clamp(20px, 3vw, 28px) clamp(40px, 7vw, 88px); }
.hero__bar { display: flex; align-items: center; gap: 24px; }
.hero__logo { width: clamp(128px, 12vw, 156px); }
.sitenav { display: flex; gap: 4px; margin-left: 8px; }
.sitenav a { position: relative; padding: 8px 12px; font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, .78); transition: color .2s; }
.sitenav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; border-radius: 2px; background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.sitenav a:hover { color: var(--white); }
.sitenav a:hover::after, .sitenav a[aria-current="page"]::after { transform: scaleX(1); }
.sitenav a[aria-current="page"] { color: var(--white); }
.hero__tools { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.menu-btn { display: none; }
.hero__body { max-width: 600px; }
.hero__title { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -.03em; }
.hero--page .hero__title { font-size: clamp(26px, 3.1vw, 38px); }
.hero__text { margin-top: 14px; font-size: 16px; color: rgba(255, 255, 255, .8); max-width: 50ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero__meta > * { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding-inline: 12px; border-radius: 999px; font-size: 13px; font-weight: 600; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .16); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero__meta a:hover { background: var(--white); color: var(--ink); }
.hero__meta i { color: var(--pink-light); font-size: 12px; }
.hero__meta a:hover i { color: var(--magenta); }
.crumbs { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: 13px; color: rgba(255, 255, 255, .7); }
.crumbs a:hover { color: var(--white); }
.crumbs i { font-size: 10px; opacity: .6; }

/* Entrada do hero */
.hero__anim { animation: rise .9s var(--d, .15s) var(--ease) both; }
.hero__title .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .w > span { display: inline-block; animation: wordUp .9s calc(.1s + var(--i) * .045s) var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes wordUp { from { transform: translateY(105%); } to { transform: none; } }

/* ---------- Nav fixa ---------- */
.catnav { position: fixed; inset: 0 0 auto; z-index: 60; height: var(--nav-h); background: rgba(255, 255, 255, .86); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid rgba(20, 20, 22, .06); transform: translateY(-105%); transition: transform .45s var(--ease), box-shadow .3s; }
.catnav.is-visible { transform: none; box-shadow: 0 8px 30px -20px rgba(20, 20, 22, .3); }
.catnav__inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.catnav__mark { flex-shrink: 0; transition: transform .4s var(--spring); }
.catnav__mark:hover { transform: rotate(-8deg) scale(1.08); }
.catnav__mark img { width: 28px; height: 28px; }
.catnav__tabs { display: flex; gap: 2px; min-width: 0; overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); padding-right: 24px; }
.catnav__tabs::-webkit-scrollbar { display: none; }
.catnav__tabs a { position: relative; display: flex; align-items: center; height: 34px; padding-inline: 11px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap; transition: color .2s, background-color .2s; }
.catnav__tabs a:hover { color: var(--ink); background: var(--soft); }
.catnav__tabs a.is-active { color: var(--magenta-600); background: var(--magenta-50); }
.catnav__search { display: flex; align-items: center; gap: 8px; height: 36px; margin-left: auto; padding: 0 8px 0 12px; border-radius: 999px; border: 1px solid transparent; background: var(--soft); color: var(--text-3); font-size: 13px; flex-shrink: 0; transition: border-color .2s, background-color .2s; }
.catnav__search:hover { border-color: var(--magenta); background: var(--white); }
.catnav__cta { flex-shrink: 0; }

/* ---------- Menu mobile ---------- */
.drawer { position: fixed; inset: 0 0 0 auto; margin: 0; width: min(380px, 100%); height: 100%; max-height: none; padding: 0; border: 0; background: var(--white); color: var(--ink); display: flex; flex-direction: column; }
.drawer:not([open]) { display: none; }
.drawer::backdrop { background: rgba(14, 14, 16, .55); backdrop-filter: blur(4px); }
.drawer[open] { animation: slideIn .45s var(--ease); }
@keyframes slideIn { from { transform: translateX(100%); } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer__nav { flex: 1; overflow: auto; padding: 16px 20px; }
.drawer__main { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: var(--radius); font-weight: 700; }
.drawer__main i { color: var(--magenta); width: 18px; }
.drawer__label { margin: 16px 12px 6px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.drawer li a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); font-size: 14px; font-weight: 600; color: var(--text-2); }
.drawer li a i { width: 18px; color: var(--text-3); }
.drawer li { animation: rise .5s calc(.12s + var(--i) * .035s) var(--ease) both; }
.drawer a:hover, .drawer a[aria-current="page"] { background: var(--magenta-50); color: var(--magenta-600); }
.drawer a[aria-current="page"] i { color: var(--magenta); }
.drawer__foot { display: grid; gap: 10px; padding: 16px 20px 24px; border-top: 1px solid var(--line); }

/* =========================================================
   SEÇÕES DA HOME DO GUIA
   ========================================================= */
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--gray { background: var(--gray); }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark .eyebrow { color: var(--pink-light); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(22px, 2.3vw, 30px); }
.section-head p:not(.eyebrow) { margin-top: 8px; color: var(--text-2); max-width: 52ch; }
.section--dark .section-head p:not(.eyebrow) { color: rgba(255, 255, 255, .65); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }

.searchbar { display: flex; align-items: center; gap: 10px; width: min(380px, 100%); height: 48px; padding: 0 10px 0 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--text-3); font-size: 14px; text-align: left; transition: border-color .2s, box-shadow .2s; }
.searchbar span { flex: 1; }
.searchbar:hover { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(230, 0, 126, .1); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; height: 32px; padding-inline: 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--text-2); transition: border-color .2s, color .2s, background-color .2s, transform .3s var(--spring); }
.chip:hover { border-color: var(--magenta); color: var(--magenta-600); background: var(--magenta-50); transform: translateY(-2px); }

/* Cartões de tema (bento) */
.topics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-card--feature { grid-column: span 2; grid-row: span 2; }
.topic-card a { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: border-color .3s, box-shadow .4s var(--ease), transform .5s var(--ease); transform-style: preserve-3d; }
.topic-card a:hover { border-color: rgba(230, 0, 126, .3); box-shadow: var(--shadow); }
.topic-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; background: var(--soft); }
.topic-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.topic-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20, 20, 22, .35)); opacity: 0; transition: opacity .4s; }
.topic-card a:hover .topic-card__media img { transform: scale(1.06); }
.topic-card a:hover .topic-card__media::after { opacity: 1; }
.topic-card__body { position: relative; display: flex; flex-direction: column; flex: 1; padding: 30px 20px 18px; }
.topic-card__icon { position: absolute; top: -22px; left: 20px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--white); color: var(--magenta); font-size: 17px; box-shadow: var(--shadow-sm); transition: background-color .3s, color .3s, transform .45s var(--spring); }
.topic-card a:hover .topic-card__icon { background: var(--magenta); color: var(--white); transform: translateY(-4px) rotate(-6deg); }
.topic-card__title { font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.topic-card__text { margin-top: 6px; font-size: 14px; line-height: 1.5; color: var(--text-2); flex: 1; }
.topic-card__meta { display: flex; align-items: center; gap: 6px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; font-weight: 600; color: var(--text-3); }
.topic-card__meta i { color: var(--magenta); }
.topic-card__go { display: grid; place-items: center; width: 30px; height: 30px; margin-left: auto; border-radius: 50%; background: var(--soft); color: var(--ink); transition: background-color .3s, transform .4s var(--spring); }
.topic-card__go i { color: inherit; font-size: 11px; }
.topic-card a:hover .topic-card__go { background: var(--magenta); color: var(--white); transform: translateX(3px); }
.topic-card--feature .topic-card__media { aspect-ratio: auto; flex: 1; min-height: 240px; }
.topic-card--feature .topic-card__title { font-size: 22px; }
.topic-card--feature .topic-card__body { flex: none; }

/* Números */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.fact { display: flex; flex-direction: column; gap: 8px; padding: 24px; border-radius: var(--radius-lg); background: var(--white); }
.fact__num { font-size: clamp(30px, 3.4vw, 42px); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: var(--magenta); font-variant-numeric: tabular-nums; }
.fact__label { font-size: 14px; color: var(--text-2); line-height: 1.45; }

/* Manuais */
.manuals { display: grid; gap: 12px; }
.manual { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 18px 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: border-color .3s, box-shadow .3s; }
.manual:hover { border-color: rgba(230, 0, 126, .3); box-shadow: var(--shadow-sm); }
.manual__icon { display: grid; place-items: center; width: 48px; height: 56px; border-radius: 10px; background: var(--magenta-50); color: var(--magenta); font-size: 22px; }
.manual__meta { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.manual h4 { font-size: 16px; margin-top: 2px; }
.manual__body p:not(.manual__meta) { font-size: 14px; color: var(--text-2); margin-top: 2px; }
.manual__actions { display: flex; gap: 8px; }
.doc .manual { margin-top: 24px; }

/* Contatos */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-grid--inline { grid-template-columns: repeat(2, 1fr); margin-top: 16px; }
.contact-card { padding: 22px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); }
.section--dark .contact-card { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); }
.contact-card__icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 14px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); }
.section--dark .contact-card__icon { background: rgba(230, 0, 126, .16); color: var(--pink-light); }
.contact-card h4 { font-size: 15px; margin-bottom: 10px; }
.contact-card li { font-size: 13.5px; line-height: 1.5; padding-block: 3px; }
.section--dark .contact-card .link { color: rgba(255, 255, 255, .88); }
.section--dark .contact-card .link:hover { color: var(--pink-light); }

/* =========================================================
   PÁGINA DE TEMA
   ========================================================= */
.doc { padding-block: clamp(40px, 5vw, 72px) 24px; }
.doc__grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }

/* Sumário */
.toc { position: sticky; top: calc(var(--nav-h) + 24px); }
.toc__box summary { display: flex; align-items: center; justify-content: space-between; gap: 8px; list-style: none; padding: 0 0 12px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); cursor: default; }
.toc__box summary::-webkit-details-marker { display: none; }
.toc__box summary i:first-child { margin-right: 6px; }
.toc__chev { display: none; }
.toc ol { position: relative; border-left: 1px solid var(--line); }
.toc li a { position: relative; display: flex; gap: 10px; padding: 7px 0 7px 16px; font-size: 13.5px; font-weight: 600; line-height: 1.35; color: var(--text-3); transition: color .2s; }
.toc li a::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: var(--magenta); transform: scaleY(0); transition: transform .35s var(--ease); }
.toc li a:hover { color: var(--ink); }
.toc li a.is-active { color: var(--ink); }
.toc li a.is-active::before { transform: scaleY(1); }
.toc__n { font-variant-numeric: tabular-nums; color: var(--text-3); font-weight: 500; }
.toc li a.is-active .toc__n { color: var(--magenta); }
.toc__help { margin-top: 24px; padding: 16px; border-radius: var(--radius); background: var(--soft); font-size: 13px; }
.toc__help p { color: var(--text-2); margin-bottom: 6px; }

/* Seção de conteúdo */
.doc__article { min-width: 0; }
.doc-section { padding-bottom: clamp(40px, 5vw, 64px); margin-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.doc-section:last-of-type { border-bottom: 0; }
.doc-section__head { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; margin-bottom: 24px; padding-right: 36px; }
.doc-section__icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--ink); color: var(--white); font-size: 19px; }
.doc-section h2 { font-size: clamp(21px, 2.2vw, 28px); line-height: 1.22; }
.anchor { position: absolute; top: 18px; right: 0; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 8px; color: var(--text-3); font-size: 13px; opacity: 0; transition: opacity .2s, color .2s, background-color .2s; }
.doc-section__head:hover .anchor, .anchor:focus-visible { opacity: 1; }
@media (hover: none) { .anchor { opacity: .6; } }
.anchor:hover { color: var(--magenta); background: var(--magenta-50); }
.doc-lead { margin-top: 10px; font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 70ch; }
.doc-section__body > * + * { margin-top: 18px; }
.doc-section__body > p { color: var(--text-2); max-width: 72ch; }
.doc-section__body strong { color: var(--ink); }
.doc-h3 { margin-top: 36px !important; font-size: 17px; letter-spacing: -.01em; }
.mini-h { font-size: 15px; margin-bottom: 12px; }
.doc-more { font-size: 14px; color: var(--text-2); }
.doc-more i { color: var(--magenta); margin-right: 6px; font-size: 12px; }
.doc-section__body kbd { font-size: 12px; background: var(--white); }

/* Listas */
.list li { position: relative; padding-left: 18px; color: var(--text-2); font-size: 14.5px; }
.list li + li { margin-top: 6px; }
.list li::before { content: ""; position: absolute; left: 2px; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); }
.checklist { display: grid; gap: 10px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 14.5px; color: var(--text-2); }
.checklist li > i { display: grid; place-items: center; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); font-size: 10px; }
.roman { list-style: upper-roman; padding-left: 24px; margin-block: 10px; }
.roman li { padding-left: 6px; }
.roman li + li { margin-top: 4px; }
.substeps { list-style: decimal; padding-left: 20px; color: var(--text-2); }
.substeps li { padding-left: 4px; }
.substeps li + li { margin-top: 4px; }

/* Cartões de informação */
.info-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.info-cards--3 { grid-template-columns: repeat(3, 1fr); }
.info-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 18px; border-radius: var(--radius); background: var(--soft); transition: background-color .3s, box-shadow .3s, transform .4s var(--ease); }
.info-cards--3 .info-card { grid-template-columns: 1fr; }
.info-card:hover { background: var(--white); box-shadow: 0 0 0 1px var(--line), var(--shadow-sm); transform: translateY(-2px); }
.info-card__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: var(--white); color: var(--magenta); font-size: 15px; transition: background-color .3s, color .3s; }
.info-card:hover .info-card__icon { background: var(--magenta); color: var(--white); }
.info-card h4 { font-size: 15px; line-height: 1.35; }
.info-card p { margin-top: 4px; font-size: 14px; line-height: 1.55; color: var(--text-2); }

/* Passos */
.steps { counter-reset: s; }
.step { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding-bottom: 22px; }
.step::before { content: ""; position: absolute; left: 19px; top: 44px; bottom: 4px; width: 2px; background: linear-gradient(var(--line), var(--line)); }
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }
.step__num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--magenta-100); background: var(--white); color: var(--magenta); font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; transition: background-color .3s, color .3s, border-color .3s; }
.step:hover .step__num { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.step__body { padding-top: 8px; min-width: 0; }
.step__body h4 { font-size: 15.5px; }
.step__text { color: var(--text-2); font-size: 14.5px; }
.step__body h4 + .step__text { margin-top: 4px; }
.step__text > * + * { margin-top: 10px; }
.steps--compact .step { grid-template-columns: 32px 1fr; gap: 14px; padding-bottom: 14px; }
.steps--compact .step::before { left: 15px; top: 36px; }
.steps--compact .step__num { width: 32px; height: 32px; font-size: 12px; }
.steps--compact .step__body { padding-top: 5px; }

/* Destaques */
.callout { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 16px 18px; border-radius: var(--radius); background: var(--magenta-50); font-size: 14.5px; color: var(--text-2); }
.callout__icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--white); color: var(--magenta); font-size: 14px; }
.callout__title { font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.callout--warn { background: var(--ink); color: rgba(255, 255, 255, .78); }
.callout--warn .callout__title, .callout--warn strong { color: var(--white) !important; }
.callout--warn .callout__icon { background: rgba(230, 0, 126, .2); color: var(--pink-light); }
.callout--warn .link { color: var(--pink-light); }
.callout--tip, .callout--check { background: var(--soft); }
.callout--law { background: var(--soft); border-left: 3px solid var(--ink); border-radius: 0 var(--radius) var(--radius) 0; }
.callout--law .callout__icon { background: var(--ink); color: var(--white); }

.law { padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; border-left: 3px solid var(--magenta); background: var(--soft); }
.law__source { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--magenta-600); }
.law__text { font-size: 14.5px; color: var(--ink-2); font-style: italic; }
.law__text p + p, .law__text p + ol, .law__text ol + p { margin-top: 8px; }
.law__text p:empty { display: none; }

/* Abas */
.tabs__list { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; border-radius: 999px; background: var(--soft); }
.tabs__tab { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding-inline: 16px; border: 0; border-radius: 999px; background: none; font-size: 13.5px; font-weight: 600; color: var(--text-2); transition: background-color .25s, color .25s, box-shadow .25s; }
.tabs__tab i { font-size: 12px; }
.tabs__tab:hover { color: var(--ink); }
.tabs__tab[aria-selected="true"] { background: var(--white); color: var(--magenta-600); box-shadow: var(--shadow-sm); }
.tabs__panel { margin-top: 18px; animation: rise .45s var(--ease); }
.tabs__panel > * + * { margin-top: 14px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 4px; list-style: none; font-weight: 600; font-size: 15px; cursor: pointer; transition: color .2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--magenta-600); }
.faq__plus { display: grid; place-items: center; width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; background: var(--soft); font-size: 11px; transition: transform .4s var(--spring), background-color .3s, color .3s; }
.faq__item[open] .faq__plus { transform: rotate(45deg); background: var(--magenta); color: var(--white); }
.faq__a { padding: 0 44px 18px 4px; color: var(--text-2); font-size: 14.5px; animation: rise .4s var(--ease); }

/* Exames do PCMSO */
.exams { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.exam { position: relative; padding: 18px 18px 18px 60px; border-radius: var(--radius); border: 1px solid var(--line); transition: border-color .3s, transform .4s var(--ease); }
.exam:hover { border-color: rgba(230, 0, 126, .35); transform: translateY(-2px); }
.exam--wide { grid-column: 1 / -1; }
.exam__n { position: absolute; left: 18px; top: 18px; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; }
.exam h4 { font-size: 15px; }
.exam p { margin-top: 4px; font-size: 14px; color: var(--text-2); }
.exam__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.exam__pills span { padding: 6px 12px; border-radius: 999px; background: var(--magenta-50); font-size: 13px; color: var(--text-2); }
.exam__pills strong { color: var(--magenta-600) !important; }

/* Fluxo SAU-01 */
.flow { position: relative; display: grid; gap: 16px; }
.flow__step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.flow__step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 48px; bottom: -16px; width: 2px; background: repeating-linear-gradient(var(--magenta-100) 0 6px, transparent 6px 12px); }
.flow__num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--magenta); color: var(--white); font-weight: 700; box-shadow: 0 0 0 6px var(--magenta-50); }
.flow__body { padding: 18px 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); }
.flow__body > h4 { font-size: 16px; }
.flow__body > p { margin-top: 6px; color: var(--text-2); font-size: 14.5px; }
.flow__body > * + * { margin-top: 12px; }
.flow__split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.flow__split--3 { grid-template-columns: 1fr; }
.flow__branch { padding: 14px; border-radius: var(--radius); background: var(--soft); font-size: 14px; color: var(--text-2); }
.flow__branch > strong { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 14px; }
.flow__branch > strong i { color: var(--magenta); }
.flow__branch--ok { background: var(--magenta-50); }
.flow__body > .flow__branch > strong { display: inline; margin: 0; }
.tag { display: inline-block; padding: 1px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.tag--apto { background: var(--ink); color: var(--white); }
.tag--inapto { background: var(--magenta); color: var(--white); }

/* Critério tricolor */
.signals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.signal { position: relative; padding: 20px 18px 18px; border-radius: var(--radius-lg); background: var(--ink); color: rgba(255, 255, 255, .72); overflow: hidden; }
.signal__light { display: block; width: 14px; height: 14px; border-radius: 50%; margin-bottom: 14px; background: var(--c); box-shadow: 0 0 0 5px color-mix(in srgb, var(--c) 25%, transparent), 0 0 22px var(--c); }
.signal--go { --c: #34a36f; }
.signal--wait { --c: #f0b429; }
.signal--stop { --c: #e5484d; }
.signal h4 { color: var(--white); font-size: 16px; }
.signal h4 small { display: block; font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, .55); letter-spacing: .02em; }
.signal p { margin-top: 8px; font-size: 14px; }

/* PPP: linha do tempo */
.timeline-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: stretch; }
.period { padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); font-size: 14px; color: var(--text-2); }
.period--now { background: var(--ink); border-color: var(--ink); color: rgba(255, 255, 255, .75); }
.period--now strong { color: var(--white) !important; }
.period__label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.period--now .period__label { color: var(--pink-light); }
.period__date { font-size: 26px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin: 4px 0 8px; }
.period--now .period__date { color: var(--white); }
.timeline-split__arrow { display: grid; place-items: center; color: var(--magenta); }

/* Prazo CAT */
.deadline { display: flex; align-items: center; gap: 20px; padding: 22px 24px; border-radius: var(--radius-lg); background: var(--magenta); color: var(--white); }
.deadline__icon { display: grid; place-items: center; width: 56px; height: 56px; flex-shrink: 0; border-radius: 16px; background: rgba(255, 255, 255, .18); font-size: 24px; }
.deadline__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.deadline__value { font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -.02em; }
.deadline__note { font-size: 14px; opacity: .9; }
.deadline strong { color: var(--white) !important; }

/* eSocial */
.events { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.event { padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s, transform .45s var(--ease); }
.event:hover { border-color: rgba(230, 0, 126, .35); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.event__code { display: inline-block; padding: 4px 10px; border-radius: 8px; background: var(--ink); color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.event h4 { margin-top: 12px; font-size: 15.5px; }
.event p { margin-top: 6px; font-size: 14px; color: var(--text-2); }
.event__due { display: flex; gap: 8px; align-items: baseline; margin-top: 12px !important; padding-top: 12px; border-top: 1px dashed var(--line); font-weight: 600; color: var(--ink) !important; }
.event__due i { color: var(--magenta); }

.copy-field { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius); background: var(--soft); }
.copy-field span { font-size: 12px; font-weight: 600; color: var(--text-3); }
.copy-field code { font-size: 15px; font-weight: 700; color: var(--ink); }

/* SESMT */
.formula { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; }
.formula__item { display: flex; flex-direction: column; gap: 4px; padding: 18px; border-radius: var(--radius-lg); background: var(--soft); font-size: 13.5px; color: var(--text-2); height: 100%; }
.formula__item i { color: var(--magenta); font-size: 18px; margin-bottom: 6px; }
.formula__item strong { color: var(--ink); font-size: 15px; }
.formula__item--result { background: var(--ink); color: rgba(255, 255, 255, .7); }
.formula__item--result strong { color: var(--white) !important; }
.formula__item--result i { color: var(--pink-light); }
.formula__op { font-size: 22px; font-weight: 700; color: var(--text-3); }

/* EPI */
.ppe { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ppe li { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 18px 8px; border-radius: var(--radius); background: var(--soft); text-align: center; font-size: 13px; font-weight: 600; transition: background-color .3s, transform .45s var(--spring); }
.ppe li i { font-size: 22px; color: var(--magenta); }
.ppe li:hover { background: var(--magenta-50); transform: translateY(-4px); }

/* Ergonomia */
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.topic { padding: 18px 20px; border-radius: var(--radius); border: 1px solid var(--line); }
.topic h4 { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 10px; }
.topic h4 i { color: var(--magenta); }
.buy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.buy__item { display: flex; flex-direction: column; gap: 12px; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.buy__item--wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; }
.buy__text > * + * { margin-top: 12px; }
.buy__media { display: grid; gap: 10px; align-content: start; }
.buy__item h4 { display: flex; align-items: center; gap: 10px; font-size: 15.5px; }
.buy__item h4 i { color: var(--magenta); }
.figure-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.figure__btn { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); cursor: zoom-in; }
.figure__btn img { width: 100%; max-height: 260px; object-fit: contain; padding: 10px; transition: transform .6s var(--ease); }
.figure__btn:hover img { transform: scale(1.04); }
.figure__zoom { position: absolute; right: 10px; bottom: 10px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 12px; opacity: 0; transform: scale(.8); transition: opacity .25s, transform .35s var(--spring); }
.figure__btn:hover .figure__zoom, .figure__btn:focus-visible .figure__zoom { opacity: 1; transform: none; }
.figure figcaption { margin-top: 6px; font-size: 12.5px; color: var(--text-3); }
.adjust { display: grid; grid-template-columns: 1fr; gap: 12px; }
.adjust__card { display: grid; grid-template-columns: 220px 1fr; gap: 18px; align-items: start; padding: 20px; border-radius: var(--radius-lg); background: var(--soft); }
.adjust__card h4 { font-size: 16px; margin-bottom: 12px; }
.adjust__card .figure__btn { border: 0; }
.adjust__card .step__text { font-size: 14px; }

/* Norma NR 15 */
.norm { padding: 22px 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); font-size: 14px; color: var(--text-2); }
.norm__title { font-weight: 700; color: var(--ink); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.norm__sub { margin: 4px 0 12px; font-size: 13px; color: var(--text-3); }
.norm ul { margin-top: 8px; display: grid; gap: 6px; }
.norm li { position: relative; padding-left: 16px; }
.norm li::before { content: "–"; position: absolute; left: 0; color: var(--text-3); }

/* CTA comercial no conteúdo */
.cta-inline { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 20px 22px; border-radius: var(--radius-lg); background: var(--ink); color: rgba(255, 255, 255, .72); font-size: 14px; }
.cta-inline__title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.cta-inline__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cta-inline .btn--line { background: transparent; border-color: rgba(255, 255, 255, .25); color: var(--white); }
.cta-inline .btn--line:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* Paginação entre temas */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.pager__link { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); transition: border-color .3s, box-shadow .3s, transform .45s var(--ease); }
.pager__link span { font-size: 12px; font-weight: 600; color: var(--text-3); display: flex; align-items: center; gap: 6px; }
.pager__link strong { font-size: 16px; }
.pager__link--next { text-align: right; align-items: flex-end; }
.pager__link:hover { border-color: rgba(230, 0, 126, .35); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pager__link:hover strong { color: var(--magenta-600); }

/* =========================================================
   CTA FINAL E RODAPÉ
   ========================================================= */
.cta-band { position: relative; overflow: hidden; background: var(--ink); color: var(--white); padding-block: clamp(56px, 7vw, 88px); isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% auto; z-index: -1; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(closest-side, rgba(230, 0, 126, .35), transparent); filter: blur(10px); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(22px, 2.4vw, 30px); max-width: 22ch; }
.cta-band p:not(.eyebrow) { margin-top: 8px; color: rgba(255, 255, 255, .65); max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.footer { background: var(--white); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; padding-block: 48px 32px; font-size: 14px; }
.footer__brand img { width: 140px; margin-bottom: 14px; }
.footer__brand p { color: var(--text-2); line-height: 1.6; }
.footer__brand p + p { margin-top: 8px; }
.footer__title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }
.footer nav li + li { margin-top: 8px; }
.footer nav a { color: var(--text-2); font-weight: 500; transition: color .2s; }
.footer nav a:hover { color: var(--magenta-600); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 20px 32px; background: linear-gradient(var(--line), var(--line)) no-repeat top center / calc(100% - var(--gutter) * 2) 1px; font-size: 13px; color: var(--text-3); }
.footer__top { font-weight: 600; color: var(--text-2); }
.footer__top:hover { color: var(--magenta-600); }
.footer__top i { font-size: 11px; margin-left: 4px; }

.to-top { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 40; display: grid; place-items: center; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: var(--white); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none; transition: opacity .3s, transform .4s var(--spring), background-color .2s; }
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--magenta); }

/* =========================================================
   BUSCA (PALETA), LIGHTBOX, TOAST
   ========================================================= */
.palette { width: min(640px, calc(100% - 32px)); max-height: min(560px, calc(100svh - 80px)); margin: clamp(40px, 12vh, 120px) auto auto; padding: 0; border: 0; border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); overflow: hidden; }
.palette::backdrop { background: rgba(14, 14, 16, .55); backdrop-filter: blur(6px); }
.palette[open] { animation: pop .35s var(--spring); }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.97); } }
.palette__box { display: flex; flex-direction: column; max-height: inherit; }
.palette__field { display: flex; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); }
.palette__field > i { color: var(--magenta); }
.palette__field input { flex: 1; height: 58px; border: 0; outline: 0; background: none; font-size: 16px; }
.palette__field input::placeholder { color: var(--text-3); }
.palette__field input::-webkit-search-cancel-button { display: none; }
.palette__list { flex: 1; overflow: auto; padding: 8px; }
.palette__group { padding: 10px 12px 4px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.palette__item a { display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 9px 12px; border-radius: var(--radius); }
.palette__item .pi { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--soft); color: var(--magenta); font-size: 14px; }
.palette__item strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.palette__item small { display: block; font-size: 12px; color: var(--text-3); }
.palette__item .go { color: var(--text-3); font-size: 11px; opacity: 0; }
.palette__item[aria-selected="true"] a { background: var(--magenta-50); }
.palette__item[aria-selected="true"] .pi { background: var(--magenta); color: var(--white); }
.palette__item[aria-selected="true"] .go { opacity: 1; color: var(--magenta); }
.palette__empty { padding: 28px 16px; text-align: center; color: var(--text-2); font-size: 14px; }
.palette__empty i { display: block; font-size: 22px; color: var(--magenta); margin-bottom: 8px; }
.palette__hint { display: flex; gap: 16px; padding: 10px 18px; border-top: 1px solid var(--line); font-size: 12px; color: var(--text-3); }
.palette__hint kbd { margin-right: 2px; }

.lightbox { max-width: min(960px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 16px; border: 0; border-radius: var(--radius-lg); background: var(--white); }
.lightbox::backdrop { background: rgba(14, 14, 16, .8); backdrop-filter: blur(6px); }
.lightbox[open] { animation: pop .35s var(--spring); }
.lightbox img { max-height: calc(100svh - 140px); width: auto; margin-inline: auto; object-fit: contain; }
.lightbox figcaption { margin-top: 10px; text-align: center; font-size: 14px; color: var(--text-2); }
.lightbox__close { position: absolute; top: 12px; right: 12px; z-index: 2; }

.toast { position: fixed; left: 50%; bottom: 28px; z-index: 90; display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: 14px; font-weight: 600; box-shadow: var(--shadow); opacity: 0; transform: translate(-50%, 16px); pointer-events: none; transition: opacity .3s, transform .4s var(--spring); }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.toast i { color: var(--pink-light); }

/* =========================================================
   404
   ========================================================= */
.notfound { position: relative; isolation: isolate; min-height: 100svh; display: flex; overflow: hidden; background: var(--ink); color: var(--white); }
.notfound__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 70% 30%; opacity: .5; }
.notfound::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14, 14, 16, .95), rgba(14, 14, 16, .7) 60%, rgba(14, 14, 16, .4)); }
.notfound__inner { display: flex; flex-direction: column; justify-content: space-between; padding-block: 28px 64px; }
.notfound__inner > a img { width: 150px; }
.notfound__body { max-width: 560px; }
.notfound__code { font-size: clamp(90px, 16vw, 180px); font-weight: 800; line-height: .9; letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 2px var(--magenta); animation: rise 1s var(--ease) both; }
.notfound h1 { margin-top: 12px; font-size: clamp(26px, 3vw, 36px); }
.notfound__body > p:not(.notfound__code) { margin-top: 12px; color: rgba(255, 255, 255, .75); }
.notfound__redirect { font-size: 13px; }

/* =========================================================
   REVELAÇÃO AO ROLAR
   ========================================================= */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--d, 0s) var(--ease), transform .8s var(--d, 0s) var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (min-width: 1081px) {
  .btn--icon-only[data-open-search] { width: auto; padding-inline: 12px; }
  .btn--icon-only[data-open-search] .kbd-hint { display: inline; font-size: 11px; opacity: .7; }
}
@media (max-width: 1080px) {
  .sitenav, .hide-sm, .catnav__cta { display: none; }
  .menu-btn { display: grid; }
  .catnav__search span, .catnav__search kbd { display: none; }
  .catnav__search { width: 36px; padding: 0; justify-content: center; }
  .doc__grid { grid-template-columns: 1fr; gap: 0; }
  .toc { position: sticky; top: var(--nav-h); z-index: 30; margin: 0 calc(var(--gutter) * -1) 32px; padding: 10px var(--gutter); background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
  .catnav:not(.is-visible) ~ main .toc { top: 0; }
  .toc__box summary { padding: 6px 0; cursor: pointer; }
  .toc__chev { display: block; transition: transform .3s var(--ease); }
  .toc__box[open] .toc__chev { transform: rotate(180deg); }
  .toc__box ol { max-height: 50svh; overflow: auto; margin: 8px 0 6px; }
  .toc__help { display: none; }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .topic-card--feature { grid-column: 1 / -1; grid-row: auto; }
  .topic-card--feature .topic-card__media { aspect-ratio: 16 / 8; flex: none; min-height: 0; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .flow__split--3 { grid-template-columns: 1fr; }
  .ppe { grid-template-columns: repeat(3, 1fr); }
  .buy__item--wide { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section-head { flex-direction: column; align-items: stretch; }
  .searchbar { width: 100%; }
  .info-cards, .info-cards--3, .exams, .events, .signals, .topic-grid, .buy, .adjust, .contact-grid--inline, .flow__split { grid-template-columns: 1fr; }
  .timeline-split { grid-template-columns: 1fr; }
  .timeline-split__arrow { transform: rotate(90deg); }
  .formula { grid-template-columns: 1fr; }
  .formula__op { text-align: center; }
  .manual { grid-template-columns: auto 1fr; }
  .manual__actions { grid-column: 1 / -1; }
  .manual__actions .btn { flex: 1; }
  .adjust__card { grid-template-columns: 1fr; }
  .adjust__card .figure__btn img { max-height: 200px; }
  .pager { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { min-height: 600px; }
  .hero--page { min-height: 540px; }
  .hero__bg { object-position: 72% 35%; }
  .hero::before { background: linear-gradient(0deg, rgba(14, 14, 16, .96) 0%, rgba(14, 14, 16, .75) 55%, rgba(14, 14, 16, .35) 100%); }
  .hero__text { font-size: 15px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .topics, .facts, .contact-grid, .footer__grid { grid-template-columns: 1fr; }
  .ppe { grid-template-columns: repeat(2, 1fr); }
  .doc-section__head { grid-template-columns: 1fr; gap: 14px; }
  .doc-section__icon { width: 42px; height: 42px; font-size: 17px; }
  .flow__step { grid-template-columns: 1fr; }
  .flow__step::before { display: none; }
  .flow__num { width: 36px; height: 36px; }
  .deadline { flex-direction: column; align-items: flex-start; }
  .cta-inline__actions .btn, .cta-band__actions .btn { flex: 1 1 100%; }
  .tabs__list { border-radius: var(--radius); }
  .palette { margin-top: 16px; max-height: calc(100svh - 32px); }
  .palette__hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media print {
  .hero, .catnav, .toc, .cta-band, .footer, .to-top, .progress, .pager, .anchor, .cta-inline, .skip-link { display: none !important; }
  .doc__grid { display: block; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  body { font-size: 12px; }
  .doc-section { break-inside: avoid-page; }
}

/* =========================================================
   SITE CORPORATIVO — camadas adicionais ao design system
   ========================================================= */
@view-transition { navigation: auto; }
:root { --nav-h: 72px; --subnav-h: 52px; --nav-offset: var(--nav-h); }
html.nav-hidden { --nav-offset: 0px; }
html { scroll-padding-top: calc(var(--nav-h) + var(--subnav-h) + 16px); }
.hl { font-style: normal; color: var(--magenta); }
.section--dark .hl, .guide-banner .hl { color: var(--pink-light); }
.lead { margin-top: 12px; font-size: 16px; line-height: 1.65; color: var(--text-2); }
.section--dark .lead { color: rgba(255, 255, 255, .7); }
.badge { display: inline-flex; align-items: center; gap: 6px; height: 26px; padding-inline: 10px; border-radius: 999px; background: var(--magenta); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; vertical-align: middle; }
.badge i { font-size: 10px; }
.badge--soft { background: var(--magenta-50); color: var(--magenta-600); }
.link--light { color: var(--pink-light); }
.section-head > div { min-width: 0; }
.section-head .btn { flex-shrink: 0; }

/* ---------- Navegação principal ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 60; height: var(--nav-h); color: var(--white); transition: background-color .35s, color .35s, box-shadow .35s, transform .45s var(--ease), border-color .35s; border-bottom: 1px solid transparent; }
.nav.is-solid, .nav.is-open { background: rgba(255, 255, 255, .88); color: var(--ink); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom-color: rgba(20, 20, 22, .06); box-shadow: 0 10px 30px -24px rgba(20, 20, 22, .4); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.nav__brand { position: relative; flex-shrink: 0; display: block; width: 140px; height: 32px; }
.nav__logo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left center; transition: opacity .35s; }
.nav__logo--dark { opacity: 0; }
.nav.is-solid .nav__logo--dark, .nav.is-open .nav__logo--dark { opacity: 1; }
.nav.is-solid .nav__logo--light, .nav.is-open .nav__logo--light { opacity: 0; }
.nav__menu { margin-inline: auto; }
.nav__menu > ul { display: flex; align-items: center; gap: 2px; }
.nav__link { position: relative; display: inline-flex; align-items: center; gap: 6px; height: 40px; padding-inline: 13px; border: 0; background: none; font-size: 14px; font-weight: 600; color: inherit; opacity: .82; transition: opacity .2s, color .2s; }
.nav__link i { font-size: 10px; transition: transform .3s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__link:hover, .nav__link[aria-current="page"], .nav__link[data-current], .nav__has-mega.is-open .nav__link { opacity: 1; }
.nav__link:hover::after, .nav__link[aria-current="page"]::after, .nav__link[data-current]::after { transform: scaleX(1); }
.nav__has-mega { position: relative; }
.nav__has-mega.is-open .nav__trigger i { transform: rotate(180deg); }
.nav__tools { display: flex; align-items: center; gap: 8px; }
.nav__icon { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 40px; min-width: 40px; padding-inline: 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .08); color: inherit; font-size: 14px; transition: background-color .2s, border-color .2s, color .2s; }
.nav__icon kbd { background: transparent; border-color: rgba(255, 255, 255, .3); color: inherit; opacity: .75; }
.nav__icon:hover { border-color: var(--magenta); }
.nav.is-solid .nav__icon, .nav.is-open .nav__icon { border-color: var(--line); background: var(--white); }
.nav.is-solid .nav__icon kbd, .nav.is-open .nav__icon kbd { border-color: var(--line); color: var(--text-3); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 0; width: 40px; }
.nav__burger span { display: block; width: 16px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease); }
.nav__burger span:last-child { width: 10px; margin-left: 6px; }
.nav__burger:hover span:last-child { transform: translateX(-3px); width: 16px; }

/* Mega menu */
.mega { position: absolute; top: calc(100% + 10px); left: 50%; width: 600px; padding: 10px; border-radius: var(--radius-lg); background: var(--white); color: var(--ink); box-shadow: 0 30px 60px -24px rgba(20, 20, 22, .35), 0 0 0 1px rgba(20, 20, 22, .05); opacity: 0; visibility: hidden; transform: translate(-50%, 8px); transition: opacity .25s, transform .35s var(--ease), visibility 0s .35s; }
.mega::before { content: ""; position: absolute; inset: -14px 0 auto; height: 14px; }
.nav__has-mega.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition: opacity .25s, transform .35s var(--ease), visibility 0s; }
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega__item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: center; padding: 12px; border-radius: var(--radius); transition: background-color .2s; }
.mega__item:hover { background: var(--soft); }
.mega__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); font-size: 15px; transition: background-color .25s, color .25s, transform .4s var(--spring); }
.mega__item:hover .mega__icon { background: var(--magenta); color: var(--white); transform: rotate(-6deg); }
.mega__item strong { display: block; font-size: 14px; line-height: 1.3; }
.mega__item small { display: block; margin-top: 2px; font-size: 12.5px; line-height: 1.4; color: var(--text-3); }
.mega__foot { display: flex; align-items: center; gap: 8px; margin-top: 6px; padding: 12px 14px; border-radius: var(--radius); background: var(--soft); font-size: 13px; font-weight: 600; color: var(--text-2); }
.mega__foot i { color: var(--magenta); }
.mega__foot i:last-child { margin-left: auto; transition: transform .3s var(--ease); }
.mega__foot:hover { color: var(--magenta-600); }
.mega__foot:hover i:last-child { transform: translateX(4px); }

/* Menu mobile */
.drawer__main { justify-content: space-between; font-size: 17px; color: var(--ink) !important; }
.drawer__main i { color: var(--text-3) !important; font-size: 13px; }
.drawer__sub { margin: 0 0 8px 12px; padding-left: 10px; border-left: 1px solid var(--line); }
.drawer__sub li a { padding-block: 8px; font-size: 13.5px; }
.drawer__tel { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 6px; font-size: 14px; font-weight: 600; color: var(--text-2); }
.drawer__tel i { color: var(--magenta); }

/* ---------- Hero ---------- */
.hero__inner { justify-content: flex-end; padding-top: calc(var(--nav-h) + 32px); }
.hero--home { min-height: clamp(620px, 100svh, 900px); }
.hero--home .hero__body { max-width: 640px; }
.hero--home .hero__title { font-size: clamp(32px, 4.6vw, 56px); line-height: 1.06; }
.hero--home .hero__text { font-size: 17px; }
.hero--home::before { background: linear-gradient(90deg, rgba(14, 14, 16, .92) 0%, rgba(14, 14, 16, .72) max(30%, calc(50% - 240px)), rgba(14, 14, 16, .12) 78%, rgba(14, 14, 16, 0) 100%), linear-gradient(180deg, rgba(14, 14, 16, .55) 0%, rgba(14, 14, 16, 0) 22%, rgba(14, 14, 16, 0) 62%, rgba(14, 14, 16, .8) 100%); }
.hero--post { min-height: clamp(440px, 58svh, 540px); }
.hero--post .hero__title { font-size: clamp(26px, 3vw, 38px); }
.hero--post .hero__body { max-width: 720px; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 0 rgba(230, 0, 126, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(230, 0, 126, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 0, 126, 0); } }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 8px; border-top: 1px solid rgba(255, 255, 255, .16); }
.hero-stats li { display: flex; flex-direction: column; gap: 2px; padding: 20px 20px 0 0; }
.hero-stats li + li { padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .12); }
.hero-stats strong { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.hero-stats li > span { font-size: 13px; color: rgba(255, 255, 255, .65); }
.tag-pill { display: inline-flex; align-items: center; height: 24px; padding-inline: 10px; border-radius: 999px; background: var(--magenta-50); color: var(--magenta-600); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.tag-pill--light { background: var(--magenta); color: var(--white); }

/* ---------- Sub-navegação ---------- */
.subnav { position: sticky; top: var(--nav-offset); z-index: 50; height: var(--subnav-h); background: rgba(255, 255, 255, .9); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line); transition: top .45s var(--ease), box-shadow .3s; }
.subnav.is-stuck { box-shadow: 0 10px 30px -24px rgba(20, 20, 22, .4); }
.subnav__inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.subnav__tabs { display: flex; gap: 2px; min-width: 0; overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent); padding-right: 24px; }
.subnav__tabs::-webkit-scrollbar { display: none; }
.subnav__tabs a { display: flex; align-items: center; gap: 6px; height: 34px; padding-inline: 12px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text-2); white-space: nowrap; transition: color .2s, background-color .2s; }
.subnav__tabs a i { font-size: 12px; }
.subnav__tabs a span { display: grid; place-items: center; min-width: 20px; height: 20px; padding-inline: 5px; border-radius: 999px; background: var(--soft); font-size: 11px; color: var(--text-3); }
.subnav__tabs a:hover { color: var(--ink); background: var(--soft); }
.subnav__tabs a.is-active { color: var(--magenta-600); background: var(--magenta-50); }
.subnav__tabs a.is-active span { background: var(--white); color: var(--magenta-600); }
.subnav__search { display: flex; align-items: center; gap: 8px; height: 36px; margin-left: auto; padding-inline: 14px; border-radius: 999px; border: 1px solid transparent; background: var(--soft); color: var(--text-2); font-size: 13px; font-weight: 600; flex-shrink: 0; transition: border-color .2s, background-color .2s; }
.subnav__search:hover { border-color: var(--magenta); background: var(--white); }
.toc { top: calc(var(--nav-offset) + var(--subnav-h) + 24px); transition: top .45s var(--ease); }

/* ---------- Faixa de soluções em movimento ---------- */
.marquee { overflow: hidden; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255, 255, 255, .08); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee li { display: flex; align-items: center; gap: 28px; padding: 18px 0 18px 28px; font-size: 14px; font-weight: 600; letter-spacing: .02em; white-space: nowrap; color: rgba(255, 255, 255, .78); }
.marquee li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--magenta); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Texto + imagem ---------- */
.split-media { display: grid; grid-template-columns: 1fr 1fr; gap: 40px clamp(40px, 6vw, 80px); align-items: center; }
.split-media--reverse .split-media__img { order: 2; }
.split-media__text h2 { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; }
.split-media__text > .btn, .split-media__text > .checklist, .split-media__text > .feature-list, .split-media__text > .kpi-row, .split-media__text > .mini-cards, .split-media__text > .roles, .split-media__text > .diff-grid, .split-media__text > .hero__actions, .split-media__text > .sla { margin-top: 24px; }
.split-media__img { position: relative; }
.split-media__text > p:not(.eyebrow):not(.lead) { margin-top: 12px; color: var(--text-2); }
.split-media__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }
.split-media__img--portrait img { aspect-ratio: 4 / 4.4; object-position: 50% 25%; }
.split-media__img--dark img { background: var(--ink); }
.float-badge { position: absolute; left: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px; max-width: calc(100% - 40px); padding: 12px 16px; border-radius: var(--radius); background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow); font-size: 12.5px; line-height: 1.35; color: var(--text-2); animation: floaty 6s ease-in-out infinite; }
.float-badge > i { display: grid; place-items: center; width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--magenta); color: var(--white); font-size: 14px; }
.float-badge strong { display: block; font-size: 13.5px; color: var(--ink); }
@keyframes floaty { 50% { transform: translateY(-6px); } }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.feature-list li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.feature-list li > i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: var(--magenta-50); color: var(--magenta); font-size: 15px; }
.feature-list strong { display: block; font-size: 14.5px; line-height: 1.35; }
.feature-list span { display: block; margin-top: 2px; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.feature-list--compact { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.feature-list--compact li { align-items: center; }

.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.diff-grid li { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: var(--radius-lg); background: var(--soft); transition: background-color .3s, box-shadow .3s, transform .45s var(--ease); }
.diff-grid li:hover { background: var(--white); box-shadow: 0 0 0 1px var(--line), var(--shadow); transform: translateY(-3px); }
.diff-grid li > i { font-size: 20px; color: var(--magenta); margin-bottom: 8px; }
.diff-grid strong { font-size: 15px; line-height: 1.3; }
.diff-grid span { font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.diff-grid--compact li { flex-direction: row; align-items: center; gap: 12px; padding: 14px 16px; }
.diff-grid--compact li > i { margin: 0; font-size: 16px; width: 20px; text-align: center; }
.diff-grid--compact strong { font-size: 14px; }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-cards div { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius); background: var(--soft); font-size: 14px; font-weight: 600; }
.mini-cards i { color: var(--magenta); width: 18px; text-align: center; }
.kpi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kpi-row > div { padding-left: 16px; border-left: 2px solid var(--magenta); }
.kpi-row strong { display: block; font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--ink); font-variant-numeric: tabular-nums; }
.kpi-row span { font-size: 13px; color: var(--text-2); }
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.roles li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--radius); background: var(--white); font-size: 14px; font-weight: 600; }
.roles i { display: grid; place-items: center; width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); font-size: 10px; }
.sla { display: flex; gap: 18px; align-items: center; padding: 20px 22px; border-radius: var(--radius-lg); background: var(--ink); color: rgba(255, 255, 255, .7); font-size: 13.5px; }
.sla__num { font-size: 52px; font-weight: 800; letter-spacing: -.05em; line-height: 1; color: var(--magenta); }
.sla strong { display: block; margin-bottom: 4px; font-size: 15px; color: var(--white); }

/* ---------- Bento de soluções ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 16px; }
.bento__item--tall { grid-column: span 2; grid-row: span 2; }
.bento__item--wide { grid-column: span 2; }
.bento__item a { position: relative; isolation: isolate; display: flex; align-items: flex-end; height: 100%; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); transition: box-shadow .4s var(--ease), transform .5s var(--ease); }
.bento__item img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bento__item a::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14, 14, 16, .05) 20%, rgba(14, 14, 16, .88) 100%); transition: background-color .4s; }
.bento__item a::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(230, 0, 126, .28), transparent 60%); opacity: 0; transition: opacity .4s; }
.bento__item a:hover { box-shadow: var(--shadow); }
.bento__item a:hover img { transform: scale(1.06); }
.bento__item a:hover::after { opacity: 1; }
.bento__body { display: flex; flex-direction: column; gap: 4px; padding: 22px; max-width: 460px; }
.bento__icon { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 10px; border-radius: 12px; background: rgba(255, 255, 255, .14); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); font-size: 16px; transition: background-color .3s, transform .45s var(--spring); }
.bento__item a:hover .bento__icon { background: var(--magenta); transform: rotate(-6deg); }
.bento__body strong { font-size: 18px; letter-spacing: -.01em; }
.bento__item--tall .bento__body strong { font-size: 24px; }
.bento__body > span:last-child { font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, .75); }
.bento__go { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--white); color: var(--ink); font-size: 12px; transform: scale(.8) rotate(-45deg); opacity: 0; transition: opacity .3s, transform .45s var(--spring), background-color .3s; }
.bento__item a:hover .bento__go { opacity: 1; transform: none; background: var(--magenta); color: var(--white); }

/* ---------- Números ---------- */
.numbers { position: relative; isolation: isolate; overflow: hidden; }
.numbers__map { position: absolute; top: 50%; right: -8%; z-index: -1; width: min(760px, 70%); transform: translateY(-50%); opacity: .45; -webkit-mask-image: radial-gradient(closest-side, #000 60%, transparent); mask-image: radial-gradient(closest-side, #000 60%, transparent); }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255, 255, 255, .14); }
.stat { display: flex; flex-direction: column; gap: 6px; padding: 28px 20px 0 0; }
.stat + .stat { padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .1); }
.stat strong { white-space: nowrap; font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat strong span, .hero-stats strong span { font-size: inherit; color: inherit; }
.stat > span { font-size: 13.5px; color: rgba(255, 255, 255, .62); }
.coverage { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 48px; margin-top: 48px; padding: 22px 26px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.coverage > div { display: flex; align-items: baseline; gap: 10px; }
.coverage strong { font-size: 26px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.coverage span { font-size: 13.5px; color: rgba(255, 255, 255, .65); }
.coverage .btn { margin-left: auto; }

/* ---------- Abas de tecnologia ---------- */
.tech-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-top: 20px; padding: clamp(20px, 3vw, 36px); border-radius: 24px; border: 1px solid var(--line); background: var(--white); }
.tech-panel__text > * + * { margin-top: 14px; }
.tech-panel h3 { font-size: 26px; letter-spacing: -.03em; }
.tech-panel p { color: var(--text-2); }
.tech-panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); }

/* ---------- Reconhecimentos ---------- */
.awards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.award { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 26px 22px; border-radius: var(--radius-lg); background: var(--white); transition: transform .45s var(--ease), box-shadow .4s; }
.award:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.award > i { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); font-size: 19px; transition: transform .6s var(--spring); }
.award:hover > i { transform: rotate(-12deg) scale(1.08); }
.award strong { font-size: 16px; line-height: 1.3; }
.award span { font-size: 13.5px; color: var(--text-2); }
.awards--dark { margin-top: 40px; }
.awards--dark .award { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.awards--dark .award > i { background: rgba(230, 0, 126, .18); color: var(--pink-light); }
.awards--dark .award span { color: rgba(255, 255, 255, .62); }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card a { display: flex; flex-direction: column; height: 100%; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: border-color .3s, box-shadow .4s var(--ease), transform .5s var(--ease); }
.post-card a:hover { border-color: rgba(230, 0, 126, .3); box-shadow: var(--shadow); }
.post-card__media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card a:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { display: flex; flex-direction: column; flex: 1; gap: 8px; padding: 20px; }
.post-card__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-3); }
.post-card__meta i { margin-right: 4px; }
.post-card__title { font-size: 16.5px; line-height: 1.35; letter-spacing: -.01em; transition: color .2s; }
.post-card a:hover .post-card__title { color: var(--magenta-600); }
.post-card__excerpt { flex: 1; font-size: 14px; line-height: 1.55; color: var(--text-2); }
.post-card__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--magenta-600); }
.post-card__go i { font-size: 11px; transition: transform .3s var(--ease); }
.post-card a:hover .post-card__go i { transform: translateX(4px); }
.post-card--featured { grid-column: 1 / -1; }
.post-card--featured a { display: grid; grid-template-columns: 1.2fr 1fr; }
.post-card--featured .post-card__media { aspect-ratio: auto; min-height: 320px; }
.post-card--featured .post-card__body { justify-content: center; padding: clamp(24px, 4vw, 44px); gap: 12px; }
.post-card--featured .post-card__title { font-size: clamp(20px, 2.2vw, 26px); }
.post-card--featured .post-card__excerpt { flex: none; font-size: 15px; }
.post-grid.is-filtered .post-card--featured { grid-column: auto; }
.post-grid.is-filtered .post-card--featured a { display: flex; }
.post-grid.is-filtered .post-card--featured .post-card__media { aspect-ratio: 16 / 10; min-height: 0; }
.post-grid.is-filtered .post-card--featured .post-card__body { padding: 20px; justify-content: flex-start; }
.post-grid.is-filtered .post-card--featured .post-card__title { font-size: 16.5px; }
.blog-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.blog-toolbar .chips { margin: 0; }
.blog-search { display: flex; align-items: center; gap: 10px; height: 44px; padding-inline: 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); color: var(--text-3); transition: border-color .2s, box-shadow .2s; }
.blog-search:focus-within { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(230, 0, 126, .1); }
.blog-search input { width: 220px; border: 0; outline: 0; background: none; font-size: 14px; color: var(--ink); }
.empty { padding: 48px 16px; text-align: center; color: var(--text-2); }
.empty i { color: var(--magenta); margin-right: 6px; }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.chip.is-active:hover { color: var(--white); background: var(--ink); }
.chip span { margin-left: 6px; font-size: 11px; opacity: .6; }
button.chip { background: var(--white); }
.chips--filter { margin-bottom: 24px; }

/* Artigo */
.post { padding-top: clamp(40px, 5vw, 64px); }
.post__grid { display: grid; grid-template-columns: 56px minmax(0, 720px); justify-content: center; gap: clamp(24px, 5vw, 64px); }
.post__share { position: sticky; top: calc(var(--nav-offset) + 32px); align-self: start; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: top .45s var(--ease); }
.post__share p { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.post__share .icon-btn:hover { background: var(--magenta); border-color: var(--magenta); }
.prose { font-size: 16px; line-height: 1.75; color: #3d3d46; }
.prose > * + * { margin-top: 18px; }
.prose h2 { margin-top: 44px; font-size: clamp(20px, 2vw, 24px); color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose strong { color: var(--ink); }
.prose .list li, .prose .checklist li { font-size: 15.5px; }
.post__guide { display: flex; align-items: center; gap: 16px; margin-top: 44px !important; padding: 20px 22px; border-radius: var(--radius-lg); background: var(--magenta-50); }
.post__guide > i { display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--magenta); color: var(--white); }
.post__guide p { font-size: 13px; color: var(--text-2); line-height: 1.3; }
.post__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post__tags li { padding: 4px 12px; border-radius: 999px; background: var(--soft); font-size: 12.5px; font-weight: 600; color: var(--text-2); }

/* ---------- Guia (banner) ---------- */
.guide-banner { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px 56px; align-items: center; padding: clamp(28px, 5vw, 56px); border-radius: 24px; background: var(--ink); color: var(--white); }
.guide-banner::before { content: ""; position: absolute; right: -120px; top: -160px; z-index: -1; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(closest-side, rgba(230, 0, 126, .45), transparent); }
.guide-banner h2 { font-size: clamp(24px, 2.8vw, 34px); }
.guide-banner p:not(.eyebrow) { margin-top: 10px; color: rgba(255, 255, 255, .7); max-width: 48ch; }
.guide-banner__list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.guide-banner__list a { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); font-size: 14px; font-weight: 600; transition: background-color .25s, border-color .25s, transform .4s var(--spring); }
.guide-banner__list a i { color: var(--pink-light); width: 18px; text-align: center; }
.guide-banner__list a:hover { background: var(--magenta); border-color: var(--magenta); transform: translateY(-2px); }
.guide-banner__list a:hover i { color: var(--white); }
.guide-banner--img { grid-template-columns: 1fr; min-height: 360px; background-color: var(--ink); background-position: center; background-size: cover; }
.guide-banner--img::before { inset: 0; width: auto; height: auto; border-radius: 0; background: linear-gradient(90deg, rgba(14, 14, 16, .94), rgba(14, 14, 16, .7) 55%, rgba(14, 14, 16, .2)); }

/* ---------- Sobre ---------- */
.team-strip { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; margin-bottom: 16px; }
.team-strip img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; border-radius: var(--radius-lg); }
.team-strip ul { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-strip li { display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; border-radius: var(--radius-lg); background: var(--soft); }
.team-strip li:first-child { background: var(--magenta); color: var(--white); }
.team-strip li:first-child span { color: rgba(255, 255, 255, .85); }
.team-strip strong { font-size: clamp(34px, 4vw, 48px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.team-strip span { font-size: 14px; font-weight: 600; color: var(--text-2); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card-img { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: box-shadow .4s, transform .5s var(--ease); }
.card-img:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.card-img > div { padding: 20px; }
.card-img h3 { font-size: 16px; }
.card-img p { margin-top: 6px; font-size: 14px; color: var(--text-2); }
.card-img .link { display: inline-flex; gap: 6px; align-items: center; margin-top: 10px; font-size: 13.5px; }

/* ---------- Soluções ---------- */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sol a { position: relative; display: flex; flex-direction: column; height: 100%; padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); overflow: hidden; transition: border-color .3s, box-shadow .4s var(--ease), transform .5s var(--ease); }
.sol a::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--magenta); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.sol a:hover { border-color: rgba(230, 0, 126, .3); box-shadow: var(--shadow); transform: translateY(-4px); }
.sol a:hover::before { transform: scaleX(1); }
.sol__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.sol__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--magenta-50); color: var(--magenta); font-size: 18px; transition: background-color .3s, color .3s, transform .45s var(--spring); }
.sol a:hover .sol__icon { background: var(--magenta); color: var(--white); transform: rotate(-6deg); }
.sol__cat { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.sol strong { margin-top: 18px; font-size: 18px; letter-spacing: -.01em; }
.sol__text { flex: 1; margin-top: 6px; font-size: 14px; line-height: 1.55; color: var(--text-2); }
.sol__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--magenta-600); }
.sol__go i { font-size: 11px; transition: transform .3s var(--ease); }
.sol a:hover .sol__go i { transform: translateX(4px); }
.sol[hidden] { display: none; }

.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; counter-reset: p; }
.process__step { position: relative; display: flex; flex-direction: column; padding: 22px 20px; border-radius: var(--radius-lg); background: var(--white); }
.process__step:not(:last-child)::after { content: ""; position: absolute; top: 44px; right: -12px; width: 12px; height: 2px; background: var(--magenta-100); }
.process__num { position: absolute; top: 18px; right: 20px; font-size: 13px; font-weight: 700; color: var(--text-3); font-variant-numeric: tabular-nums; }
.process__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--ink); color: var(--white); font-size: 17px; transition: background-color .3s, transform .45s var(--spring); }
.process__step:hover .process__icon { background: var(--magenta); transform: translateY(-3px) rotate(-6deg); }
.process__step strong { margin-top: 18px; font-size: 15px; line-height: 1.3; }
.process__step p { flex: 1; margin-top: 6px; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.process__step .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; }

/* ---------- Tecnologia: cartões empilhados ---------- */
.stack { display: grid; gap: 24px; }
.stack__card { position: sticky; top: calc(var(--nav-offset) + var(--subnav-h) + 20px + var(--i) * 14px); display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; padding: clamp(24px, 4vw, 44px); border-radius: 28px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 30px 60px -40px rgba(20, 20, 22, .35); transform-origin: 50% 0; transform: scale(calc(1 - var(--k, 0) * .05)); transition: top .45s var(--ease); scroll-margin-top: calc(var(--nav-h) + var(--subnav-h) + 20px); }
.stack__card:nth-child(even) { background: var(--ink); border-color: var(--ink); color: var(--white); }
.stack__card:nth-child(even) p:not(.stack__tag):not(.stack__title), .stack__card:nth-child(even) .stack__feats span { color: rgba(255, 255, 255, .66); }
.stack__card:nth-child(even) .stack__feats li > i { background: rgba(230, 0, 126, .18); color: var(--pink-light); }
.stack__tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--magenta); }
.stack__card h2 { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 8px; font-size: clamp(30px, 3.6vw, 44px); letter-spacing: -.04em; }
.stack__title { margin-top: 8px; font-size: 17px; font-weight: 700; }
.stack__text > p:not(.stack__tag):not(.stack__title) { margin-top: 10px; color: var(--text-2); }
.stack__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.stack__feats li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.stack__feats li > i { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--magenta-50); color: var(--magenta); font-size: 14px; }
.stack__feats strong { display: block; font-size: 14px; }
.stack__feats span { display: block; font-size: 13px; line-height: 1.45; color: var(--text-2); }
.stack__media { position: relative; }
.stack__media .shot { width: 100%; }
.stack__big { position: absolute; left: -16px; bottom: 24px; padding: 16px 20px; border-radius: var(--radius-lg); background: var(--magenta); color: var(--white); box-shadow: 0 20px 40px -18px rgba(230, 0, 126, .6); animation: floaty 6s ease-in-out infinite; }
.stack__big strong { display: block; font-size: 38px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.stack__big span { font-size: 13px; font-weight: 600; }

/* ---------- Serviços especializados ---------- */
.facts-inline { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.facts-inline li { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding-inline: 12px; border-radius: 999px; background: var(--soft); font-size: 13px; font-weight: 600; color: var(--text-2); }
.facts-inline i { color: var(--magenta); }
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 72px; align-items: center; margin-bottom: 40px; }
.intro__text h2 { font-size: clamp(24px, 2.6vw, 34px); }
.intro__text > p:not(.eyebrow) { margin-top: 10px; color: var(--text-2); }
.section--dark .intro__text > p:not(.eyebrow) { color: rgba(255, 255, 255, .7); }
.intro__text .link { display: inline-flex; gap: 8px; align-items: center; margin-top: 16px; }
.intro__media { overflow: hidden; border-radius: var(--radius-lg); }
.intro__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 1.2s var(--ease); }
.intro__media:hover img { transform: scale(1.04); }
.intro--reverse .intro__media { order: -1; }
.items { display: grid; }
.item { position: relative; display: grid; grid-template-columns: 36px 1fr 18px; gap: 14px; align-items: start; height: 100%; padding: 16px; border-radius: var(--radius); border: 1px solid transparent; transition: border-color .2s, box-shadow .3s, background-color .2s, transform .45s var(--ease); }
.item__icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--magenta-50); color: var(--magenta); font-size: 15px; transition: background-color .2s, color .2s; }
.item__body { min-width: 0; }
.item__tag { display: block; margin-bottom: 2px; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--text-3); }
.item__title { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; transition: color .2s; }
.item__text { display: block; margin-top: 4px; font-size: 14px; line-height: 1.5; color: var(--text-2); }
.item__go { margin-top: 9px; font-size: 16px; color: var(--magenta); opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s var(--ease); }
.item:hover .item__icon { background: var(--magenta); color: var(--white); }
.item:hover .item__go, .item:focus-visible .item__go { opacity: 1; transform: none; }
@media (hover: none) { .item__go { opacity: .5; transform: none; } }
.items--grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
.items--grid .item { background: var(--white); border-color: var(--line); }
.items--grid .item:hover { border-color: rgba(230, 0, 126, .35); box-shadow: 0 10px 28px -18px rgba(20, 20, 22, .3); transform: translateY(-2px); }
.banner { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: flex-end; min-height: clamp(340px, 38vw, 440px); padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px) 112px; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); }
.banner__bg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.banner::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(14, 14, 16, .88) 0%, rgba(14, 14, 16, .55) 50%, rgba(14, 14, 16, .1) 100%); }
.banner__text { max-width: 440px; }
.banner h2 { font-size: clamp(24px, 2.6vw, 34px); }
.banner h2 + p { margin-top: 8px; color: rgba(255, 255, 255, .78); }
.items--tiles { position: relative; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: -72px; padding-inline: clamp(12px, 3vw, 32px); }
.items--tiles .item { grid-template-columns: 1fr; align-content: start; gap: 14px; padding: 20px; background: var(--white); border-color: var(--line); box-shadow: 0 16px 32px -20px rgba(20, 20, 22, .28); }
.items--tiles .item__go { position: absolute; top: 20px; right: 20px; margin: 0; }
.items--tiles .item:hover { border-color: rgba(230, 0, 126, .35); transform: translateY(-4px); }
.split { display: grid; grid-template-columns: 340px 1fr; gap: 40px 64px; align-items: start; }
.split__aside { position: sticky; top: calc(var(--nav-offset) + var(--subnav-h) + 32px); transition: top .45s var(--ease); }
.split__aside h2 { font-size: clamp(24px, 2.6vw, 34px); }
.split__aside > p:not(.eyebrow) { margin-top: 10px; color: var(--text-2); }
.split__media { margin-top: 28px; overflow: hidden; border-radius: var(--radius-lg); }
.split__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.split__main { display: grid; gap: 16px; min-width: 0; }
.panel { padding: 8px 16px; border-radius: var(--radius-lg); background: var(--soft); }
.panel__title { display: flex; align-items: center; gap: 10px; padding: 16px 8px 12px; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.panel__title i { color: var(--magenta); font-size: 14px; }
.panel__title span { margin-left: auto; color: var(--text-3); letter-spacing: 0; }
.items--rows li { border-top: 1px solid var(--line); }
.items--rows .item { grid-template-columns: 32px 1fr 18px; padding: 14px 8px; border-radius: 10px; }
.items--rows .item:hover { background: var(--white); }
.items--rows .item__icon { width: 32px; height: 32px; font-size: 14px; border-radius: 8px; background: var(--white); }
.items--rows .item__go { margin-top: 7px; }
.items--rows .item:hover .item__title { color: var(--magenta-600); }
.items--numbered { counter-reset: program; }
.items--numbered li { counter-increment: program; border-top: 1px solid rgba(255, 255, 255, .12); }
.items--numbered li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .12); }
.items--numbered .item { grid-template-columns: 48px 40px 1fr 18px; align-items: center; padding: 22px 12px; }
.items--numbered .item::before { content: counter(program, decimal-leading-zero); font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(255, 255, 255, .4); transition: color .2s; }
.items--numbered .item__icon { width: 40px; height: 40px; background: rgba(230, 0, 126, .16); color: var(--pink-light); }
.items--numbered .item__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 4px 40px; align-items: center; }
.items--numbered .item__title { font-size: 16px; }
.items--numbered .item__text { margin: 0; color: rgba(255, 255, 255, .62); }
.items--numbered .item__go { margin: 0; color: var(--pink-light); }
.items--numbered .item:hover { background: rgba(255, 255, 255, .04); }
.items--numbered .item:hover::before { color: var(--pink-light); }

/* ---------- Consultor (WhatsApp) ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px clamp(40px, 6vw, 72px); align-items: center; }
.contact-split h2 { font-size: clamp(24px, 2.6vw, 34px); }
.consult { padding: clamp(20px, 3vw, 32px); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 30px 60px -40px rgba(20, 20, 22, .35); }
.consult__head { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.consult__avatar { display: grid; place-items: center; flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--magenta-50); color: var(--magenta); font-size: 18px; }
.consult__name { font-size: 15px; font-weight: 600; }
.consult__status { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-2); }
.consult__status span { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); animation: pulse 2s infinite; }
.consult__phone { margin-left: auto; font-size: 14px; font-weight: 600; white-space: nowrap; }
.consult__phone:hover { color: var(--magenta-600); }
.consult__topics { padding-block: 20px 16px; }
.consult__topics .chips { margin: 0; }
.consult__label { margin-bottom: 10px; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); }
.chip[aria-checked="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); transform: none; }
.bubble { margin-bottom: 20px; padding: 16px; border-radius: var(--radius); background: var(--gray); }
.bubble__text { padding: 12px 14px; border-radius: 12px 12px 12px 4px; background: var(--white); box-shadow: 0 1px 2px rgba(20, 20, 22, .06); font-size: 14px; line-height: 1.55; white-space: pre-line; }
.consult__note { margin-top: 10px; font-size: 12px; text-align: center; color: var(--text-3); }
.btn i.fa-whatsapp { font-size: 16px; }

/* ---------- Contato ---------- */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.channel a { display: flex; flex-direction: column; gap: 4px; height: 100%; padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: border-color .3s, box-shadow .4s, transform .5s var(--ease); }
.channel a:hover { border-color: rgba(230, 0, 126, .35); box-shadow: var(--shadow); transform: translateY(-4px); }
.channel__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 14px; border-radius: 14px; background: var(--magenta-50); color: var(--magenta); font-size: 20px; }
.channel strong { font-size: 16px; }
.channel span:not(.channel__icon) { font-size: 14px; color: var(--text-2); }
.channel em { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-style: normal; font-size: 13px; font-weight: 700; color: var(--magenta-600); }
.channel em i { font-size: 11px; transition: transform .3s var(--ease); }
.channel a:hover em i { transform: translateX(4px); }
.channel--primary a { background: var(--magenta); border-color: var(--magenta); color: var(--white); }
.channel--primary .channel__icon { background: rgba(255, 255, 255, .18); color: var(--white); font-size: 24px; }
.channel--primary span:not(.channel__icon), .channel--primary em { color: rgba(255, 255, 255, .9) !important; }
.channel--primary a:hover { border-color: var(--magenta-600); background: var(--magenta-600); }
.map { margin-top: 28px; overflow: hidden; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); background: var(--soft); border: 1px solid var(--line); }
.map iframe { display: block; width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
.faq-wrap { max-width: 860px; }
.faq-wrap .faq__a .link { font-weight: 600; }

/* ---------- Rodapé ---------- */
.footer { border-top: 1px solid var(--line); }
.footer__contact { margin-top: 16px; display: grid; gap: 8px; font-size: 13.5px; color: var(--text-2); }
.footer__contact li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; }
.footer__contact a { display: contents; }
.footer__contact a:hover { color: var(--magenta-600); }
.footer__contact i { margin-top: 4px; color: var(--magenta); font-size: 12px; }
.footer__awards { display: flex; flex-wrap: wrap; gap: 8px; padding-bottom: 24px; }
.footer__awards span { display: inline-flex; align-items: center; gap: 8px; height: 32px; padding-inline: 12px; border-radius: 999px; background: var(--soft); font-size: 12px; font-weight: 600; color: var(--text-2); }
.footer__awards i { color: var(--magenta); }

/* ---------- Flutuantes ---------- */
.wa-float { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 40; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--magenta); color: var(--white); font-size: 26px; box-shadow: 0 12px 28px -10px rgba(230, 0, 126, .55); opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none; transition: opacity .3s var(--ease), transform .4s var(--spring), background-color .2s; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 50%; animation: pulse 2.4s infinite; }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { background: var(--magenta-600); transform: scale(1.06); }
.to-top { bottom: calc(clamp(16px, 3vw, 28px) + 68px); right: calc(clamp(16px, 3vw, 28px) + 6px); }

.notfound__inner { justify-content: center; padding-top: calc(var(--nav-h) + 40px); }
.notfound__redirect { margin-top: 24px; color: rgba(255, 255, 255, .6); }

/* =========================================================
   RESPONSIVO (site corporativo)
   ========================================================= */
@media (max-width: 1180px) {
  .nav__kbd { display: none; }
  .nav__link { padding-inline: 10px; }
  .nav__link::after { left: 10px; right: 10px; }
}
@media (max-width: 1080px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__tools { margin-left: auto; }
  .toc { top: calc(var(--nav-offset) + var(--subnav-h)); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .stat:nth-child(4) { padding-left: 0; border-left: 0; }
  .awards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process__step::after { display: none; }
  .sol-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .items--grid { grid-template-columns: repeat(2, 1fr); }
  .items--tiles { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 280px 1fr; gap: 40px; }
  .items--numbered .item__body { grid-template-columns: 1fr; }
  .hero-stats strong { font-size: 22px; }
}
@media (max-width: 860px) {
  .split-media, .contact-split, .intro, .guide-banner, .tech-panel, .team-strip { grid-template-columns: 1fr; }
  .split-media--reverse .split-media__img { order: 0; }
  .intro--reverse .intro__media { order: 0; }
  .split-media__img--portrait img { aspect-ratio: 4 / 3; }
  .split { grid-template-columns: 1fr; }
  .split__aside { position: static; }
  .split__media img { aspect-ratio: 16 / 9; }
  .items--tiles { grid-template-columns: repeat(2, 1fr); margin-top: -56px; }
  .items--tiles li:last-child { grid-column: 1 / -1; }
  .banner { padding-bottom: 96px; }
  .stack__card { position: relative; top: 0; grid-template-columns: 1fr; transform: none; }
  .stack__media { order: -1; }
  .stack__big { left: 12px; bottom: 12px; }
  .post-card--featured a { display: flex; }
  .post-card--featured .post-card__media { min-height: 0; aspect-ratio: 16 / 9; }
  .post__grid { grid-template-columns: minmax(0, 1fr); }
  .post__share { position: static; flex-direction: row; order: 2; justify-content: flex-start; }
  .channels, .cards-3 { grid-template-columns: 1fr; }
  .channel a { display: grid; grid-template-columns: 48px 1fr; column-gap: 16px; }
  .channel__icon { grid-row: span 3; margin: 0; }
  .channel em { margin-top: 6px; }
  .coverage .btn { margin-left: 0; }
  .numbers__map { right: -30%; width: 100%; opacity: .25; }
}
@media (max-width: 760px) {
  :root { --nav-h: 64px; --subnav-h: 50px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats li:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-stats li { padding-top: 14px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .bento__item--tall, .bento__item--wide { grid-column: auto; grid-row: auto; }
  .bento__item--tall { grid-row: span 1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
  .stat:nth-child(even) { padding-left: 20px; border-left: 1px solid rgba(255, 255, 255, .1); }
  .process, .sol-grid, .post-grid, .feature-list, .diff-grid, .roles, .stack__feats, .guide-banner__list { grid-template-columns: 1fr; }
  .blog-toolbar { display: grid; grid-template-columns: minmax(0, 1fr); }
  .blog-search input { width: 100%; }
  .blog-toolbar .chips { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .blog-toolbar .chips .chip { flex-shrink: 0; }
  .subnav__search span { display: none; }
  .subnav__search { width: 36px; padding: 0; justify-content: center; }
}
@media (max-width: 600px) {
  .items--grid { grid-template-columns: 1fr; }
  .items--numbered .item { grid-template-columns: 28px 36px 1fr; padding: 18px 4px; align-items: start; }
  .items--numbered .item::before { padding-top: 9px; }
  .items--numbered .item__icon { width: 36px; height: 36px; }
  .items--numbered .item__go { display: none; }
  .awards, .mini-cards, .kpi-row { grid-template-columns: 1fr; }
  .team-strip ul { grid-template-columns: 1fr 1fr; }
  .consult__head { flex-wrap: wrap; }
  .consult__phone { margin-left: 62px; }
  .float-badge { left: 12px; bottom: 12px; }
  .nav__icon[data-open-search] { width: 40px; padding: 0; }
  .hero--home .hero__title { font-size: 30px; }
  .sla { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero--home { min-height: 100svh; }
  .hero--post { min-height: 520px; }
  .hero--home::before { background: linear-gradient(0deg, rgba(14, 14, 16, .97) 0%, rgba(14, 14, 16, .8) 55%, rgba(14, 14, 16, .35) 100%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .stack__card { transform: none; }
}
@media print {
  .nav, .subnav, .wa-float, .marquee, .post__share { display: none !important; }
}
.section--dark .checklist li { color: rgba(255, 255, 255, .78); }
.section--dark .checklist li > i { background: rgba(230, 0, 126, .2); color: var(--pink-light); }

/* ---------- Telas das plataformas ---------- */
.shot { position: relative; display: grid; place-items: center; overflow: hidden; aspect-ratio: 4 / 3.4; padding: clamp(16px, 3vw, 32px); border-radius: var(--radius-lg); background: var(--white); box-shadow: inset 0 0 0 1px var(--line); }
.shot img { width: 100%; height: 100%; object-fit: contain; transition: transform 1s var(--ease); }
.shot:hover img { transform: scale(1.03) translateY(-4px); }
.stack__card:nth-child(even) .shot { box-shadow: none; }
.tech-panel .shot { aspect-ratio: 4 / 3.2; }
.split-media > .shot { aspect-ratio: 4 / 3.4; }

/* =========================================================
   ARQUITETURA NOVA: clientes, áreas, plataformas e equipe
   ========================================================= */
.section--tight { padding-block: clamp(32px, 4vw, 48px); }

/* Carrossel de clientes */
.clients { padding-block: 28px 32px; background: var(--white); border-bottom: 1px solid var(--line); }
.clients__head p { margin-bottom: 18px; text-align: center; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.clients__viewport { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.clients__track { display: flex; align-items: center; flex-shrink: 0; gap: clamp(24px, 4vw, 56px); padding-right: clamp(24px, 4vw, 56px); animation: marquee-full 42s linear infinite; }
.clients__viewport:hover .clients__track { animation-play-state: paused; }
.clients__track li { flex-shrink: 0; }
.clients__track img { width: auto; height: clamp(56px, 6vw, 76px); filter: brightness(0); opacity: .45; transition: opacity .3s, transform .4s var(--spring); }
.clients__track li:hover img { opacity: .9; transform: scale(1.06); }
@keyframes marquee-full { to { transform: translateX(-100%); } }

/* Início: bento com cinco áreas */
.bento--5 { grid-template-columns: repeat(4, 1fr); }

/* Início: chamada de tecnologia */
.tech-teaser .shot { aspect-ratio: 4 / 3.2; }
.plat-links { display: grid; gap: 8px; margin-top: 24px; }
.plat-links a { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 16px; padding: 14px 18px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); transition: background-color .25s, border-color .25s, transform .4s var(--spring); }
.plat-links strong { font-size: 16px; }
.plat-links span { font-size: 13.5px; color: rgba(255, 255, 255, .68); }
.plat-links i { color: var(--pink-light); font-size: 12px; transition: transform .3s var(--ease); }
.plat-links a:hover { background: rgba(230, 0, 126, .14); border-color: rgba(230, 0, 126, .5); transform: translateX(4px); }
.plat-links a:hover i { transform: translateX(3px); }

/* Serviços: atalhos para as áreas */
.area-nav { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.area-nav a { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 20px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--white); transition: border-color .3s, box-shadow .4s, transform .5s var(--ease); }
.area-nav a:hover { border-color: rgba(230, 0, 126, .35); box-shadow: var(--shadow); transform: translateY(-4px); }
.area-nav__icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 8px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); font-size: 16px; transition: background-color .3s, color .3s; }
.area-nav a:hover .area-nav__icon { background: var(--magenta); color: var(--white); }
.area-nav strong { font-size: 15px; line-height: 1.3; }
.area-nav span:last-child { font-size: 13px; line-height: 1.5; color: var(--text-2); }
.intro__links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px !important; font-size: 14px; }
.intro__links .link i { margin-right: 4px; }
.section--gray .items--grid .item { border-color: transparent; }
.items--grid-4 { grid-template-columns: repeat(4, 1fr); }
.items--grid-4 .item { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
.items--grid-4 .item__go { position: absolute; top: 20px; right: 20px; margin: 0; }

.help { display: grid; grid-template-columns: 340px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; margin-top: 16px; padding: clamp(16px, 2.5vw, 24px); border-radius: 24px; background: var(--white); scroll-margin-top: calc(var(--nav-h) + var(--subnav-h) + 16px); }
.help > img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: 50% 25%; border-radius: var(--radius-lg); }
.help__body > * + * { margin-top: 14px; }
.help h3 { font-size: clamp(20px, 2.2vw, 26px); }
.help p { color: var(--text-2); }
.help .diff-grid li { background: var(--soft); }

.pgsm { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-block: 8px 48px; padding: clamp(20px, 3.5vw, 40px); border-radius: 24px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.pgsm__text > * + * { margin-top: 14px; }
.pgsm h3 { font-size: clamp(20px, 2.2vw, 26px); }
.pgsm__text > p:not(.eyebrow) { color: rgba(255, 255, 255, .7); }
.pgsm .link { display: inline-flex; gap: 8px; align-items: center; }
.list-title { margin-bottom: 16px; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.section:not(.section--gray):not(.section--dark) .process__step { border: 1px solid var(--line); }

/* Tecnologia: uma seção inteira por plataforma */
.plat { scroll-margin-top: calc(var(--nav-h) + var(--subnav-h)); }
.plat__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
.plat--reverse .plat__media { order: -1; }
.plat h2 { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: clamp(34px, 4vw, 52px); letter-spacing: -.04em; }
.plat__title { margin-top: 10px; font-size: clamp(17px, 1.6vw, 20px); font-weight: 700; }
.plat__lead { margin-top: 10px; font-size: 16px; line-height: 1.65; color: var(--text-2); }
.plat__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-top: 28px; }
.plat__feats li { display: grid; grid-template-columns: 40px 1fr; gap: 12px; }
.plat__feats li > i { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--magenta-50); color: var(--magenta); font-size: 15px; }
.section--gray .plat__feats li > i { background: var(--white); }
.plat__feats strong { display: block; font-size: 15px; }
.plat__feats span { display: block; margin-top: 2px; font-size: 14px; line-height: 1.5; color: var(--text-2); }
.plat__media { position: relative; }
.shot--lg { aspect-ratio: auto; min-height: clamp(320px, 38vw, 520px); padding: clamp(20px, 3vw, 40px); box-shadow: 0 30px 60px -40px rgba(20, 20, 22, .35), inset 0 0 0 1px var(--line); }
.plat__big { position: absolute; left: -20px; bottom: 28px; padding: 16px 22px; border-radius: var(--radius-lg); background: var(--magenta); color: var(--white); box-shadow: 0 20px 40px -18px rgba(230, 0, 126, .6); animation: floaty 6s ease-in-out infinite; }
.plat__big strong { display: block; font-size: 40px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.plat__big span { font-size: 13px; font-weight: 600; }
.mini-cards--dark div { background: rgba(255, 255, 255, .06); color: var(--white); }
.mini-cards--dark i { color: var(--pink-light); }

/* Sobre: equipe */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.team-card { overflow: hidden; border-radius: 24px; background: var(--white); }
.team-card > img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.team-card > div { padding: clamp(20px, 3vw, 28px); }
.team-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 18px; }
.team-card h3 i { color: var(--magenta); }
.team-card .roles li { background: var(--soft); }
.team-card p { margin-top: 16px; color: var(--text-2); font-size: 14px; }
.team-nums { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.team-nums li { display: flex; flex-direction: column; padding: 16px 12px; border-radius: var(--radius); background: var(--soft); }
.team-nums li:first-child { background: var(--magenta); color: var(--white); }
.team-nums li:first-child span { color: rgba(255, 255, 255, .85); }
.team-nums strong { font-size: 32px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.team-nums span { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--text-2); }
.awards--6 { grid-template-columns: repeat(3, 1fr); }

/* Guia: atalho para contatos */
.contact-strip { display: flex; align-items: center; gap: 18px; padding: 20px 24px; border-radius: var(--radius-lg); background: var(--white); transition: box-shadow .4s, transform .5s var(--ease); }
.contact-strip:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-strip__icon { display: grid; place-items: center; width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px; background: var(--magenta-50); color: var(--magenta); font-size: 19px; }
.contact-strip > span:nth-child(2) { flex: 1; }
.contact-strip strong { display: block; font-size: 16px; }
.contact-strip strong + span { font-size: 14px; color: var(--text-2); }

@media (max-width: 1080px) {
  .area-nav { grid-template-columns: repeat(3, 1fr); }
  .items--grid-4 { grid-template-columns: repeat(2, 1fr); }
  .help { grid-template-columns: 260px 1fr; }
  .awards--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .plat__grid, .pgsm, .help, .team-grid { grid-template-columns: 1fr; }
  .plat--reverse .plat__media { order: 0; }
  .plat__media { order: -1; }
  .help > img { min-height: 0; aspect-ratio: 16 / 9; }
  .plat__big { left: 12px; bottom: 12px; }
  .shot--lg { min-height: 0; aspect-ratio: 4 / 3.2; }
  .contact-strip { flex-wrap: wrap; }
}
@media (max-width: 760px) {
  .bento--5 { grid-template-columns: 1fr; }
  .area-nav { grid-template-columns: 1fr 1fr; }
  .area-nav li:last-child { grid-column: 1 / -1; }
  .items--grid-4, .plat__feats, .awards--6 { grid-template-columns: 1fr; }
  .team-nums { grid-template-columns: 1fr 1fr; }
  .plat-links a { grid-template-columns: 1fr auto; }
  .plat-links span { grid-column: 1; }
  .plat-links i { grid-row: 1 / span 2; grid-column: 2; }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
  .clients__track[aria-hidden] { display: none; }
  .clients__viewport { overflow-x: auto; }
}

.shot img { mix-blend-mode: multiply; }
.contact-split > *, .plat__grid > *, .pgsm > *, .split-media > * { min-width: 0; }
.consult__topics .chip { white-space: nowrap; }
@media (max-width: 860px) {
  .plat--reverse .plat__media, .plat__media { order: -1; }
  .plat__big { position: static; display: inline-block; margin-top: 12px; padding: 10px 16px; animation: none; }
  .plat__big strong { display: inline; font-size: 24px; margin-right: 8px; }
}

/* Redes sociais */
.social { display: flex; gap: 8px; margin-top: 18px; }
.social--center { justify-content: center; margin-top: 4px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); font-size: 16px; transition: background-color .25s, border-color .25s, color .25s, transform .35s var(--spring); }
.social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--white); transform: translateY(-3px); }

/* =========================================================
   CREDENCIAMENTO DE CLÍNICAS
   ========================================================= */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.benefits li { display: flex; flex-direction: column; gap: 6px; padding: 22px; border-radius: var(--radius-lg); background: var(--soft); transition: background-color .3s, box-shadow .4s, transform .5s var(--ease); }
.benefits li:hover { background: var(--white); box-shadow: 0 0 0 1px var(--line), var(--shadow); transform: translateY(-3px); }
.benefits li > i { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 8px; border-radius: 12px; background: var(--magenta); color: var(--white); font-size: 16px; }
.benefits strong { font-size: 15px; }
.benefits span { font-size: 14px; line-height: 1.5; color: var(--text-2); }
.kpi-band { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; border-radius: var(--radius-lg); background: var(--ink); color: var(--white); overflow: hidden; }
.kpi-band > div { display: flex; flex-direction: column; gap: 2px; padding: 22px 24px; }
.kpi-band > div + div { border-left: 1px solid rgba(255, 255, 255, .1); }
.kpi-band strong { font-size: clamp(22px, 2vw, 26px); font-weight: 800; letter-spacing: -.03em; color: var(--white); }
.kpi-band > div:last-child strong { color: var(--pink-light); }
.kpi-band span { font-size: 13.5px; color: rgba(255, 255, 255, .65); }

.process--4 { grid-template-columns: repeat(4, 1fr); }
.process__note { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; font-size: 14px; color: var(--text-2); text-align: center; }
.process__note i { color: var(--magenta); }

.cred { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: start; scroll-margin-top: calc(var(--nav-h) + 16px); }
.cred > * { min-width: 0; }
.cred__aside { position: sticky; top: calc(var(--nav-offset) + 32px); transition: top .45s var(--ease); }
.cred__aside > p:not(.eyebrow) { margin-top: 10px; color: var(--text-2); }
.cred__box { margin-top: 24px; padding: 20px; border-radius: var(--radius-lg); background: var(--soft); }
.cred__box h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-size: 15px; }
.cred__box h3 i { color: var(--magenta); }
.cred__box .checklist li { font-size: 14px; }

.cred__form { display: grid; gap: 22px; padding: clamp(20px, 3.5vw, 36px); border-radius: 24px; background: var(--white); box-shadow: 0 0 0 1px var(--line), 0 30px 60px -40px rgba(20, 20, 22, .35); }
.cred__form fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
.cred__form legend { margin-bottom: 12px; padding: 0; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); }
.cred__form legend small { text-transform: none; letter-spacing: 0; font-weight: 500; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full, .field--split { grid-column: 1 / -1; }
.field--split { display: grid; grid-template-columns: 1fr 96px; gap: 14px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field label span { color: var(--magenta); }
.field label small { font-weight: 500; color: var(--text-3); }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: 11px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--soft); font: inherit; font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field textarea { resize: vertical; min-height: 88px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238b8b95' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 30px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #d9d9df; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--magenta); background: var(--white); box-shadow: 0 0 0 4px rgba(230, 0, 126, .12); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--magenta-600); background: var(--magenta-50); }
.field__hint { font-size: 12.5px; color: var(--text-3); }

.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check { position: relative; display: inline-flex; align-items: center; cursor: pointer; }
.check input { position: absolute; opacity: 0; pointer-events: none; }
.checks .check span { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding-inline: 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 13.5px; font-weight: 600; color: var(--text-2); transition: background-color .2s, border-color .2s, color .2s; }
.checks .check span::before { content: ""; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid #c9c9d1; transition: background-color .2s, border-color .2s; }
.checks .check:hover span { border-color: rgba(230, 0, 126, .4); }
.checks .check input:checked + span { border-color: var(--ink); background: var(--ink); color: var(--white); }
.checks .check input:checked + span::before { border-color: var(--magenta); background: var(--magenta) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 10px no-repeat; }
.checks .check input:focus-visible + span { outline: 2px solid var(--magenta); outline-offset: 2px; }
.check--consent { align-items: flex-start; gap: 12px; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.check--consent input { position: static; opacity: 1; pointer-events: auto; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--magenta); flex-shrink: 0; }
.check--consent span span { color: var(--magenta); }
.check--consent.is-invalid { color: var(--magenta-600); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__error { padding: 12px 16px; border-radius: var(--radius); background: var(--magenta-50); color: var(--magenta-700); font-size: 14px; font-weight: 600; }
.form__note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: -10px; font-size: 12.5px; color: var(--text-3); }
.btn.is-loading { opacity: .7; pointer-events: none; }
.btn.is-loading i { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.form__success { padding: clamp(24px, 5vw, 48px) 12px; text-align: center; animation: pop .5s var(--spring); }
.form__success > i { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--magenta); color: var(--white); font-size: 28px; box-shadow: 0 0 0 10px var(--magenta-50); }
.form__success h3 { font-size: var(--fs-h3, 18px); }
.form__success p { max-width: 42ch; margin: 8px auto 0; color: var(--text-2); }

/* Menu com a aba Credenciamento: hambúrguer antes de faltar espaço */
@media (max-width: 1400px) { .nav__kbd { display: none; } .nav__link { padding-inline: 10px; } .nav__link::after { left: 10px; right: 10px; } .nav__inner { gap: 16px; } }
@media (max-width: 1279px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__tools { margin-left: auto; }
}
@media (max-width: 1080px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .process--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .cred { grid-template-columns: 1fr; }
  .cred__aside { position: static; }
  .kpi-band { grid-template-columns: 1fr; }
  .kpi-band > div + div { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .1); }
}
@media (max-width: 560px) {
  .benefits, .process--4, .fields { grid-template-columns: 1fr; }
  .field--split { grid-template-columns: 1fr 88px; }
}

.cred__form { grid-template-columns: minmax(0, 1fr); }
.field input, .field select, .field textarea { min-width: 0; }
@media (max-width: 560px) { .fields { grid-template-columns: minmax(0, 1fr); } .field--split { grid-template-columns: minmax(0, 1fr) 88px; } }

/* =========================================================
   ESCALA TIPOGRÁFICA ÚNICA (carregada por último)
   Menores tamanhos confortáveis de leitura:
   H1 26 a 36px · H2 22 a 28px · H3 17 a 19px · parágrafo 15px · destaque 16px
   ========================================================= */
:root {
  --fs-h1: clamp(26px, 2.5vw, 36px);
  --fs-h2: clamp(22px, 1.9vw, 28px);
  --fs-h3: clamp(17px, 1.3vw, 19px);
  --fs-body: 15px;
  --fs-lead: 16px;
  --fs-small: 13px;
}
body { font-size: var(--fs-body); }

/* H1: títulos dos heros e da página 404 */
.hero__title,
.hero--page .hero__title,
.hero--home .hero__title,
.hero--post .hero__title,
.notfound h1 { font-size: var(--fs-h1); line-height: 1.18; letter-spacing: -.025em; }
.hero--home .hero__body { max-width: 560px; }
.hero__body { max-width: 580px; }
.hero__text, .hero--home .hero__text { font-size: var(--fs-lead); line-height: 1.6; }

/* H2: títulos de seção */
.section-head h2,
.split-media__text h2,
.intro__text h2,
.banner h2,
.split__aside h2,
.guide-banner h2,
.contact-split h2,
.cta-band h2,
.doc-section h2,
.plat h2,
.stack__card h2 { font-size: var(--fs-h2); line-height: 1.22; letter-spacing: -.02em; }
.prose h2 { font-size: clamp(20px, 1.7vw, 24px); }
.plat h2 { gap: 10px; }

/* H3: subtítulos e títulos de cartões principais */
.help h3, .pgsm h3, .tech-panel h3, .team-card h3, .doc-h3, .plat__title { font-size: var(--fs-h3); line-height: 1.3; }
.topic-card--feature .topic-card__title, .bento__item--tall .bento__body strong, .post-card--featured .post-card__title { font-size: var(--fs-h3); }
.bento__body strong { font-size: 16px; }

/* Parágrafos */
.lead, .plat__lead, .doc-lead { font-size: var(--fs-lead); }
.prose { font-size: var(--fs-lead); }

/* Números de destaque proporcionais aos títulos */
.stat strong { font-size: clamp(24px, 2.4vw, 34px); }
.hero-stats strong { font-size: clamp(20px, 1.8vw, 24px); }
.kpi-row strong, .coverage strong { font-size: clamp(22px, 2vw, 26px); }
.team-nums strong, .team-strip strong { font-size: 28px; }
.plat__big strong { font-size: 32px; }
.sla__num { font-size: 44px; }
.fact__num { font-size: clamp(26px, 2.6vw, 34px); }

/* Menu com oito abas sem quebra de linha */
.nav__link { white-space: nowrap; }
@media (max-width: 1599px) { .nav__kbd { display: none; } .nav__link { padding-inline: 10px; } .nav__link::after { left: 10px; right: 10px; } .nav__inner { gap: 16px; } .nav__menu > ul { gap: 0; } }
.hero--home .hero__body { max-width: 520px; }

/* H1 da home 15% maior */
.hero--home .hero__title { font-size: clamp(30px, 2.875vw, 41px); }
.hero--home .hero__body { max-width: 580px; }

/* H1 10% maior em todo o site */
:root { --fs-h1: clamp(29px, 2.75vw, 40px); }
.hero--home .hero__title { font-size: clamp(33px, 3.16vw, 45px); }
.hero--home .hero__body { max-width: 620px; }
.hero__body { max-width: 620px; }
.hero--home .hero__title { max-width: 520px; }
.hero__title { text-wrap: balance; }

/* Hero no celular: foto em cima e texto logo abaixo, sem cobrir os rostos */
@media (max-width: 760px) {
  .hero, .hero--page, .hero--home, .hero--post { min-height: 0; }
  .hero { --foto: calc(var(--nav-h) + 58vw); }
  .hero__bg { inset: 0 0 auto; height: var(--foto); }
  .hero::before, .hero--home::before {
    background: linear-gradient(180deg, rgba(14, 14, 16, .55) 0, rgba(14, 14, 16, 0) calc(var(--nav-h) + 12px), rgba(14, 14, 16, 0) calc(var(--foto) - 34vw), rgba(14, 14, 16, .85) calc(var(--foto) - 8vw), var(--ink) var(--foto));
  }
  .hero__inner { justify-content: flex-start; padding-top: calc(var(--foto) - 14vw); padding-bottom: 40px; gap: 28px; }
}
@media (max-width: 760px) {
  .hero { --foto: calc(var(--nav-h) + 62vw); }
  .hero__bg { top: var(--nav-h); height: 62vw; }
  .hero::before, .hero--home::before {
    background: linear-gradient(180deg, var(--ink) 0, var(--ink) var(--nav-h), rgba(14, 14, 16, .15) calc(var(--nav-h) + 1px), rgba(14, 14, 16, 0) calc(var(--nav-h) + 30vw), rgba(14, 14, 16, .85) calc(var(--foto) - 8vw), var(--ink) var(--foto));
  }
}

/* Hero no celular e tablet: foto inteira em cima, texto começa só depois da foto */
@media (max-width: 900px) {
  .hero, .hero--page, .hero--home, .hero--post { min-height: 0 !important; display: block; }
  .hero { --foto-h: clamp(240px, 70vw, 520px); }
  .hero__bg { position: absolute; inset: var(--nav-h) 0 auto 0 !important; width: 100%; height: var(--foto-h) !important; transform: none !important; animation: none; object-fit: cover; }
  .hero::before, .hero--home::before {
    background: linear-gradient(180deg, var(--ink) 0, var(--ink) var(--nav-h), rgba(14, 14, 16, .1) calc(var(--nav-h) + 1px), rgba(14, 14, 16, 0) calc(var(--nav-h) + var(--foto-h) * .6), rgba(14, 14, 16, .9) calc(var(--nav-h) + var(--foto-h) - 12px), var(--ink) calc(var(--nav-h) + var(--foto-h))) !important;
  }
  .hero::after { display: none; }
  .hero__inner { display: flex; flex-direction: column; justify-content: flex-start !important; padding-top: calc(var(--nav-h) + var(--foto-h) + 20px) !important; padding-bottom: 40px !important; gap: 28px; }
}

/* Home no celular: aproxima e centraliza os dois profissionais */
@media (max-width: 900px) {
  .hero--home .hero__bg { object-position: 100% 30% !important; transform: scale(1.35) !important; transform-origin: 78% 40%; }
}

/* Links dentro dos artigos */
.prose a[href]:not(.btn):not(.link) { color: var(--magenta-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a[href]:not(.btn):not(.link):hover { color: var(--magenta-700); }
