/* Polimento 88 — site fictício de demonstração da NeuralWeb.
   CSS puro, sem build. Celular primeiro; depois tablet (701 px) e computador (1024 px). */

:root {
  --bg: #0c0c0d;
  --bg-2: #131315;
  --card: #161618;
  --line: rgba(255, 255, 255, .1);
  --line-2: rgba(255, 255, 255, .2);
  --tx: #f4f3ef;
  --tx-2: #b3b2ab;
  --y: #ffd23f;
  --y-hover: #ffdf73;
  --y-ink: #141100;
  --paper: #efeee9;
  --ink: #111113;
  --ink-2: #4d4c47;
  --ink-line: rgba(17, 17, 19, .14);
  --field: #8b8a84;
  --err: #b42318;
  --r: 6px;
  --r-lg: 10px;
  --bar: 44px;
  --hdr: 64px;
  --pad: clamp(16px, 5vw, 48px);
  --max: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --f: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --m: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
@media (min-width: 1024px) { :root { --hdr: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar) + var(--hdr) + 12px); }
body {
  margin: 0; background: var(--bg); color: var(--tx);
  font: 400 16px/1.6 var(--f);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure, address, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--y); color: var(--y-ink); }
:focus-visible { outline: 2px solid var(--y); outline-offset: 3px; border-radius: 4px; }
.sec--paper :focus-visible, .sec--y :focus-visible, .form :focus-visible, .ficha :focus-visible { outline-color: var(--ink); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.i--fill { fill: currentColor; stroke: none; }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.wrap { width: min(var(--max), 100%); margin-inline: auto; padding-inline: var(--pad); }
.skip {
  position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; border-radius: var(--r);
  background: var(--y); color: var(--y-ink); font-weight: 700; text-decoration: none; transition: top .2s;
}
.skip:focus { top: calc(var(--bar) + 8px); }

/* ---------- Faixa da NeuralWeb ---------- */
.demo-bar {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--bar);
  display: flex; align-items: center; gap: 2px;
  padding-inline: max(4px, env(safe-area-inset-left)) max(4px, env(safe-area-inset-right));
  background: #0a0d13; color: #d3dbe6; font: 500 12px/1.2 var(--f);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.demo-bar a {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding-inline: 6px;
  border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background-color .2s;
}
.demo-bar a:hover { background: rgba(255, 255, 255, .07); }
.demo-bar :focus-visible { outline-color: #7ec4ff; }
.demo-back { color: #e8eef6; }
.demo-txt { flex: 1; min-width: 0; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #d3dbe6; }
.demo-cta { color: #7ec4ff; font-weight: 700; }
.demo-bar .lg { display: none; }
@media (min-width: 400px) { .demo-bar { font-size: 12.5px; } .demo-bar a { padding-inline: 8px; } }
@media (min-width: 760px) {
  .demo-bar { gap: 8px; padding-inline: 16px; font-size: 13px; }
  .demo-bar .lg { display: inline; }
  .demo-bar .sm { display: none; }
}

/* ---------- Cabeçalho ---------- */
.hdr {
  position: fixed; left: 0; right: 0; top: var(--bar); z-index: 80; height: var(--hdr); color: #fff;
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease);
}
html:not(.js) .hdr, .hdr.is-solid, .hdr.is-menu {
  background: rgba(12, 12, 13, .9);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line);
}
.hdr.is-menu { background: var(--bg); }
.hdr-in { height: 100%; display: flex; align-items: center; gap: 12px; }

.logo { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; margin-right: auto; color: #fff; text-decoration: none; }
.logo-mark { width: 34px; height: 34px; flex: none; }
.logo-name { font: 700 17px/1 var(--f); letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.logo-name b { margin-left: .3em; color: var(--y); }

.nav { display: none; }
.hdr .hdr-cta { display: none; }
html:not(.js) .hdr .hdr-cta { display: inline-flex; }
.burger {
  display: none; width: 44px; height: 44px; padding: 0; flex: none; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  border: 1px solid rgba(255, 255, 255, .24); border-radius: var(--r); background: rgba(12, 12, 13, .35); color: #fff; cursor: pointer;
}
html.js .burger { display: inline-flex; }
.burger span { display: block; width: 20px; height: 2px; background: currentColor; transition: transform .35s var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (min-width: 560px) { .hdr .hdr-cta { display: inline-flex; } }
@media (min-width: 1024px) {
  .logo-mark { width: 38px; height: 38px; }
  .logo-name { font-size: 19px; }
  .nav { display: flex; align-items: center; gap: 4px; margin-right: 10px; }
  .nav a {
    position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
    font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: #e7e6e1;
  }
  .nav a::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; background: var(--y);
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
  }
  .nav a:hover::after, .nav a.is-on::after { transform: scaleX(1); }
  html.js .burger { display: none; }
}

/* Menu do celular */
.menu {
  position: fixed; left: 0; right: 0; bottom: 0; top: calc(var(--bar) + var(--hdr)); z-index: 79;
  display: flex; flex-direction: column; gap: 26px;
  padding: 8px var(--pad) calc(28px + env(safe-area-inset-bottom));
  background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.menu-main a {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px;
  border-bottom: 1px solid var(--line); text-decoration: none;
  font: 700 clamp(1.7rem, 8vw, 2.4rem)/1 var(--f); letter-spacing: -.03em; text-transform: uppercase;
}
.menu-main .i { width: 26px; height: 26px; color: var(--y); }
.menu-more { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.menu-more a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border: 1px solid var(--line-2); border-radius: var(--r);
  font-size: 14px; font-weight: 500; text-decoration: none; color: var(--tx);
}
.menu-info { color: var(--tx-2); font-size: 14px; }
@media (min-width: 1024px) { .menu { display: none; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 1.5px solid transparent; border-radius: var(--r);
  font: 700 14px/1.15 var(--f); letter-spacing: .06em; text-transform: uppercase; text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color .25s, border-color .25s, color .25s, box-shadow .3s, transform .25s var(--ease);
}
.btn .i { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.btn:hover .i:not(.i--fill) { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 44px; padding: 0 16px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--y { background: var(--y); color: var(--y-ink); }
.btn--y:hover { background: var(--y-hover); box-shadow: 0 12px 30px -12px rgba(255, 210, 63, .7); }
.btn--line { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--line:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #26262b; }
.btn--ink { border-color: var(--ink); color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: #fff; }

/* ---------- Títulos e textos ---------- */
.sec { position: relative; padding-block: clamp(64px, 11vw, 136px); }
.sec--dark2 { background: var(--bg-2); }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--y { background: var(--y); color: var(--ink); }
.kicker {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  font: 500 12px/1 var(--m); letter-spacing: .14em; text-transform: uppercase; color: var(--tx-2);
}
.kicker span {
  display: inline-grid; place-items: center; min-width: 32px; height: 22px; padding: 0 6px; border-radius: 4px;
  background: var(--y); color: var(--y-ink); letter-spacing: .04em;
}
.kicker::after { content: ""; flex: 0 1 96px; height: 1px; background: currentColor; opacity: .35; }
.sec--paper .kicker { color: var(--ink-2); }
.sec--y .kicker { color: var(--ink); }
.sec--y .kicker span { background: var(--ink); color: var(--y); }
.h2 {
  font: 700 clamp(2.15rem, 8.4vw, 4.4rem)/.96 var(--f); letter-spacing: -.035em; text-transform: uppercase;
  text-wrap: balance; overflow-wrap: break-word;
}
.lead { max-width: 56ch; margin-top: 18px; font-size: clamp(1.02rem, 1.4vw, 1.14rem); color: var(--tx-2); }
.sec--paper .lead { color: var(--ink-2); }
.sec--y .lead { color: #2e2900; }

/* ---------- Abertura ---------- */
.hero {
  position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 100vh; min-height: 100svh; padding-top: calc(var(--bar) + var(--hdr)); background: #050505; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #050505; }
.hero-poster, .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero-video { opacity: 0; transition: opacity .8s linear; }
.hero-video.is-on { opacity: 1; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, .74) 0%, rgba(5, 5, 5, .1) 24%, rgba(5, 5, 5, .18) 40%, rgba(12, 12, 13, .84) 66%, var(--bg) 100%);
}
.hero-in { position: relative; padding-top: 24px; padding-bottom: 26px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1.2 var(--m); letter-spacing: .18em; text-transform: uppercase; color: var(--y);
}
.eyebrow::before { content: ""; width: 10px; height: 10px; flex: none; background: var(--y); border-radius: 2px; }
.hero-title {
  margin-top: 16px; font: 700 clamp(3.1rem, 15vw, 6.4rem)/.9 var(--f); letter-spacing: -.045em; text-transform: uppercase;
}
.hero-title > span { display: block; }
.hero-title b { color: var(--y); }
.hero-lead { max-width: 34ch; margin-top: 18px; font-size: clamp(1.04rem, 1.5vw, 1.2rem); line-height: 1.5; color: #deddd7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-ctas .btn { flex: 1 1 auto; padding-inline: 18px; }
.hero-ctas .btn--y { flex-grow: 1.6; }
.hero-tags {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin-top: 26px; padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font: 500 11px/1.3 var(--m); letter-spacing: .06em; text-transform: uppercase; color: #d6d5cf;
}
.hero-tags li::before { content: "— "; color: var(--y); }
/* entrada da abertura */
.hero-copy > * { animation: rise .9s var(--ease) both; }
.hero-title > span { animation: rise .9s var(--ease) both; }
.hero-title > span:nth-child(1) { animation-delay: .08s; }
.hero-title > span:nth-child(2) { animation-delay: .16s; }
.hero-title > span:nth-child(3) { animation-delay: .24s; }
.hero-copy > .hero-lead { animation-delay: .34s; }
.hero-copy > .hero-ctas { animation-delay: .42s; }
.hero-copy > .hero-tags { animation-delay: .5s; }
.hero-copy > .hero-title { animation: none; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (min-width: 480px) {
  .hero-tags { font-size: 12px; }
}
/* Vídeo horizontal: a mídia é mais larga que a área visível, então o lado direito do quadro
   (onde fica a grade do carro) nunca aparece, em qualquer proporção de tela. */
@media (min-width: 701px) {
  .hero-poster, .hero-video { width: 125%; object-position: 20% 50%; }
  @media (max-width: 1023px) and (orientation: portrait) { .hero-poster, .hero-video { object-position: 45% 50%; } }
  .hero-in { padding-bottom: 40px; }
  .hero-ctas .btn { flex: 0 0 auto; padding-inline: 26px; }
  .hero-tags { max-width: 560px; }
}
@media (min-width: 1024px) {
  .hero { min-height: clamp(660px, 100svh, 1040px); justify-content: center; background: var(--bg); }
  .hero-media {
    inset: calc(var(--bar) + var(--hdr)) 0 0 auto; width: 54%;
    clip-path: polygon(88px 0, 100% 0, 100% 100%, 0 100%, 0 88px);
  }
  .hero-poster, .hero-video { width: 135%; object-position: 18% 50%; }
  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(12, 12, 13, .55) 0%, rgba(12, 12, 13, 0) 26%),
      linear-gradient(0deg, rgba(12, 12, 13, .62) 0%, rgba(12, 12, 13, 0) 30%);
  }
  .hero-media::before { content: ""; position: absolute; z-index: 1; left: 0; bottom: 0; width: 6px; height: 36%; background: var(--y); }
  .hero-in { padding-block: 56px 64px; }
  .hero-copy { max-width: calc(46vw - max(var(--pad), (100vw - var(--max)) / 2 + var(--pad)) - 28px); }
  .hero-title { margin-top: 22px; font-size: clamp(3.6rem, 6.4vw, 6.9rem); }
  .hero-lead { margin-top: 24px; }
  .hero-ctas { margin-top: 32px; }
  .hero-tags { margin-top: 44px; }
}
@media (min-width: 1600px) { .hero-media { width: 52%; } .hero-copy { max-width: calc(48vw - max(var(--pad), (100vw - var(--max)) / 2 + var(--pad)) - 28px); } }

/* ---------- Faixa com os serviços ---------- */
.ticker { overflow: hidden; background: var(--y); color: var(--y-ink); }
.ticker-track { display: flex; align-items: center; width: max-content; animation: ticker 44s linear infinite; }
.ticker-track span { padding: 17px 22px; font: 700 clamp(1rem, 2.2vw, 1.3rem)/1 var(--f); letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; }
.ticker-track i { flex: none; width: 13px; height: 13px; background: currentColor; clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%); }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- O estúdio ---------- */
.est-top { display: grid; gap: 26px; }
.est-statement { max-width: 38ch; font: 500 clamp(1.2rem, 2.1vw, 1.62rem)/1.42 var(--f); letter-spacing: -.012em; color: var(--tx); }
.est-statement em { font-style: normal; color: var(--y); }
.est-grid { display: grid; gap: 34px; margin-top: 48px; }
.est-fig img { width: 100%; height: auto; aspect-ratio: 560 / 250; object-fit: cover; border-radius: var(--r-lg); background: #000; }
.est-fig figcaption, .proc-fig figcaption, .cui-fig figcaption {
  display: flex; align-items: center; gap: 10px; margin-top: 14px;
  font: 500 12px/1.45 var(--m); letter-spacing: .04em; color: var(--tx-2);
}
.est-fig figcaption::before, .proc-fig figcaption::before, .cui-fig figcaption::before { content: ""; flex: none; width: 18px; height: 2px; background: var(--y); }
.pillars { border-top: 1px solid var(--line); }
.pillar { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 4px 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.pillar-ico { grid-row: span 2; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: var(--r); color: var(--y); }
.pillar-ico .i { width: 28px; height: 28px; }
.pillar h3 { align-self: end; font: 700 1.05rem/1.2 var(--f); letter-spacing: .02em; text-transform: uppercase; }
.pillar p { color: var(--tx-2); font-size: .97rem; }
@media (min-width: 1024px) {
  .est-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: end; }
  .est-grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 72px; align-items: center; margin-top: 72px; }
}

/* ---------- Serviços ---------- */
.svc-head { display: grid; gap: 22px; margin-bottom: 40px; }
.svc-intro .lead { margin-top: 0; }
.svc-intro .btn { margin-top: 22px; }
.svc-list { border-top: 2px solid var(--ink); }
.svc {
  display: grid; grid-template-columns: 52px minmax(0, 1fr); column-gap: 16px; row-gap: 4px; align-items: center;
  padding: 24px 0 18px; border-bottom: 1px solid var(--ink-line);
}
.svc-n { grid-column: 2; grid-row: 1; align-self: end; font: 500 12px/1 var(--m); letter-spacing: .12em; color: var(--ink-2); }
.svc-ico { grid-column: 1; grid-row: 1 / span 2; display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--r); background: var(--ink); color: var(--y); }
.svc-ico .i { width: 30px; height: 30px; stroke-width: 1.7; }
.svc-t { grid-column: 2; grid-row: 2; align-self: start; font: 700 1.4rem/1.1 var(--f); letter-spacing: -.015em; text-transform: uppercase; }
.svc-body { grid-column: 1 / -1; margin-top: 12px; color: var(--ink-2); }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.svc-tags span {
  padding: 5px 8px; border: 1px solid rgba(17, 17, 19, .22); border-radius: 4px;
  font: 500 11px/1 var(--m); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2);
}
.svc-link {
  grid-column: 1 / -1; justify-self: start; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 6px;
  font: 700 13px/1 var(--f); letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.svc-link .i { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.svc-link:hover .i { transform: translateX(4px); }
@media (min-width: 1024px) {
  .svc-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 72px; align-items: end; margin-bottom: 56px; }
  .svc {
    grid-template-columns: 44px 56px minmax(0, .85fr) minmax(0, 1.3fr) auto; column-gap: 28px; align-items: center;
    margin-inline: -18px; padding: 26px 18px; border-radius: var(--r);
    background: linear-gradient(var(--y), var(--y)) no-repeat 0 0 / 0 100%;
    transition: background-size .55s var(--ease);
  }
  .svc-n { grid-column: 1; grid-row: 1; align-self: center; }
  .svc-ico { grid-column: 2; grid-row: 1; width: 56px; height: 56px; }
  .svc-t { grid-column: 3; grid-row: 1; align-self: center; font-size: 1.55rem; }
  .svc-body { grid-column: 4; grid-row: 1; margin-top: 0; }
  .svc-tags { margin-top: 10px; }
  .svc-link { grid-column: 5; grid-row: 1; justify-self: end; margin-top: 0; }
}
@media (min-width: 1024px) and (hover: hover) {
  .svc:hover { background-size: 100% 100%; }
  .svc:hover .svc-body, .svc:hover .svc-n, .svc:hover .svc-tags span { color: var(--ink); }
  .svc:hover .svc-tags span { border-color: rgba(17, 17, 19, .4); }
}

/* ---------- Antes e depois ---------- */
.ba-grid { display: grid; gap: 40px; }
.ba-points { display: grid; gap: 4px; margin-top: 26px; }
.ba-points li { display: flex; align-items: center; gap: 12px; min-height: 40px; font-weight: 500; }
.ba-points .i { color: var(--y); }
.ba-stage {
  position: relative; overflow: hidden; aspect-ratio: 540 / 460; border-radius: var(--r-lg); background: #000;
  touch-action: pan-y; -webkit-user-select: none; user-select: none; cursor: ew-resize; --pos: 50%;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-before .ba-img { filter: contrast(.74) brightness(.9) saturate(.5) blur(.4px); }
.ba-before::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(222, 220, 208, .12), rgba(222, 220, 208, .04)); }
.ba-swirl { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba-tag {
  position: absolute; top: 12px; padding: 7px 10px; border-radius: 4px; background: rgba(12, 12, 13, .8);
  font: 500 11px/1 var(--m); letter-spacing: .16em; text-transform: uppercase; color: #fff; pointer-events: none;
}
.ba-tag--a { left: 12px; }
.ba-tag--d { right: 12px; background: var(--y); color: var(--y-ink); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; pointer-events: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 0 1px rgba(0, 0, 0, .25); pointer-events: none; }
.ba-handle i {
  position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 48px; height: 48px; margin: -24px 0 0 -24px;
  border-radius: 50%; background: var(--y); color: var(--y-ink); box-shadow: 0 10px 26px rgba(0, 0, 0, .45);
}
.ba-handle svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.ba-range:focus-visible ~ .ba-handle i { outline: 3px solid #fff; outline-offset: 3px; }
.ba figcaption {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 16px; margin-top: 14px;
  font: 500 12px/1.4 var(--m); letter-spacing: .08em; text-transform: uppercase; color: var(--tx-2);
}
.ba figcaption > span:first-child { color: var(--y); }
html:not(.js) .ba-hint, html:not(.js) .ba-range { display: none; }
@media (min-width: 640px) and (max-width: 1023px) { .ba { max-width: 600px; } }
@media (min-width: 1024px) {
  .ba-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 72px; align-items: center; }
}

/* ---------- Pacotes ---------- */
.pac-head { display: grid; gap: 18px; }
.pac-side .lead { margin-top: 0; }
.porte { margin-top: 24px; padding: 0; border: 0; min-width: 0; }
.porte legend { margin-bottom: 10px; padding: 0; font: 500 12px/1 var(--m); letter-spacing: .14em; text-transform: uppercase; color: var(--tx-2); }
.seg { display: inline-grid; grid-template-columns: 1fr 1fr; padding: 4px; border: 1px solid var(--line-2); border-radius: var(--r-lg); background: var(--bg-2); }
.seg label { position: relative; }
.seg input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.seg span {
  display: grid; place-items: center; min-height: 44px; padding: 0 16px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; white-space: nowrap; color: var(--tx-2); transition: background-color .25s, color .25s;
}
.seg input:checked + span { background: var(--y); color: var(--y-ink); }
.seg input:focus-visible + span { outline: 2px solid var(--y); outline-offset: 3px; }
html:not(.js) .porte { display: none; }
.pac-note {
  display: flex; align-items: flex-start; gap: 10px; margin: 32px 0 18px; padding: 12px 14px;
  border: 1px dashed rgba(255, 210, 63, .5); border-radius: var(--r); font-size: .93rem; color: var(--tx);
}
.pac-note .i { width: 20px; height: 20px; margin-top: 1px; color: var(--y); }
.pac-note b { font-weight: 600; color: var(--y); }
.plans { display: grid; gap: 16px; }
.plan {
  position: relative; display: flex; flex-direction: column; padding: 26px 22px 22px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--card);
}
.plan--hi { border-color: rgba(255, 210, 63, .6); background: linear-gradient(180deg, rgba(255, 210, 63, .09), rgba(255, 210, 63, 0) 42%), var(--card); }
.plan--hi::before { content: ""; position: absolute; top: -1px; left: 22px; right: 22px; height: 3px; border-radius: 0 0 3px 3px; background: var(--y); }
.plan-n { font: 500 12px/1 var(--m); letter-spacing: .12em; color: var(--y); }
.plan-t { margin-top: 12px; font: 700 1.9rem/1 var(--f); letter-spacing: -.03em; text-transform: uppercase; }
.plan-d { margin-top: 10px; font-size: .97rem; color: var(--tx-2); }
.plan-list { display: grid; gap: 10px; margin: 22px 0; padding-top: 20px; border-top: 1px solid var(--line); }
.plan-list li { display: flex; gap: 10px; font-size: .97rem; }
.plan-list .i { width: 20px; height: 20px; margin-top: 2px; color: var(--y); stroke-width: 2.2; }
.plan-price { display: grid; gap: 6px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.plan-from, .plan-il { font: 500 11px/1.3 var(--m); letter-spacing: .1em; text-transform: uppercase; color: var(--tx-2); }
.price { font: 700 2.5rem/1 var(--f); letter-spacing: -.035em; transition: opacity .25s; }
.price--txt { font-size: 1.45rem; line-height: 1.15; letter-spacing: -.02em; }
.is-swap .price, .is-swap .price-x { opacity: 0; }
.plan .btn { margin-top: 20px; }
.extras { margin-top: 18px; padding: 20px 22px 16px; border: 1px solid var(--line); border-radius: var(--r-lg); }
.extras-t { font: 500 12px/1 var(--m); letter-spacing: .14em; text-transform: uppercase; color: var(--y); }
.extras ul { margin-top: 8px; }
.extras li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2px 16px; padding: 12px 0; border-bottom: 1px dashed var(--line-2); }
.extras li b { font-weight: 600; color: var(--tx); transition: opacity .25s; }
.extras li span { color: var(--tx-2); }
.extras-note { margin-top: 12px; font: 500 11px/1.3 var(--m); letter-spacing: .1em; text-transform: uppercase; color: var(--tx-2); }
@media (min-width: 640px) and (max-width: 899px) {
  .plan { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); column-gap: 36px; align-content: start; padding: 28px 28px 24px; }
  .plan-n, .plan-t, .plan-d, .plan-price { grid-column: 1; }
  .plan-list { grid-column: 2; grid-row: 1 / span 4; align-self: start; margin: 0; padding: 0 0 0 28px; border-top: 0; border-left: 1px solid var(--line); }
  .plan-price { margin-top: 18px; }
  .plan .btn { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .plans { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .plan { padding: 30px 26px 26px; }
  .extras ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 40px; }
}
@media (min-width: 1024px) {
  .pac-head { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 72px; align-items: end; }
}

/* ---------- Como funciona ---------- */
.proc-grid { display: grid; gap: 44px; }
.steps { margin-top: 36px; margin-left: 21px; border-left: 2px solid var(--ink); }
.step { position: relative; padding: 0 0 32px 36px; }
.step:last-child { padding-bottom: 4px; }
.step-n {
  position: absolute; left: -22px; top: -4px; display: grid; place-items: center; width: 42px; height: 46px;
  background: var(--ink); color: var(--y); font: 500 13px/1 var(--m);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.step h3 { padding-top: 6px; font: 700 1.2rem/1.2 var(--f); letter-spacing: -.005em; text-transform: uppercase; }
.step p { margin-top: 8px; color: var(--ink-2); }
.proc-fig img { width: 100%; height: auto; aspect-ratio: 432 / 480; object-fit: cover; border-radius: var(--r-lg); background: #000; }
.proc-fig figcaption { color: var(--ink-2); }
@media (min-width: 640px) and (max-width: 1023px) { .proc-fig { max-width: 420px; } }
@media (min-width: 1024px) {
  .proc-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 80px; align-items: center; }
  .steps { margin-top: 44px; }
}

/* ---------- Leva e traz ---------- */
.leva-grid { display: grid; gap: 40px; align-items: center; }
.leva-list { display: grid; gap: 8px; margin: 24px 0 30px; }
.leva-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.leva-list .i { width: 22px; height: 22px; stroke-width: 2.4; }
.leva-art svg { width: 100%; height: auto; }
.leva-lbl { font: 500 21px/1 var(--m); letter-spacing: .14em; fill: var(--ink); }
.leva-pill { font: 500 16px/1 var(--m); letter-spacing: .1em; fill: var(--y); }
.leva .h2 { font-size: clamp(2.15rem, 8.4vw, 3.9rem); }
.leva .h2 span { display: block; }
.route { animation: route 1.2s linear infinite; }
@keyframes route { to { stroke-dashoffset: -26.2; } }
@media (min-width: 1024px) { .leva-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; } }

/* ---------- Cuidados ---------- */
.cui-grid { display: grid; gap: 44px; }
.cui-fig { margin-top: 34px; }
.cui-fig img { width: 100%; height: auto; aspect-ratio: 600 / 270; object-fit: cover; border-radius: var(--r-lg); background: #000; }
.ficha { position: relative; padding: 26px 20px 12px; border-radius: var(--r-lg); background: var(--paper); color: var(--ink); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8); }
.ficha::before {
  content: ""; position: absolute; left: 12px; right: 12px; top: -6px; height: 12px;
  background: radial-gradient(circle at 8px 6px, var(--bg) 5px, transparent 5.5px) 0 0 / 16px 12px repeat-x;
}
.ficha-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 12px; padding-bottom: 14px; border-bottom: 2px solid var(--ink);
  font: 500 12px/1.2 var(--m); letter-spacing: .14em; text-transform: uppercase;
}
.ficha-head span:last-child { color: var(--ink-2); }
.ficha-list li { display: grid; grid-template-columns: 24px minmax(0, 1fr); align-content: start; gap: 4px 14px; padding: 16px 0; border-bottom: 1px dashed rgba(17, 17, 19, .25); }
.ficha-list li:last-child { border-bottom: 0; }
.ficha-list li::before {
  content: ""; grid-row: span 2; width: 22px; height: 22px; margin-top: 1px; border: 2px solid var(--ink); border-radius: 4px;
  background: var(--y) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 12.5 4 4L18 8' fill='none' stroke='%23111113' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.ficha-list h3 { font: 700 1rem/1.3 var(--f); letter-spacing: .01em; text-transform: uppercase; }
.ficha-list p { font-size: .96rem; color: var(--ink-2); }
@media (min-width: 640px) { .ficha { padding: 32px 30px 16px; } }
@media (min-width: 1024px) {
  .cui-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: center; }
  .ficha { padding: 34px 36px 18px; }
}

/* ---------- Dúvidas ---------- */
.faq-grid { display: grid; gap: 40px; }
.faq-head .btn { margin-top: 24px; }
.faq { border-top: 2px solid var(--ink); }
.qa { border-bottom: 1px solid var(--ink-line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 68px; padding: 16px 0;
  font: 700 1.06rem/1.35 var(--f); cursor: pointer; list-style: none; transition: color .2s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; flex: none; width: 34px; height: 34px; border-radius: var(--r);
  background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 8h10' fill='none' stroke='%23ffd23f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .35s var(--ease);
}
.qa[open] summary::after { transform: rotate(45deg); }
.qa summary:hover { color: #000; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; text-decoration-color: var(--y); }
.qa-a { padding: 0 52px 22px 0; color: var(--ink-2); }
@media (min-width: 1024px) {
  .faq-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 80px; align-items: start; }
  .faq-head { position: sticky; top: calc(var(--bar) + var(--hdr) + 32px); }
}

/* ---------- Contato / orçamento ---------- */
.contato { background: radial-gradient(56% 46% at 78% 26%, rgba(255, 210, 63, .08), rgba(255, 210, 63, 0) 72%), var(--bg); }
.ct-grid { position: relative; display: grid; gap: 40px; }
.ct-list { display: grid; gap: 2px; margin-top: 28px; }
.ct-list li { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.ct-list .i { width: 22px; height: 22px; color: var(--y); }
.ct-list a {
  display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; color: #fff;
  text-decoration: underline; text-decoration-color: rgba(255, 210, 63, .75); text-decoration-thickness: 2px; text-underline-offset: 4px;
}
.form {
  position: relative; padding: 24px 18px 20px; border-radius: var(--r-lg); background: #f4f3ef; color: var(--ink);
  color-scheme: light; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .9);
}
.form-row { display: grid; gap: 0 14px; }
.field { display: grid; gap: 8px; min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.field label, .field legend { padding: 0; font-size: .93rem; font-weight: 600; color: var(--ink); }
.field legend { margin-bottom: 8px; }
.field small { font-weight: 400; color: var(--ink-2); }
.field input[type="text"], .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1.5px solid var(--field); border-radius: var(--r);
  background: #fff; color: var(--ink); font-size: 16px; line-height: 1.35; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6b6a64; opacity: 1; }
.field input[type="text"]:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px var(--y); }
.field.is-invalid input[type="text"], .field.is-invalid .chip span { border-color: var(--err); }
.field-err { font-size: .86rem; font-weight: 600; color: var(--err); }
.field-err:empty { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips--4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.chip { position: relative; display: block; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 46px; padding: 0 12px;
  border: 1.5px solid var(--field); border-radius: var(--r); background: #fff;
  font-size: .92rem; font-weight: 600; line-height: 1.2; text-align: center; color: var(--ink);
  transition: background-color .2s, border-color .2s, color .2s;
}
.chips--4 .chip span { padding: 0 4px; }
.chip input:hover + span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip input:checked + span::before { content: ""; flex: none; width: 9px; height: 10px; background: var(--y); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }
.chip input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; box-shadow: 0 0 0 4px var(--y); }
.switch { position: relative; display: flex; align-items: center; gap: 12px; min-height: 44px; margin: -4px 0 14px; font-weight: 600; cursor: pointer; }
.switch input { position: absolute; left: 0; top: 50%; width: 46px; height: 28px; margin: -14px 0 0; opacity: 0; cursor: pointer; }
.switch-ui { position: relative; flex: none; width: 46px; height: 28px; border: 1.5px solid var(--field); border-radius: 999px; background: #dddcd5; transition: background-color .25s, border-color .25s; }
.switch-ui::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .35); transition: transform .25s var(--ease), background-color .25s;
}
.switch input:checked + .switch-ui { background: var(--ink); border-color: var(--ink); }
.switch input:checked + .switch-ui::after { transform: translateX(18px); background: var(--y); }
.switch input:focus-visible + .switch-ui { outline: 2px solid var(--ink); outline-offset: 3px; }
.form .btn--block { margin-top: 4px; }
.form .btn--y:hover { box-shadow: 0 12px 30px -14px rgba(120, 95, 0, .8); }
.form-status { margin-top: 12px; font-size: .93rem; font-weight: 600; color: var(--ink); }
.form-status:empty { display: none; }
.form-status a { display: flex; align-items: center; width: fit-content; min-height: 44px; text-underline-offset: 3px; }
.form-note { display: flex; gap: 10px; margin-top: 16px; font-size: .84rem; line-height: 1.55; color: var(--ink-2); }
.form-note .i { width: 18px; height: 18px; margin-top: 2px; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } .form { padding: 34px 30px 26px; } }
@media (min-width: 1024px) {
  .ct-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: start; }
  .ct-copy { position: sticky; top: calc(var(--bar) + var(--hdr) + 32px); }
}

/* ---------- Endereço e horário ---------- */
.end-grid { display: grid; gap: 40px; }
.end-addr { display: flex; gap: 12px; margin-top: 26px; font-style: normal; font-size: 1.08rem; line-height: 1.55; }
.end-addr .i { width: 24px; height: 24px; margin-top: 2px; }
.hours { margin-top: 26px; border-top: 2px solid var(--ink); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--ink-line); }
.hours dt { color: var(--ink-2); }
.hours dd { font-weight: 700; text-align: right; }
.end-note { margin-top: 14px; font: 500 12px/1.4 var(--m); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.end-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.end-ctas .btn { flex: 1 1 auto; }
.map { position: relative; overflow: hidden; border-radius: var(--r-lg); background: #141416; box-shadow: 0 30px 60px -40px rgba(0, 0, 0, .6); }
.map svg { width: 100%; height: auto; aspect-ratio: 1 / 1; }
.map figcaption {
  position: absolute; left: 12px; top: 12px; padding: 6px 10px; border-radius: 4px; background: rgba(12, 12, 13, .85);
  font: 500 11px/1 var(--m); letter-spacing: .12em; text-transform: uppercase; color: #d6d5cf;
}
.map-st { font: 500 11.5px/1 var(--m); letter-spacing: .16em; fill: #8e8d87; }
.map-t1 { font: 700 16px/1 var(--f); fill: #fff; }
.map-t2 { font: 400 12.5px/1 var(--f); fill: #b3b2ab; }
.map-pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.35); opacity: .7; } 100% { transform: scale(1.7); opacity: 0; } }
@media (min-width: 640px) { .map svg { aspect-ratio: 600 / 440; } .end-ctas .btn { flex: 0 0 auto; } }
@media (min-width: 1024px) { .end-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: center; } }

/* ---------- Rodapé ---------- */
.ft { padding: 64px 0 calc(96px + env(safe-area-inset-bottom)); background: #070708; color: var(--tx-2); font-size: .95rem; }
.ft-top { display: grid; gap: 36px; }
.ft-brand p { max-width: 38ch; margin-top: 16px; }
.ft-h { margin-bottom: 6px; font: 500 12px/1 var(--m); letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.ft-nav ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 16px; }
.ft-nav a, .ft-contact a { display: inline-flex; align-items: center; min-height: 44px; color: var(--tx); text-decoration: none; transition: color .2s; }
.ft-nav a:hover, .ft-contact a:hover { color: var(--y); }
.ft-contact li:not(:first-child) { padding: 8px 0; }
.ft-legal { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .86rem; }
.ft-demo {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 16px; margin-top: 20px; padding: 4px 16px;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(255, 255, 255, .03); font-size: .88rem;
}
.ft-demo p { padding: 10px 0; }
.ft-demo a { display: inline-flex; align-items: center; min-height: 44px; color: #7ec4ff; font-weight: 600; text-decoration: none; }
.ft-demo p a { display: inline; min-height: 0; }
.ft-demo a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ft :focus-visible { outline-color: #7ec4ff; }
@media (min-width: 640px) and (max-width: 899px) {
  .ft-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .ft-brand { grid-column: 1 / -1; }
}
@media (min-width: 900px) {
  .ft { padding-bottom: 44px; }
  .ft-top { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr); gap: 48px; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa {
  position: fixed; z-index: 70; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .55), 0 4px 14px rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease), opacity .3s, visibility .3s;
}
.wa:hover { transform: scale(1.06); }
.wa svg { width: 30px; height: 30px; }
.wa.is-away, html.js .wa:not(.is-on) { opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9); }
.wa:focus-visible { outline-color: #fff; outline-offset: 4px; border-radius: 50%; }

/* ---------- Revelação ao rolar (só com JavaScript) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Movimento reduzido: sem animações de entrada (o vídeo continua) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-title > span { animation: none; }
  .ticker-track, .route, .map-pulse { animation: none; }
  .svc { transition: none; }
}
