/* ============================================================
   WILS TECNOLOGIAS — design system
   Conceito: a marca vive no terminal.
   > prompt · bloco ciano = cursor · mono para código, sans para texto
   ============================================================ */

:root {
  /* cores da marca */
  --ink:      #0D1117;
  --ink-1:    #0f151d;
  --ink-2:    #121924;
  --ink-3:    #18202c;
  --cyan:     #22D3EE;
  --cyan-2:   #0AA8C4;
  --white:    #FFFFFF;

  /* texto */
  --fg:       #f2f5f9;
  --muted:    #c3ccd8;
  --muted-2:  #97a1b0;

  /* linhas / superfícies */
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.16);
  --grid:     rgba(255,255,255,.028);
  --glow:     rgba(34,211,238,.16);

  /* tipografia */
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --sans: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  /* medidas */
  --r:      6px;
  --maxw:   1280px;
  --gutter: clamp(20px, 5vw, 56px);
}

/* ---------- reset base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--fg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* grade sutil de fundo (bem discreta, só pra dar textura) */
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center top;
}
body::before {
  /* leve vinheta radial no topo, cor da marca */
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -8%, rgba(34,211,238,.08), transparent 60%),
    radial-gradient(700px 500px at 10% 0%, rgba(10,168,196,.05), transparent 55%);
  pointer-events: none; z-index: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--cyan); color: var(--ink); }

/* foco acessível */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* ---------- utilitários ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.mono { font-family: var(--mono); }
.cyan { color: var(--cyan); }
.prompt { color: var(--cyan); font-family: var(--mono); }
.section { padding-block: clamp(38px, 4.5vw, 66px); position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: "//"; color: var(--muted-2); }

/* bloco cursor (o "i" da marca) */
.cursor {
  display: inline-block;
  width: .55em; height: 1.05em;
  background: var(--cyan);
  border-radius: 2px;
  margin-left: .12em;
  transform: translateY(.14em);
  animation: blink 1.15s steps(1) infinite;
}
@keyframes blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }
@media (prefers-reduced-motion: reduce){ .cursor{ animation:none } * { scroll-behavior:auto } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.nav.scrolled {
  background: rgba(13,17,23,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in {
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 64px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 14px; }
.nav__links a {
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: color .18s, background .18s;
  position: relative;
}
.nav__links a::before { content: "~/"; color: var(--cyan); }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--fg); }
.nav__links a[aria-current="page"]::before { color: var(--cyan); }
.nav__cta {
  font-family: var(--mono); font-size: 14px;
  color: #06232e !important;
  background: var(--cyan);
  padding: 9px 16px !important;
  border-radius: var(--r);
  font-weight: 700;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.nav__cta::before { content: "$ " !important; color: rgba(6,35,46,.55) !important; }
.nav__cta:hover { color: var(--ink) !important; box-shadow: 0 0 0 4px var(--glow); transform: translateY(-1px); }
.nav__burger { display: none; background: none; border: 1px solid var(--line-2); color: var(--fg);
  width: 42px; height: 42px; border-radius: var(--r); font-family: var(--mono); cursor: pointer; font-size: 18px; }

@media (max-width: 820px){
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; align-items:center; justify-content:center; }
  /* backdrop-filter cria containing-block e quebra o position:fixed do menu — remover no mobile */
  .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--ink); }
  .nav__links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; top: 96px; left: 0; right: 0; bottom: 0; overflow-y: auto;
    background: var(--ink); border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 32px;
  }
  .nav__links.open a { padding: 12px 8px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 15px; font-weight: 500;
  padding: 14px 22px; border-radius: var(--r);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn--primary { background: var(--cyan); color: var(--ink); }
.btn--primary:hover { box-shadow: 0 0 0 4px var(--glow); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn--wa { background: #25D366; color: #072a17; }
.btn--wa:hover { color: #072a17; box-shadow: 0 0 0 4px rgba(37,211,102,.25); transform: translateY(-2px); }
.btn--wa svg { width: 20px; height: 20px; fill: currentColor; }
.btn--lg { font-size: 16px; padding: 17px 28px; }
.btn .arw { transition: transform .18s; }
.btn:hover .arw { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(16px, 3vw, 34px); padding-bottom: clamp(40px, 6vw, 72px); position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__kicker { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero h1 .dim { color: var(--muted); }
.hero h1 .hl { color: var(--cyan); position: relative; white-space: nowrap; }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 46ch; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 34px; display: flex; gap: 26px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 13px; color: var(--muted-2);
}
.hero__meta b { color: var(--fg); font-weight: 500; }

/* terminal window */
.term {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line-2);
  border-radius: 10px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(34,211,238,.05);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 14px;
}
.term__bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.term__dot { width: 11px; height: 11px; border-radius: 50%; background: #2a3340; }
.term__dot:nth-child(1){ background:#ff5f57 } .term__dot:nth-child(2){ background:#febc2e } .term__dot:nth-child(3){ background:#28c840 }
.term__title { margin-left: 10px; color: var(--muted-2); font-size: 12px; }
.term__body { padding: 18px 18px 20px; min-height: 340px; max-height: 340px; overflow-y: auto; line-height: 1.75; }
.term__body::-webkit-scrollbar { width: 8px; } .term__body::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.term__line { white-space: pre-wrap; word-break: break-word; }
.term__line .pr { color: var(--cyan); } .term__line .cmd { color: var(--fg); }
.term__line .ok { color: var(--cyan); } .term__line .mut { color: var(--muted); } .term__line .key { color: #fbbf72; }
.term__inputline { display: flex; align-items: baseline; gap: 8px; }
.term__inputline .pr { color: var(--cyan); }
.term__input {
  flex: 1; background: transparent; border: none; color: var(--fg);
  font-family: var(--mono); font-size: 14px; caret-color: var(--cyan);
}
.term__input:focus { outline: none; }
.term__hint { margin-top: 10px; color: var(--muted-2); font-size: 12px; }

@media (max-width: 900px){
  .hero__grid { grid-template-columns: 1fr; }
  .term { order: 2; }
}

/* ticker de stack */
.ticker { border-block: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.015); position: relative; z-index: 1; }
.ticker__track { display: flex; gap: 48px; padding: 16px 0; width: max-content;
  font-family: var(--mono); font-size: 14px; color: var(--muted); animation: scroll 32s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__track span { display: inline-flex; gap: 48px; }
.ticker__track b { color: var(--cyan); font-weight: 400; margin-right: 48px; }
@keyframes scroll { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
/* padrão: cabeçalho centralizado (não fica preso num lado só) */
.sechead { margin-bottom: clamp(32px, 5vw, 54px); }
.sechead__l { max-width: 74ch; margin-inline: auto; text-align: center; }
/* variante texto + botão lado a lado (usada na home) */
.sechead.has-action { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sechead.has-action .sechead__l { margin-inline: 0; text-align: left; }
.sechead__idx { font-family: var(--mono); color: var(--muted-2); font-size: 13px; letter-spacing: .1em; margin-bottom: 16px; }
.sechead__idx b { color: var(--cyan); font-weight: 400; }
.sechead h2 {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -.02em;
}
.sechead p { color: var(--muted); margin-top: 16px; font-size: 17px; max-width: 64ch; margin-inline: auto; }
.sechead.has-action p { margin-inline: 0; }

/* ============================================================
   SERVIÇOS — índice (ls)
   ============================================================ */
.svc-index { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 62px 1fr auto auto; align-items: center; gap: 24px;
  padding: 28px 8px; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .2s, padding .2s; color: inherit;
  position: relative;
}
.svc-row__h3 { display:block; font-family: var(--sans); font-weight: 500; font-size: clamp(20px, 2.6vw, 27px); letter-spacing: -.01em; }
.svc-row__p { display:block; color: var(--muted); font-size: 15.5px; margin-top: 6px; max-width: 68ch; }
.svc-row:hover .svc-row__h3 { color: var(--cyan); }
.svc-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--cyan);
  transform: scaleY(0); transform-origin: top; transition: transform .25s;
}
.svc-row:hover { background: rgba(34,211,238,.03); padding-left: 20px; }
.svc-row:hover::before { transform: scaleY(1); }
.svc-row__num { font-family: var(--mono); color: var(--muted-2); font-size: 14px; }
.svc-row:hover .svc-row__num { color: var(--cyan); }
.svc-row__main h3 { font-family: var(--sans); font-weight: 500; font-size: clamp(20px, 2.6vw, 27px); letter-spacing: -.01em; }
.svc-row__main p { color: var(--muted); font-size: 15.5px; margin-top: 6px; max-width: 68ch; }
.svc-row__tags { font-family: var(--mono); font-size: 13px; color: var(--muted); text-align: right; white-space: nowrap; }
.svc-row__tags span { display: block; }
.svc-row__plus { font-family: var(--mono); color: var(--muted-2); font-size: 22px; transition: color .2s, transform .2s; }
.svc-row:hover .svc-row__plus { color: var(--cyan); transform: rotate(90deg); }
@media (max-width: 720px){
  .svc-row { grid-template-columns: 38px 1fr; gap: 14px; }
  .svc-row__tags { display: none; }
}

/* cards de categoria (grid) — usado em serviços.html */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; background: rgba(255,255,255,.015);
  transition: border-color .22s, transform .22s, background .22s;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); background: rgba(34,211,238,.03); }
.card__ico { font-family: var(--mono); color: var(--cyan); font-size: 15px; margin-bottom: 20px; display: inline-block;
  border: 1px solid var(--line-2); border-radius: var(--r); padding: 6px 10px; }
.card h3 { font-family: var(--sans); font-weight: 600; font-size: 21px; margin-bottom: 12px; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 18px; display: grid; gap: 9px; }
.card li { font-family: var(--mono); font-size: 13.5px; color: var(--muted); display: flex; gap: 10px; }
.card li::before { content: "›"; color: var(--cyan); }

/* ============================================================
   PROCESSO (comandos)
   ============================================================ */
.steps { display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 26px clamp(20px,3vw,34px);
  background: rgba(255,255,255,.012); transition: background .2s; }
.step:hover { background: rgba(34,211,238,.03); }
.step__cmd { font-family: var(--mono); font-size: 14px; color: var(--cyan); white-space: nowrap; padding-top: 3px; }
.step__cmd::before { content: "$ "; color: var(--muted-2); }
.step h3 { font-family: var(--sans); font-weight: 500; font-size: 20px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 640px){ .step { grid-template-columns: 1fr; gap: 10px; } }

/* ============================================================
   PRINCÍPIOS / NÚMEROS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
@media (max-width: 820px){ .grid-2 { grid-template-columns: 1fr; } }

.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stat { background: var(--ink-1); padding: 30px 24px; }
.stat b { font-family: var(--sans); font-weight: 700; font-size: clamp(30px,5vw,46px); color: var(--cyan); display: block; letter-spacing: -.02em; line-height: 1; }
.stat span { font-family: var(--mono); font-size: 13px; color: var(--muted); display: block; margin-top: 10px; }
@media (max-width: 640px){ .stats { grid-template-columns: 1fr; } }

.plist { display: grid; gap: 2px; }
.pitem { padding: 22px 0; border-bottom: 1px solid var(--line); }
.pitem__k { font-family: var(--mono); font-size: 13px; color: var(--cyan); margin-bottom: 8px; }
.pitem__k::before { content: "// "; color: var(--muted-2); }
.pitem h3 { font-family: var(--sans); font-weight: 500; font-size: 20px; margin-bottom: 6px; }
.pitem p { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  border: 1px solid var(--line-2); border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-1));
  position: relative;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 120%, rgba(34,211,238,.12), transparent 60%);
  pointer-events: none;
}
.cta__in { padding: clamp(40px,6vw,72px) var(--gutter); position: relative; text-align: center; }
.cta__prompt { font-family: var(--mono); color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.cta__prompt .pr { color: var(--cyan); }
.cta h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(28px,4.5vw,48px); letter-spacing: -.02em; line-height: 1.05; max-width: 18ch; margin: 0 auto 28px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { border-top: 1px solid var(--line); padding-block: 56px 34px; position: relative; z-index: 1; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 900px){ .foot__grid { grid-template-columns: 1fr 1fr; } }
.foot__brand img { height: 46px; width: auto; margin-bottom: 20px; }
.foot__brand p { color: var(--muted); font-size: 15px; max-width: 34ch; }
.foot__col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.foot__col a, .foot__col span { display: block; color: var(--muted); font-size: 15px; padding: 5px 0; transition: color .18s; font-family: var(--mono); }
.foot__col a:hover { color: var(--cyan); }
.foot__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 24px; font-family: var(--mono); font-size: 13px; color: var(--muted-2); }
.foot__bottom a:hover { color: var(--cyan); }
@media (max-width: 720px){ .foot__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   PAGE HEADER (páginas internas)
   ============================================================ */
.phead { padding-top: clamp(48px,7vw,90px); padding-bottom: clamp(30px,4vw,48px); }
.phead__path { font-family: var(--mono); font-size: 13px; color: var(--muted-2); margin-bottom: 22px; }
.phead__path .pr { color: var(--cyan); }
.phead h1 { font-family: var(--sans); font-weight: 600; font-size: clamp(36px,6vw,60px); letter-spacing: -.02em; line-height: 1.04; }
.phead p { color: var(--muted); font-size: clamp(16px,2vw,19px); max-width: 56ch; margin-top: 20px; }

/* ============================================================
   SOBRE
   ============================================================ */
.prose { max-width: 66ch; }
.prose p { color: var(--muted); margin-bottom: 20px; font-size: 17px; }
.prose p b, .prose p strong { color: var(--fg); font-weight: 600; }
.codeblock {
  font-family: var(--mono); font-size: 14px; background: var(--ink-1);
  border: 1px solid var(--line); border-radius: 10px; padding: 24px; overflow-x: auto; line-height: 1.9;
  white-space: pre-wrap; word-break: break-word;
}
.codeblock .k { color: var(--cyan); } .codeblock .s { color: #fbbf72; } .codeblock .c { color: var(--muted-2); } .codeblock .v { color: var(--fg); }

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,56px); align-items: start; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--mono); font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field label .pr { color: var(--cyan); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--ink-1); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 13px 15px; color: var(--fg); font-family: var(--mono); font-size: 15px; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--glow); outline: none; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-info { display: grid; gap: 2px; }
.ci-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.ci-item__k { font-family: var(--mono); font-size: 13px; color: var(--cyan); min-width: 92px; padding-top: 2px; }
.ci-item__k::before { content: "// "; color: var(--muted-2); }
.ci-item a, .ci-item span { font-family: var(--mono); font-size: 15px; color: var(--fg); }
.ci-item a:hover { color: var(--cyan); }
.ci-item small { display: block; color: var(--muted); font-family: var(--sans); font-size: 14px; margin-top: 4px; }
.formnote { font-family: var(--mono); font-size: 12.5px; color: var(--muted-2); margin-top: 8px; }

/* placeholder amarelo p/ dados a preencher */
.todo { color: #fbbf72 !important; }

/* ============================================================
   BASE DE AJUDA (/ajuda)
   ============================================================ */
.chip.is-on { border-color: var(--cyan); color: var(--ink); background: var(--cyan); }
.chip.is-on::before { color: rgba(6,35,46,.5); }
.kb-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px,4vw,44px); }
.kb-count { color: var(--muted-2); font-size: 12px; }
.chip.is-on .kb-count { color: rgba(6,35,46,.55); }

.kb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.kb-card {
  display: flex; flex-direction: column; color: inherit;
  border: 1px solid var(--line); border-radius: 12px; padding: 26px 26px 24px;
  background: rgba(255,255,255,.015); transition: border-color .2s, transform .2s, background .2s;
}
.kb-card:hover { border-color: var(--cyan); transform: translateY(-3px); background: rgba(34,211,238,.03); }
.kb-card__cat { font-family: var(--mono); font-size: 12px; color: var(--cyan); margin-bottom: 12px; }
.kb-card__cat::before { content: "// "; color: var(--muted-2); }
.kb-card__title { font-family: var(--sans); font-weight: 600; font-size: 19px; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 10px; }
.kb-card__ex { color: var(--muted); font-size: 14.5px; flex: 1; }
.kb-card__go { margin-top: 18px; color: var(--cyan); font-size: 13.5px; display: inline-flex; gap: 8px; }
.kb-card:hover .kb-card__go .arw { transform: translateX(4px); }

/* artigo */
.kb-wrap { max-width: 780px; margin-inline: auto; }
.kb-tag { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--cyan);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 5px 14px; margin-bottom: 18px; }
.kb-tag:hover { border-color: var(--cyan); }
.kb-title { font-family: var(--sans); font-weight: 600; font-size: clamp(28px,4.5vw,44px); line-height: 1.08; letter-spacing: -.02em; }
.kb-meta { font-size: 13px; color: var(--muted-2); margin: 14px 0 30px; }
.kb-content { font-size: 17px; color: var(--fg); line-height: 1.75; }
.kb-content p { margin: 0 0 18px; color: #d7dee7; }
.kb-content h2 { font-family: var(--sans); font-weight: 600; font-size: 25px; letter-spacing: -.01em; margin: 40px 0 14px; }
.kb-content h3 { font-family: var(--sans); font-weight: 600; font-size: 20px; margin: 30px 0 12px; }
.kb-content ul, .kb-content ol { margin: 0 0 18px; padding-left: 24px; color: #d7dee7; }
.kb-content li { margin-bottom: 8px; }
.kb-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 2px; }
.kb-content strong { color: #fff; }
.kb-content pre { background: var(--ink-1); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 18px 20px; overflow-x: auto; margin: 0 0 20px; }
.kb-content pre code { font-family: var(--mono); font-size: 14px; color: var(--cyan); background: none; padding: 0; }
.kb-content code { font-family: var(--mono); font-size: .9em; color: var(--cyan); background: rgba(34,211,238,.09);
  padding: 2px 6px; border-radius: 5px; }
.kb-content img { max-width: 100%; border-radius: 10px; margin: 10px 0 20px; }

/* texto local da cidade */
.city-about { max-width: 840px; }
.city-about p { color: #d7dee7; font-size: 17px; line-height: 1.75; margin-bottom: 16px; }
.city-about p:last-child { margin-bottom: 0; }

/* botão copiar nos blocos de comando */
.kb-content pre { position: relative; padding-right: 82px; }
.copy-btn { position: absolute; top: 10px; right: 10px; font-family: var(--mono); font-size: 12px; color: var(--muted);
  background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 6px; padding: 5px 11px; cursor: pointer;
  transition: color .18s, border-color .18s, background .18s; }
.copy-btn:hover { color: var(--cyan); border-color: var(--cyan); }
.copy-btn.ok { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }

/* busca da base de ajuda */
.kb-search { position: relative; display: flex; align-items: center; gap: 10px; margin-bottom: 22px; flex-wrap: wrap;
  border: 1px solid var(--line-2); border-radius: 10px; padding: 8px 8px 8px 16px; background: var(--ink-1); }
.kb-ac { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40; background: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; display: none; box-shadow: 0 22px 54px -18px rgba(0,0,0,.75); }
.kb-ac.on { display: block; }
.kb-ac a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.kb-ac a:last-child { border-bottom: none; }
.kb-ac a:hover, .kb-ac a.sel { background: rgba(34,211,238,.07); }
.kb-ac__t { font-family: var(--sans); font-size: 14.5px; color: var(--fg); }
.kb-ac__c { font-family: var(--mono); font-size: 11px; color: var(--cyan); flex-shrink: 0; }
.kb-search:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--glow); }
.kb-search__pr { color: var(--cyan); font-family: var(--mono); font-weight: 700; }
.kb-search input[type=search] { flex: 1; min-width: 180px; background: none; border: none; outline: none;
  color: var(--fg); font-family: var(--mono); font-size: 15px; padding: 8px 0; }
.kb-search__clear { font-family: var(--mono); font-size: 13px; color: var(--muted-2); padding: 0 8px; }
.kb-search__clear:hover { color: var(--cyan); }

/* paginação */
.kb-pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 40px; }
.kb-pager a { font-family: var(--mono); font-size: 14px; color: var(--muted); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 10px 18px; transition: color .18s, border-color .18s; }
.kb-pager a:hover { color: var(--cyan); border-color: var(--cyan); }
.kb-pager__info { color: var(--muted-2); font-size: 14px; }

/* captcha do feedback */
.kb-fb__capt label b { color: var(--cyan); }

/* feedback do manual */
.kb-fb { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 30px; }
.kb-fb h3 { font-family: var(--sans); font-weight: 600; font-size: 21px; margin: 10px 0 8px; }
.kb-fb > p.mut { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.kb-fb__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 640px){ .kb-fb__row { grid-template-columns: 1fr; } }
.kb-fb .field label { color: var(--muted); }
.kb-fb__ok { font-family: var(--mono); color: var(--cyan); font-size: 15px; border: 1px solid rgba(34,211,238,.4);
  background: rgba(34,211,238,.06); border-radius: 10px; padding: 18px 20px; }

.kb-cta { margin: 44px 0; padding: 28px; border: 1px solid var(--line-2); border-radius: 12px;
  background: linear-gradient(160deg, rgba(34,211,238,.05), var(--ink-1)); text-align: center; }
.kb-cta p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.kb-related { border-top: 1px solid var(--line); padding-top: 26px; }
.kb-related ul { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.kb-related a { font-family: var(--mono); font-size: 15px; color: var(--muted); }
.kb-related a:hover { color: var(--cyan); }

/* reveal on scroll — só esconde quando há JS (.js no <html>); sem JS, tudo visível */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   CRÉDITO — feito em Içara/SC/Brasil
   ============================================================ */
.foot__made {
  display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 13px; color: var(--muted); text-align: center;
}
.foot__made .heart { color: #ff5f6d; font-style: normal; }
.foot__made .place { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.foot__made .flag {
  height: 13px; width: auto; border-radius: 2px; display: inline-block;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18); object-fit: cover;
}
.foot__made .sep { color: var(--muted-2); }

/* ============================================================
   BOTÃO FLUTUANTE — WhatsApp
   ============================================================ */
.wa-float {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55), 0 0 0 1px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
}
.wa-float svg { width: 32px; height: 32px; fill: #fff; position: relative; z-index: 1; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; z-index: 0; animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 38px -8px rgba(37,211,102,.7); }
.wa-float__tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink-2); color: var(--fg); border: 1px solid var(--line-2);
  font-family: var(--mono); font-size: 13px; padding: 8px 12px; border-radius: var(--r);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
}
.wa-float:hover .wa-float__tip { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes wa-pulse { 0%{ transform: scale(1); opacity:.55 } 70%,100%{ transform: scale(1.6); opacity:0 } }
@media (prefers-reduced-motion: reduce){ .wa-float::before { animation: none; } }
@media (max-width: 560px){
  .wa-float { width: 54px; height: 54px; } .wa-float svg { width: 28px; height: 28px; }
  .wa-float__tip { display: none; }
}

/* ============================================================
   MODAL DE CAPTURA DE LEAD (antes do WhatsApp)
   ============================================================ */
.lead-modal { position: fixed; inset: 0; z-index: 200; background: rgba(4,8,12,.74); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 20px; }
.lead-modal.on { display: flex; }
.lead-modal__box { background: var(--ink-1); border: 1px solid var(--line-2); border-radius: 16px; padding: 34px 30px;
  max-width: 410px; width: 100%; position: relative; text-align: center; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lead-modal__x { position: absolute; top: 14px; right: 16px; background: none; border: none; color: var(--muted-2); font-size: 24px; line-height: 1; cursor: pointer; }
.lead-modal__x:hover { color: var(--fg); }
.lead-modal__ico { width: 58px; height: 58px; border-radius: 16px; background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.4); display: grid; place-items: center; margin: 0 auto 16px; }
.lead-modal__ico svg { width: 30px; height: 30px; fill: #25D366; }
.lead-modal h3 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin-bottom: 8px; }
.lead-modal p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.lead-modal input { width: 100%; background: var(--ink-2); border: 1px solid var(--line-2); border-radius: 8px;
  padding: 13px 15px; color: var(--fg); font-family: var(--mono); font-size: 15px; margin-bottom: 12px; }
.lead-modal input:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px var(--glow); }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav__drop { position: relative; }
.nav__droptrig { display: inline-flex; align-items: center; gap: 5px; }
.nav__droptrig.is-active { color: var(--fg); }
.nav__caret { font-size: 10px; color: var(--muted-2); transition: transform .2s; }
.nav__drop:hover .nav__caret, .nav__drop:focus-within .nav__caret { transform: rotate(180deg); color: var(--cyan); }
.nav__dropmenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px;
  background: rgba(15,21,29,.97); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 10px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.nav__drop:hover .nav__dropmenu, .nav__drop:focus-within .nav__dropmenu { opacity: 1; visibility: visible; transform: none; }
.nav__dropmenu a { padding: 10px 12px; border-radius: var(--r); white-space: nowrap; color: var(--muted); }
.nav__dropmenu a::before { content: "~/"; color: var(--muted-2); }
.nav__dropmenu a:hover, .nav__dropmenu a[aria-current="page"] { color: var(--cyan); background: rgba(34,211,238,.06); }
@media (max-width: 820px){
  .nav__drop { width: 100%; }
  .nav__dropmenu {
    position: static; opacity: 1; visibility: visible; transform: none; min-width: 0;
    background: transparent; border: none; box-shadow: none; padding: 2px 0 8px 14px;
    border-left: 1px solid var(--line); margin-left: 6px;
  }
  .nav__caret { display: none; }
}

/* ============================================================
   CARDS CLICÁVEIS + IMAGENS
   ============================================================ */
.card--link { display: flex; flex-direction: column; color: inherit; }
.card--link .card__go { margin-top: auto; padding-top: 18px; font-family: var(--mono); font-size: 14px; color: var(--cyan); display: inline-flex; align-items: center; gap: 8px; }
.card--link .card__go .arw { transition: transform .18s; }
.card--link:hover .card__go .arw { transform: translateX(4px); }
.card--link ul { margin-bottom: 6px; }

/* moldura de imagem — cor real, integrada ao dark */
.shot { position: relative; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: var(--ink-1); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot--tinted::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,17,23,.15), rgba(13,17,23,.55));
  mix-blend-mode: multiply;
}
.shot__glow { box-shadow: 0 30px 70px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(34,211,238,.08); }

/* card de produto/serviço com miniatura de imagem */
.mcard {
  display: flex; flex-direction: column; color: inherit;
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: rgba(255,255,255,.015); transition: border-color .22s, transform .22s;
}
.mcard:hover { border-color: var(--line-2); transform: translateY(-3px); }
.mcard__img { position: relative; aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--line); }
.mcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.mcard:hover .mcard__img img { transform: scale(1.05); }
.mcard__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(13,17,23,.7)); }
.mcard__tag { position: absolute; top: 12px; left: 12px; z-index: 1; font-family: var(--mono); font-size: 12px;
  background: rgba(13,17,23,.8); border: 1px solid var(--line-2); color: var(--cyan); padding: 5px 10px; border-radius: 100px; }
.mcard__body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.mcard__body h3 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin-bottom: 10px; letter-spacing: -.01em; }
.mcard__body p { color: var(--muted); font-size: 15.5px; }
.mcard__price { font-family: var(--mono); color: var(--fg); font-size: 14px; margin-top: 16px; }
.mcard__price b { color: var(--cyan); font-size: 22px; font-weight: 700; }
.mcard__go { margin-top: auto; padding-top: 20px; font-family: var(--mono); font-size: 14px; color: var(--cyan); display: inline-flex; gap: 8px; }
.mcard:hover .mcard__go .arw { transform: translateX(4px); }

/* hero de página com imagem (split) */
.phero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,60px); align-items: center; }
.phero .shot { aspect-ratio: 4/3; }
@media (max-width: 860px){ .phero { grid-template-columns: 1fr; } .phero .shot { aspect-ratio: 16/9; } }

/* banner full com imagem + texto sobreposto */
.banner { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); }
.banner img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.banner__scrim { position: relative; background: linear-gradient(90deg, rgba(13,17,23,.94) 30%, rgba(13,17,23,.55) 70%, rgba(13,17,23,.3));
  padding: clamp(36px,6vw,64px) clamp(28px,5vw,56px); }
.banner__scrim h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(24px,3.5vw,38px); letter-spacing: -.02em; max-width: 20ch; }
.banner__scrim p { color: var(--muted); margin-top: 14px; max-width: 46ch; }
.banner__scrim .btn { margin-top: 26px; }

/* ============================================================
   PLANOS (pricing)
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; position: relative;
  border: 1px solid var(--line); border-radius: 12px; padding: 30px 28px;
  background: rgba(255,255,255,.015); transition: border-color .22s, transform .22s;
}
.plan:hover { border-color: var(--line-2); transform: translateY(-3px); }
.plan--featured { border-color: var(--cyan); background: linear-gradient(180deg, rgba(34,211,238,.06), rgba(255,255,255,.015)); }
.plan__badge { position: absolute; top: -12px; left: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--cyan); color: var(--ink); padding: 4px 12px; border-radius: 100px; font-weight: 600; }
.plan__name { font-family: var(--mono); font-size: 14px; color: var(--cyan); letter-spacing: .04em; margin-bottom: 14px; }
.plan__name::before { content: "> "; color: var(--muted-2); }
.plan__price { font-family: var(--sans); display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan__price .cur { font-size: 18px; color: var(--muted); }
.plan__price .val { font-size: clamp(34px,5vw,44px); font-weight: 700; letter-spacing: -.02em; color: var(--fg); line-height: 1; }
.plan__price .per { font-family: var(--mono); font-size: 13px; color: var(--muted); }
.plan__note { font-family: var(--mono); font-size: 12.5px; color: var(--muted-2); margin-bottom: 22px; }
.plan__feats { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.plan__feats li { font-size: 14.5px; color: var(--muted); display: flex; gap: 10px; align-items: flex-start; }
.plan__feats li::before { content: "✓"; color: var(--cyan); font-family: var(--mono); flex-shrink: 0; }
.plan .btn { margin-top: auto; justify-content: center; width: 100%; }

/* ============================================================
   SELO PARCEIRO (Hosteg)
   ============================================================ */
.partner {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  border: 1px solid var(--line-2); border-radius: 12px; padding: 24px 28px;
  background: linear-gradient(160deg, rgba(34,211,238,.05), var(--ink-1));
}
.partner__seal { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); }
.partner__seal::before { content: "// "; color: var(--muted-2); }
.partner__logo { height: 42px; width: auto; flex-shrink: 0; }
.partner p { color: var(--muted); font-size: 15px; flex: 1 1 300px; min-width: 0; max-width: 62ch; margin: 0; overflow-wrap: anywhere; }
.partner__div { width: 1px; align-self: stretch; background: var(--line); }
@media (max-width: 640px){ .partner__div { display: none; } }

/* strip de tecnologias/badges */
.tech-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-badge { font-family: var(--mono); font-size: 13px; color: var(--muted); border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 15px; transition: border-color .18s, color .18s; }
.tech-badge:hover { border-color: var(--cyan); color: var(--cyan); }

/* chips clicáveis (atalhos pro WhatsApp) */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 14.5px; color: var(--muted);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 12px 18px; transition: border-color .18s, color .18s, transform .18s; }
.chip::before { content: ">"; color: var(--cyan); }
.chip:hover { border-color: var(--cyan); color: var(--fg); transform: translateY(-2px); }

/* card de contato WhatsApp em destaque */
.wa-hero { display: grid; gap: 16px; }
.wa-hero__row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wa-hero__ico { width: 54px; height: 54px; border-radius: 14px; background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.4); display: grid; place-items: center; flex-shrink: 0; }
.wa-hero__ico svg { width: 30px; height: 30px; fill: #25D366; }
.wa-hero__num { font-family: var(--mono); font-size: 22px; color: var(--fg); font-weight: 500; }
.wa-hero__num small { display: block; font-size: 13px; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* lista de "incluído" em 2 colunas */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.incl li { list-style: none; font-size: 15.5px; color: var(--muted); display: flex; gap: 11px; align-items: flex-start; }
.incl li::before { content: "✓"; color: var(--cyan); font-family: var(--mono); flex-shrink: 0; }
@media (max-width: 620px){ .incl { grid-template-columns: 1fr; } }

/* breadcrumb */
.phead__path a { color: var(--muted-2); }
.phead__path a:hover { color: var(--cyan); }

/* ============================================================
   MAPA DO SITE (árvore tipo `tree`)
   ============================================================ */
.tree {
  font-family: var(--mono); font-size: 15px; line-height: 2.1;
  background: var(--ink-1); border: 1px solid var(--line); border-radius: 12px;
  padding: 28px clamp(20px,3vw,34px); overflow-x: auto;
}
.tree__root { color: var(--cyan); margin-bottom: 6px; }
.tree ul { list-style: none; padding-left: 0; margin: 0; }
.tree li { position: relative; padding-left: 26px; white-space: nowrap; }
.tree li::before { content: "├─"; position: absolute; left: 0; color: var(--muted-2); }
.tree li:last-child::before { content: "└─"; }
.tree > ul > li > ul { margin-left: 8px; border-left: 1px solid var(--line); padding-left: 8px; }
.tree a { color: var(--fg); }
.tree a:hover { color: var(--cyan); }
.tree .dir { color: var(--cyan); }
.tree .note { color: var(--muted-2); }
.tree .note::before { content: none; }

/* ============================================================
   FAQ (accordion nativo)
   ============================================================ */
.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.015); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; padding: 20px clamp(18px,3vw,26px); font-family: var(--sans); font-weight: 500;
  font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--cyan); font-size: 24px; line-height: 1; flex-shrink: 0; transition: transform .2s; }
.faq details[open] summary { color: var(--cyan); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 clamp(18px,3vw,26px) 22px; color: var(--muted); font-size: 15.5px; margin: 0; line-height: 1.7; }
.faq p b { color: var(--fg); }

/* ============================================================
   GRADE DE FERRAMENTAS (instalações)
   ============================================================ */
.tools-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 14px; }
.tool {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; text-align: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 22px 12px; min-height: 120px;
  background: rgba(255,255,255,.015); transition: border-color .2s, transform .2s, background .2s;
}
.tool:hover { border-color: var(--cyan); transform: translateY(-3px); background: rgba(34,211,238,.04); }
.tool img { height: 38px; width: auto; max-width: 76%; opacity: 1; transition: transform .2s; }
.tool:hover img { transform: scale(1.08); }
.tool__mono {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px;
  border: 1px solid var(--line-2); font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--cyan);
  background: rgba(34,211,238,.05);
}
.tool__name { font-family: var(--mono); font-size: 12.5px; color: var(--muted); line-height: 1.2; }
.tool:hover .tool__name { color: var(--fg); }

/* rota de migração servidor -> servidor */
.routes { display: flex; flex-wrap: wrap; gap: 12px; }
.route {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 14px; color: var(--muted);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 10px 18px; transition: border-color .18s, color .18s;
}
.route:hover { border-color: var(--cyan); color: var(--fg); }
.route .arr { color: var(--cyan); }

/* destaque de preço "a partir de" */
.pricetag { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--sans); }
.pricetag .from { font-family: var(--mono); font-size: 15px; color: var(--muted); }
.pricetag .val { font-size: clamp(40px,6vw,60px); font-weight: 700; letter-spacing: -.02em; color: var(--cyan); line-height: 1; }
