/* ============================================================
   ZYVA — CSS DE PÁGINA
   Só Serviços, Cases, Sobre, Contato e Weba carregam este
   arquivo (o Weba usa o rotator logo abaixo). A home e o blog
   não usam nada daqui e antes baixavam tudo isso à toa.
   ============================================================ */

.rot-text {
  display: inline-flex;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}

.rot-accent { color: var(--cyan); }

.rot-text-inner { display: inline-flex; }

.rot-char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

.phone-scene {
  position: relative;
  /* PALCO LIMPO: noite chapada — aurora só no hero da home e no rodapé. */
  background: var(--night);
  color: #fff;
}

.phone-track { height: auto; position: relative; }

.phone-sticky {
  position: static;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.phone-copy h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2.05rem);
  margin-bottom: 14px;
  max-width: 15ch;
}

.phone-copy h2 em { font-style: normal; }

.phone-copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
  max-width: 440px;
  margin-bottom: 26px;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 13px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--wa-green);
  position: relative;
  flex: none;
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: live-pulse 2s ease-out infinite;
}

.topic-list { display: flex; flex-direction: column; gap: 9px; max-width: 460px; }

.topic {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  text-align: left;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-26px);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.2s var(--ease-out-quint);
  will-change: transform, opacity;
}

.topic:hover { background: rgba(108, 76, 241, 0.16); border-color: rgba(108, 76, 241, 0.5); }

.topic[aria-pressed="true"] {
  /* selecao = violeta, como no resto do site */
  background: rgba(108, 76, 241, 0.28);
  border-color: var(--violet);
}

.topic-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(108, 76, 241, 0.18);
  display: grid; place-items: center;
  flex: none;
}

.topic-ico svg { width: 18px; height: 18px; stroke: #A78BFA; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.topic:nth-child(even) .topic-ico { background: rgba(34, 211, 238, 0.14); }

.topic:nth-child(even) .topic-ico svg { stroke: var(--cyan); }

.topic-txt { flex: 1; min-width: 0; }

.topic-txt b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }

.topic-txt > span { display: block; font-size: 0.8rem; color: rgba(255, 255, 255, 0.52); margin-top: 1px; }

.topic-check {
  margin-left: auto;
  width: 19px; height: 19px;
  flex: none;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.3s var(--ease-out-expo);
}

.topic[aria-pressed="true"] .topic-check { opacity: 1; transform: none; }

.topic-check svg { width: 100%; height: 100%; stroke: var(--cyan); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.phone-holder {
  perspective: 1400px;
  perspective-origin: 50% 45%;
  display: grid;
  place-items: center;
  height: 100%;
}

.phone {
  position: relative;
  width: 310px;
  height: 632px;
  transform-style: preserve-3d;
  will-change: transform;
  /* Estado de repouso agora vem do CSS, nao de um loop de rolagem.
     O aparelho ja nasce de frente e aceso: nada a esperar. */
  transform:
    rotateY(var(--ry, -9deg))
    rotateX(var(--rx, 3deg))
    rotateZ(var(--rz, 0deg))
    scale(var(--sc, 0.94))
    translateY(var(--ty, 0px));
  transition: transform 0.5s var(--ease-out-expo);
  --wake: 1;
  --glow: 1;
}

.phone-body {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(150deg, #2a2f45 0%, #12141f 42%, #0a0c14 100%);
  padding: 11px;
  transform-style: preserve-3d;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.16) inset,
    0 60px 90px -30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

.phone-body::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 45px;
  background: linear-gradient(150deg, rgba(108,76,241,0.9), rgba(34,211,238,0.55) 45%, transparent 72%);
  z-index: -1;
  opacity: calc(0.25 + var(--glow, 0) * 0.75);
  filter: blur(calc(2px + var(--glow, 0) * 16px));
  transition: opacity 0.3s ease;
}

.phone-back {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  background: linear-gradient(150deg, #1a1d2b, #0a0c14);
  transform: translateZ(-16px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-depth {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.phone-depth i {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 44px;
  background: linear-gradient(150deg, #454a63 0%, #23273a 45%, #10121c 100%);
}

.phone-depth i:nth-child(1) { transform: translateZ(-1.8px); }

.phone-depth i:nth-child(2) { transform: translateZ(-3.6px); }

.phone-depth i:nth-child(3) { transform: translateZ(-5.4px); }

.phone-depth i:nth-child(4) { transform: translateZ(-7.2px); }

.phone-depth i:nth-child(5) { transform: translateZ(-9px); }

.phone-depth i:nth-child(6) { transform: translateZ(-10.8px); }

.phone-depth i:nth-child(7) { transform: translateZ(-12.6px); }

.phone-depth i:nth-child(8) { transform: translateZ(-14.4px); }

.phone-btn { position: absolute; right: -2.5px; width: 3px; border-radius: 3px; background: #3d4258; }

.phone-btn-power { top: 168px; height: 62px; }

.phone-btn-vol { left: -2.5px; right: auto; top: 132px; height: 40px; }

.phone-btn-vol2 { left: -2.5px; right: auto; top: 182px; height: 40px; }

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: var(--wa-panel);
  display: flex;
  flex-direction: column;
  transform: translateZ(1px);
}

.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #05070c;
  opacity: calc(1 - var(--wake, 0));
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.25s linear;
}

.phone-glare {
  position: absolute;
  inset: 0;
  z-index: 15;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.05) 22%,
    transparent 46%
  );
  opacity: calc(0.85 - var(--wake, 0) * 0.55);
}

.phone-notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 98px; height: 26px;
  border-radius: 100px;
  background: #05070c;
  z-index: 12;
}

.wa-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px 7px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-head);
  flex: none;
}

.wa-status-icons { display: flex; align-items: center; gap: 5px; }

.wa-status-icons svg { width: 14px; height: 14px; fill: #fff; }

.wa-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 11px;
  background: #1f2c33;
  flex: none;
}

.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--violet);
  display: grid; place-items: center;
  flex: none;
}

.wa-avatar svg { width: 21px; height: auto; }

.wa-head-t { flex: 1; min-width: 0; }

.wa-head-t b {
  display: block;
  font-family: var(--font-head);
  font-size: 0.79rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-head-t span { display: block; font-size: 0.7rem; color: #8fa3ad; }

.wa-head-t span i { font-style: normal; color: var(--wa-green); }

.wa-head-act { display: flex; gap: 15px; }

.wa-head-act svg { width: 17px; height: 17px; stroke: #aebac1; stroke-width: 2; fill: none; }

.wa-chat {
  flex: 1;
  overflow: hidden;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #0b141a;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(108, 76, 241, 0.07), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.05), transparent 45%);
}

.wa-day {
  align-self: center;
  font-size: 0.63rem;
  color: #8fa3ad;
  background: rgba(31, 44, 51, 0.85);
  padding: 4px 11px;
  border-radius: 8px;
  margin-bottom: 2px;
}

.wa-b {
  max-width: 82%;
  padding: 8px 11px 7px;
  border-radius: 9px;
  font-size: 0.79rem;
  line-height: 1.42;
  color: #e9edef;
  position: relative;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom left;
}

.wa-in { align-self: flex-start; background: var(--wa-bubble-in); border-top-left-radius: 2px; }

.wa-meta {
  display: block;
  text-align: right;
  font-size: 0.58rem;
  color: rgba(233, 237, 239, 0.5);
  margin-top: 2px;
}

.wa-meta svg { width: 13px; height: 9px; display: inline-block; vertical-align: -1px; margin-left: 2px; fill: #53bdeb; }

.wa-typing {
  align-self: flex-start;
  background: var(--wa-bubble-in);
  border-radius: 9px;
  border-top-left-radius: 2px;
  padding: 11px 13px;
  display: none;
  gap: 4px;
}

.wa-typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #8fa3ad;
  animation: wa-type 1.3s ease-in-out infinite;
}

.wa-typing i:nth-child(2) { animation-delay: 0.18s; }

.wa-typing i:nth-child(3) { animation-delay: 0.36s; }

.wa-send {
  flex: none;
  padding: 9px 11px 15px;
  background: #1f2c33;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-input {
  flex: 1;
  background: #2a3942;
  border-radius: 100px;
  padding: 9px 14px;
  font-size: 0.76rem;
  color: #8fa3ad;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-go {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--wa-green);
  display: grid; place-items: center;
  flex: none;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}

.wa-go svg { width: 19px; height: 19px; fill: #0b141a; }

.wa-go:hover { transform: scale(1.1); }

/* (a dica "Role para abrir" e o trilho lateral saíram do HTML —
   as regras .phone-hint/.scene-rail foram removidas junto) */

@media (max-width: 1000px) {.phone-track { height: auto; }.phone { width: 250px; height: 510px; }.phone-holder { order: -1; }.topic-list { max-width: none; }
}

@media (max-width: 640px) {.phone-track { height: auto; }.phone-sticky { padding: 48px 0; }.phone { width: 170px; height: 346px; }.phone-body { border-radius: 30px; padding: 7px; }.phone-screen { border-radius: 24px; }.phone-notch { width: 66px; height: 19px; top: 7px; }.wa-status { padding: 9px 13px 5px; font-size: 0.6rem; }.wa-head { padding: 5px 9px 7px; gap: 8px; }.wa-avatar { width: 28px; height: 28px; }.wa-head-t b { font-size: 0.68rem; }.wa-head-t span { font-size: 0.6rem; }.wa-head-act { gap: 10px; }.wa-head-act svg { width: 13px; height: 13px; }.wa-chat { padding: 9px 8px; gap: 6px; }.wa-b { font-size: 0.66rem; padding: 6px 8px 5px; }.wa-day { font-size: 0.55rem; }.wa-send { padding: 6px 7px 9px; }.wa-input { font-size: 0.63rem; padding: 7px 10px; }.wa-go { width: 30px; height: 30px; }.wa-go svg { width: 15px; height: 15px; }.phone-copy > p, .live-status { display: none; }.phone-copy h2 { font-size: 1.3rem; margin-bottom: 12px; max-width: none; }.topic { padding: 8px 11px; gap: 10px; border-radius: 12px; font-size: 0.88rem; }.topic-ico { width: 28px; height: 28px; border-radius: 8px; }.topic-ico svg { width: 15px; height: 15px; }.topic-txt b { font-size: 0.85rem; }.topic-txt > span { display: none; }.topic-list { gap: 6px; }
}

@media (min-width: 1000px) and (max-height: 820px) {.phone { width: 268px; height: 546px; }.phone-copy h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }.phone-copy > p { font-size: 0.97rem; margin-bottom: 20px; }.live-status { margin-bottom: 16px; }.topic { padding: 10px 13px; }
}

@media (prefers-reduced-motion: reduce) {.phone { transform: none !important; }.topic { opacity: 1 !important; transform: none !important; }.wa-head, .wa-send { opacity: 1 !important; transform: none !important; }.phone-track { height: auto; }.phone-sticky { position: static; height: auto; padding: 60px 0; }
}

.pipeline {
  position: relative;
  /* PALCO LIMPO: noite chapada. */
  background: var(--night);
  color: #fff;
  border-radius: var(--radius-sheet);
  padding: clamp(38px, 5vw, 62px) clamp(22px, 4vw, 52px);
  overflow: hidden;
}

.pipeline h2 { color: #fff; max-width: 24ch; font-size: clamp(2.2rem, 5vw, 3.2rem); }

.pipeline h2 em { font-style: normal; }

.pipeline > p { color: rgba(255, 255, 255, 0.66); max-width: 54ch; margin: 12px 0 34px; }

.pipe-stage { position: relative; }

.pipe-svg { width: 100%; height: auto; display: block; overflow: visible; }

.pipe-line {
  fill: none;
  stroke: url(#pipeGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.pipe-rail {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.pipe-dot { fill: var(--cyan); opacity: 0; filter: drop-shadow(0 0 6px var(--cyan)); }

.pipe-nodes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: -8px;
}

.pipe-node { text-align: center; opacity: 0.32; transition: opacity 0.45s ease; }

.pipe-ico {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.5s var(--ease-out-expo), background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.pipe-ico svg { display: block; width: 22px; height: 22px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.pipe-node b { display: block; font-family: var(--font-head); font-size: 0.95rem; margin-bottom: 3px; }

.pipe-node b ~ span { display: block; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

.pipe-step {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 6px;
}

.brand-letters {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.bl-word { display: flex; gap: 8px; }

.bl-letter {
  flex: 1;
  aspect-ratio: 3 / 4;
  border: 0;
  cursor: pointer;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  color: var(--muted);
  display: grid;
  place-items: center;
  transition:
    transform 0.5s var(--ease-out-expo),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.bl-panels { position: relative; min-height: 210px; }

.bl-value {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.55s var(--ease-out-expo);
}

.bl-value h3 { font-size: 1.5rem; margin-bottom: 10px; }

.bl-value p { font-size: 1rem; }

.marquee3d {
  height: 560px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--night);
  position: relative;
  -webkit-mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 55%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 72% at 50% 50%, #000 55%, transparent 100%);
}

.m3-stage {
  position: absolute;
  top: 50%; left: 50%;
  width: 1500px; height: 1500px;
  margin: -750px 0 0 -750px;
  transform: rotateX(52deg) rotateZ(-44deg) scale(0.62);
  transform-style: preserve-3d;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.m3-col { display: flex; flex-direction: column; gap: 26px; }

.m3-col:nth-child(odd) { animation: m3-up 22s ease-in-out infinite alternate; }

.m3-col:nth-child(even) { animation: m3-down 28s ease-in-out infinite alternate; }

.m3-a { background: var(--violet); }

.m3-b { background: linear-gradient(140deg, #0B0E1A, #35307a); }

.m3-c { background: linear-gradient(140deg, #0e7490, #22D3EE); }

.m3-d { background: linear-gradient(140deg, #241b52, #6C4CF1); }

.marquee-cap {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 26px;
  text-align: center;
  background: linear-gradient(transparent, rgba(11, 14, 26, 0.9) 55%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1000px) {.brand-letters { grid-template-columns: 1fr; gap: 26px; }.bl-panels { min-height: 178px; }.marquee3d { height: 420px; }.m3-stage { transform: rotateX(52deg) rotateZ(-44deg) scale(0.42); }.pipe-stage .pipe-svg { display: none; }.pipe-nodes { grid-template-columns: 1fr; gap: 0; margin-top: 24px; }.pipe-node {
    opacity: 1; text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
    align-items: center;
    padding-bottom: 30px;
    position: relative;
  }.pipe-node:last-child { padding-bottom: 0; }.pipe-ico { grid-column: 1; grid-row: 1 / span 3; align-self: start; margin: 0; }.pipe-step { grid-column: 2; grid-row: 1; }.pipe-node b { grid-column: 2; grid-row: 2; }.pipe-node b ~ span { grid-column: 2; grid-row: 3; }.pipe-node:not(:last-child)::before {
    content: ""; position: absolute;
    left: 23px; top: 54px; bottom: -2px; width: 2px;
    border-radius: 2px;
    background: linear-gradient(to bottom, rgba(108,76,241,.75), rgba(34,211,238,.55));
  }
}

@media (max-width: 640px) {.marquee3d { height: 330px; }.m3-stage { transform: rotateX(52deg) rotateZ(-44deg) scale(0.3); }.bl-letter { border-radius: 13px; font-size: 2rem; }.pipeline { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {.m3-col { animation: none; }.bl-letter, .bl-value { transition: none; }
}

.steps { position: relative; }

.steps::before {
  content: ""; position: absolute; top: -16px; left: 2px; right: 2px; height: 3px;
  border-radius: 3px; background: var(--violet); opacity: .7;
  transform-origin: left center;
}

@media (max-width: 900px) {.steps::before { display: none; }
}

.pipe-flow {
  fill: none; stroke: rgba(34, 211, 238, 0.85);
  stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 3 30;
  animation: pipe-energy 2.8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.65));
}

.mf-w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }

.mf-wi { display: inline-block; transform: translateY(112%); transition: transform 0.8s var(--ease-out-expo); }

.mf-in .mf-wi { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {.pipe-flow { display: none; }.mf-wi { transform: none !important; transition: none !important; }
}

@keyframes live-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes wa-type {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes m3-up { from { transform: translateY(-90px); } to { transform: translateY(90px); } }
@keyframes m3-down { from { transform: translateY(90px); } to { transform: translateY(-90px); } }
@keyframes pipe-energy { to { stroke-dashoffset: -66; } }

/* ---------- Sub-nav dos Serviços com scroll-spy (N2) ---------- */
.svc-nav { position: sticky; top: 64px; z-index: 40;
  background: rgba(11,14,26,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08); }
.svc-nav-in { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
  padding: 10px 24px; scroll-behavior: smooth; }
.svc-nav-in::-webkit-scrollbar { display: none; }
.svc-nav a { flex: 0 0 auto; padding: 9px 15px; min-height: 44px; display: inline-flex;
  align-items: center; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.66); text-decoration: none; white-space: nowrap;
  border: 1px solid transparent; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.svc-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.svc-nav a.on { color: #fff; background: rgba(108,76,241,0.28); border-color: rgba(108,76,241,0.55); }
.svc-nav a:focus-visible { outline: 3px solid rgba(34,211,238,0.6); outline-offset: 2px; }
/* âncora não pode parar embaixo do cabeçalho + sub-nav.
   O valor exato vem medido pelo JS (--svc-nav-offset); 128px é o piso
   para quem está sem JS. */
.service-block { scroll-margin-top: var(--svc-nav-offset, 128px); }
.svc-chegada { animation: svc-pisca 1.6s ease-out 1; }
@keyframes svc-pisca {
  0%, 100% { box-shadow: 0 0 0 0 rgba(108,76,241,0); }
  22%      { box-shadow: 0 0 0 5px rgba(108,76,241,0.20); }
}
@media (max-width: 780px) { .svc-nav { top: 58px; } .svc-nav-in { padding: 8px 16px; } }

