/* =============================================================
   W2 Med — Medicina e Segurança do Trabalho
   Sistema visual: editorial técnico. Papel quente, tinta escura,
   hairlines, tipografia serifada de display + mono para dados.
   ============================================================= */

/* -------------------------------------------------------------
   01. TOKENS
   ------------------------------------------------------------- */
:root {
  /* ---------------------------------------------------------------
     FONTE DE DISPLAY — títulos, nomes dos laudos, citações, números.
     Para trocar, mexa só nestas quatro linhas e no <link> do
     index.html. Ver _teste-tipografia.html para comparar opções.
     --------------------------------------------------------------- */
  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --display-w: 600;
  --display-w-2: 500;
  --display-track: -0.035em;
  --display-scale: 0.94;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --ink: #101f1c;
  --ink-2: #3d4d49;
  --ink-3: #4e5955;
  --ink-4: #5e6965;

  --paper: #f5f3ee;
  --paper-2: #eeebe3;
  --paper-3: #e5e1d7;
  --white: #ffffff;

  --line: #d9d4c8;
  --line-soft: #e6e2d8;

  --accent: #0e6a5e;
  --accent-deep: #0a4f46;
  --accent-soft: #dfeae6;
  --leaf: #4b9d41;
  --signal: #a8442a;
  --signal-soft: #f0e2dc;
  --wa: #1faa55;

  --night: #0e1c1a;
  --night-2: #16302c;
  --night-line: rgba(245, 243, 238, 0.14);
  --night-text: #d9d5cc;
  --night-mute: #8b9895;

  --r: 3px;
  --r-lg: 6px;

  --sp: clamp(76px, 9vw, 136px);
  --gutter: clamp(20px, 4vw, 40px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------------------------------------------------------------
   02. BASE
   ------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  font-feature-settings: "ss01", "cv05";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* textura de papel — quase imperceptível, mata o "plástico" digital */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon--fill {
  fill: currentColor;
  stroke: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -------------------------------------------------------------
   03. TIPOGRAFIA
   ------------------------------------------------------------- */
.display {
  font-family: var(--display);
  font-weight: var(--display-w);
  letter-spacing: var(--display-track);
  color: var(--ink);
}

.display em {
  font-style: italic;
  color: var(--accent);
}

/* todo texto em fonte de display divide o mesmo ajuste ótico */
.panel .panel__big, .spec__name, .exams h3, .steps__i h3, .band h3,
.quote p, .faq__q span, .nums__v, .sheet__nav a {
  letter-spacing: var(--display-track);
}

.h-hero {
  font-size: calc(clamp(2.7rem, 6vw, 5.1rem) * var(--display-scale));
  line-height: 0.98;
}

.h-sec {
  font-size: calc(clamp(2rem, 3.9vw, 3.3rem) * var(--display-scale));
  line-height: 1.04;
}

.h-cta {
  font-size: calc(clamp(2.2rem, 5vw, 4.2rem) * var(--display-scale));
  line-height: 1;
}

.lead {
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 56ch;
}

.mono {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* rótulo de seção: 01 / ESCOPO ------------------------------- */
.sec-tag {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.sec-tag__n {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.sec-tag__t {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.sec-tag__aside {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-4);
}

@media (max-width: 640px) {
  .sec-tag__aside {
    display: none;
  }
}

/* -------------------------------------------------------------
   04. BOTÕES
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.btn .icon {
  font-size: 1.15em;
}

.btn--solid {
  background: var(--ink);
  color: var(--paper);
}

.btn--solid:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.btn--line {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn--line:hover {
  border-color: var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}

.btn--ghost {
  padding-inline: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding-bottom: 10px;
}

.btn--ghost .icon {
  transition: transform 0.25s var(--ease);
}

.btn--ghost:hover .icon {
  transform: translate(3px, -3px);
}

.btn--on-dark {
  background: var(--paper);
  color: var(--night);
}

.btn--on-dark:hover {
  background: var(--white);
  color: var(--night);
}

.btn--line-dark {
  border-color: var(--night-line);
  color: var(--paper);
}

.btn--line-dark:hover {
  border-color: var(--paper);
  background: rgba(245, 243, 238, 0.06);
  color: var(--paper);
}

.btn--sm {
  padding: 11px 17px;
  font-size: 0.86rem;
}

/* -------------------------------------------------------------
   05. CABEÇALHO
   ------------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245, 243, 238, 0.82);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-head.is-stuck {
  border-bottom-color: var(--line);
  background: rgba(245, 243, 238, 0.94);
}

.site-head__in {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  height: 74px;
}

.brand {
  display: block;
  flex: none;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-right: auto;
}

.nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width 0.28s var(--ease);
}

.nav a:hover {
  color: var(--ink);
}

.nav a:hover::after {
  width: 100%;
}

.head-side {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.head-tel {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}

.head-tel:hover {
  color: var(--accent);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--ink);
}

.burger .icon {
  font-size: 1.2rem;
}

@media (max-width: 1080px) {

  .nav,
  .head-tel {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .head-side {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .head-side .btn {
    display: none;
  }

  .brand img {
    height: 34px;
  }

  .site-head__in {
    height: 64px;
  }
}

/* menu mobile ------------------------------------------------ */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 22px var(--gutter) 34px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.sheet.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.sheet__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sheet__nav {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  overflow-y: auto;
}

.sheet__nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--ink);
}

.sheet__nav span {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--ink-4);
  letter-spacing: 0.12em;
}

.sheet__foot {
  margin-top: auto;
  padding-top: 26px;
  display: grid;
  gap: 12px;
}

/* -------------------------------------------------------------
   06. HERO
   ------------------------------------------------------------- */
.hero {
  padding: clamp(48px, 6vw, 84px) 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}

@media (max-width: 940px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .hero__meta .mono+.mono::before {
    display: none;
  }
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.hero__meta .mono+.mono::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 1px;
  margin-right: 14px;
  vertical-align: middle;
  background: var(--line);
}

.hero__meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(75, 157, 65, 0.18);
}

.h-hero {
  margin-bottom: 26px;
  max-width: 15ch;
}

@media (max-width: 940px) {
  .h-hero {
    max-width: none;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  margin: clamp(26px, 3vw, 38px) 0 0;
}

/* faixa de dados sob o hero */
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(44px, 5vw, 70px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.facts__i {
  background: var(--paper);
  padding: 22px 22px 22px 0;
}

.facts__i:not(:first-child) {
  padding-left: 22px;
}

.facts__k {
  display: block;
  margin-bottom: 8px;
}

.facts__v {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

@media (max-width: 720px) {
  .facts {
    grid-template-columns: 1fr;
  }

  .facts__i,
  .facts__i:not(:first-child) {
    padding: 16px 0;
  }
}

/* retrato */
.hero__shot {
  position: relative;
}

.hero__shot img {
  width: 100%;
  border-radius: var(--r-lg);
  filter: contrast(1.02);
}

.shot-cap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.shot-cap>span:first-child {
  white-space: nowrap;
  color: var(--ink-4);
}

.shot-cap b {
  color: var(--ink);
  font-weight: 500;
}

/* -------------------------------------------------------------
   07. TICKER DE NORMAS
   ------------------------------------------------------------- */
.ticker {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  overflow: hidden;
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: run 46s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__track li {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
}

.ticker__track li::after {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.55;
}

@keyframes run {
  to {
    transform: translateX(-50%);
  }
}


/* -------------------------------------------------------------
   07b. ILUSTRAÇÕES SVG ANIMADAS
   ------------------------------------------------------------- */
.viz {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.viz text {
  font-family: var(--mono);
  font-weight: 500;
}

.v-lbl {
  font-size: 10px;
  letter-spacing: 1.6px;
  fill: #8b9895;
}

.v-lbl--on {
  fill: #d9d5cc;
}

.v-lbl--ink {
  fill: var(--ink-3);
}

.v-mini {
  font-size: 8.5px;
  letter-spacing: 1.2px;
  fill: #8b9895;
}

.v-mini--on {
  fill: #d9d5cc;
}

.v-mini--ink {
  fill: var(--ink-3);
}

.v-row {
  font-size: 9px;
  letter-spacing: 0.9px;
  fill: #a9b4b1;
}

.v-tag {
  font-size: 10px;
  letter-spacing: 1.6px;
  fill: var(--leaf);
}

.v-tag--ink {
  fill: var(--accent);
}

.v-rule {
  stroke: rgba(245, 243, 238, 0.14);
  stroke-width: 1;
}

.v-rule--ink {
  stroke: var(--line);
}

.v-hair {
  stroke: var(--ink-4);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.55;
}

/* --- matriz de risco (hero) ---------------------------------- */
.v-cell {
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
}

html.js .v-cell {
  opacity: 0;
}

.v-s0 {
  fill: none;
  stroke: rgba(245, 243, 238, 0.14);
}

.v-s1 {
  fill: rgba(75, 157, 65, 0.20);
  stroke: rgba(75, 157, 65, 0.38);
}

.v-s2 {
  fill: rgba(216, 180, 99, 0.20);
  stroke: rgba(216, 180, 99, 0.42);
}

.v-s3 {
  fill: rgba(168, 68, 42, 0.30);
  stroke: rgba(168, 68, 42, 0.58);
}

.v-key {
  stroke-width: 1;
}

.is-in .v-cell {
  animation: vCell 0.5s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.028s + 0.25s);
}

@keyframes vCell {
  from {
    opacity: 0;
    transform: scale(0.86);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-scan {
  fill: var(--leaf);
  opacity: 0;
  display: none;
}

html.js .v-scan {
  display: block;
}

.is-in .v-scan {
  animation: vScan 5.5s cubic-bezier(0.6, 0, 0.4, 1) 1.6s infinite;
}

@keyframes vScan {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  8%,
  60% {
    opacity: 0.45;
  }

  70%,
  100% {
    transform: translateY(386px);
    opacity: 0;
  }
}

.v-track {
  fill: rgba(245, 243, 238, 0.14);
}

.v-fill {
  fill: var(--leaf);
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0.82);
}

html.js .v-fill {
  transform: scaleX(0);
}

.is-in .v-fill {
  animation: vFill 1.5s var(--ease) 0.9s forwards;
}

@keyframes vFill {
  to {
    transform: scaleX(0.82);
  }
}

.v-seal {
  fill: none;
  stroke: var(--leaf);
  stroke-width: 1.2;
}

.v-check {
  fill: none;
  stroke: var(--leaf);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 20;
}

html.js .v-seal {
  opacity: 0;
}

html.js .v-check {
  stroke-dashoffset: 20;
}

.is-in .v-seal {
  animation: vFade 0.5s var(--ease) 2.1s forwards;
}

.is-in .v-check {
  animation: vDraw 0.5s var(--ease) 2.3s forwards;
}

@keyframes vFade {
  to {
    opacity: 1;
  }
}

@keyframes vDraw {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- ciclo do colaborador (faixa) ---------------------------- */
html.js .v-card {
  opacity: 0;
  transform: translateY(10px);
}

.is-in .v-card {
  animation: vUp 0.6s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.11s + 0.15s);
}

@keyframes vUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.v-drop {
  stroke: var(--line);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

html.js .v-drop {
  stroke-dashoffset: 46;
}

html.js .v-drop--low {
  stroke-dashoffset: 42;
}

.is-in .v-drop {
  animation: vDrop 0.5s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.11s + 0.4s);
}

@keyframes vDrop {
  to {
    stroke-dashoffset: 0;
  }
}

.v-rail {
  stroke: var(--line);
  stroke-width: 1.5;
}

.v-rail-on {
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-dasharray: 688;
}

html.js .v-rail-on {
  stroke-dashoffset: 688;
}

.is-in .v-rail-on {
  animation: vRail 1.8s var(--ease) 0.3s forwards;
}

@keyframes vRail {
  to {
    stroke-dashoffset: 0;
  }
}

.v-node {
  fill: var(--accent);
  transform-box: fill-box;
  transform-origin: center;
}

html.js .v-node {
  opacity: 0;
}

.is-in .v-node {
  animation: vPop 0.45s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.11s + 0.55s);
}

@keyframes vPop {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.v-pulse {
  fill: var(--leaf);
  opacity: 0;
  display: none;
}

html.js .v-pulse {
  display: block;
}

.is-in .v-pulse {
  animation: vRun 5.5s linear 2s infinite;
}

@keyframes vRun {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  6%,
  88% {
    opacity: 1;
  }

  100% {
    transform: translateX(688px);
    opacity: 0;
  }
}

.v-evt {
  fill: rgba(75, 157, 65, 0.14);
  stroke: rgba(75, 157, 65, 0.5);
}

html.js .v-evt {
  fill: none;
  stroke: rgba(245, 243, 238, 0.2);
}

.is-in .v-evt {
  animation: vEvt 0.6s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.18s + 1.6s);
}

@keyframes vEvt {
  to {
    fill: rgba(75, 157, 65, 0.14);
    stroke: rgba(75, 157, 65, 0.5);
  }
}

/* itens de grid não podem exceder a coluna */
.hero__grid>*,
.sec-intro>*,
.risk>*,
.esoc>*,
.band>*,
.exams>*,
.steps__i,
.quote,
.spec__row>* {
  min-width: 0;
}

/* -------------------------------------------------------------
   08. SEÇÕES GENÉRICAS
   ------------------------------------------------------------- */
.sec {
  padding: var(--sp) 0;
}

.sec--tight {
  padding: clamp(56px, 6vw, 92px) 0;
}

.sec--paper2 {
  background: var(--paper-2);
}

.sec-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 68px);
}

@media (max-width: 860px) {
  .sec-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }
}

/* -------------------------------------------------------------
   09. RISCO / NR-1  (bloco escuro)
   ------------------------------------------------------------- */
.night {
  background: var(--night);
  color: var(--night-text);
}

.night .display,
.night h3,
.night h4 {
  color: var(--paper);
}

.night .lead {
  color: var(--night-mute);
}

.night .sec-tag {
  border-bottom-color: var(--night-line);
}

.night .sec-tag__t {
  color: var(--night-mute);
}

.night .sec-tag__n {
  color: var(--leaf);
}

.night .sec-tag__aside {
  color: var(--night-mute);
}

.night .mono {
  color: var(--night-mute);
}

.risk {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
}

@media (max-width: 940px) {
  .risk {
    grid-template-columns: 1fr;
  }
}

.risk__list {
  border-top: 1px solid var(--night-line);
}

.risk__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--night-line);
}

.risk__n {
  grid-row: span 2;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--signal);
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.risk__list h3 {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.risk__list p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--night-mute);
  line-height: 1.55;
  max-width: 52ch;
}

.panel {
  border: 1px solid var(--night-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  background: var(--night-2);
  position: sticky;
  align-self: start;
  top: 108px;
}

@media (max-width: 940px) {
  .panel {
    position: static;
  }
}

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--night-line);
}

.panel__flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
}

.panel .panel__big {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(2rem, 3.4vw, 2.8rem) * var(--display-scale));
  line-height: 1.06;
  color: var(--paper);
  margin-bottom: 14px;
}

.panel p {
  color: var(--night-mute);
  font-size: 0.95rem;
}

.panel .panel__big {
  color: var(--paper);
}

.panel__rows {
  margin: 24px 0;
  border-top: 1px solid var(--night-line);
}

.panel__rows div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--night-line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--night-mute);
}

.panel__rows b {
  color: var(--paper);
  font-weight: 500;
}

/* faixa de impacto */
.impact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.impact li {
  padding: 7px 13px;
  border: 1px solid var(--night-line);
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--night-mute);
}

.impact li:first-child {
  border-color: transparent;
  padding-left: 0;
  color: var(--signal);
}

/* -------------------------------------------------------------
   10. ESCOPO — lista de especificação
   ------------------------------------------------------------- */
.spec {
  border-top: 1px solid var(--line);
}

.spec__row {
  display: grid;
  grid-template-columns: 56px minmax(180px, 0.9fr) minmax(0, 1.5fr) auto;
  gap: 10px 28px;
  align-items: baseline;
  padding: clamp(24px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease);
}

.spec__row:hover {
  background: var(--paper-2);
}

.spec__n {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.spec__name {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(1.5rem, 2.3vw, 2rem) * var(--display-scale));
  line-height: 1.05;
  color: var(--ink);
}

.spec__norm {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.spec__desc {
  font-size: 0.97rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.spec__desc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 12px;
}

.spec__desc li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: var(--ink-3);
}

.spec__desc li .icon {
  font-size: 0.9rem;
  color: var(--leaf);
  stroke-width: 2;
}

.spec__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}

.spec__go .icon {
  font-size: 0.95rem;
}

.spec__row:hover .spec__go {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

@media (max-width: 900px) {
  .spec__row {
    grid-template-columns: 40px 1fr auto;
  }

  .spec__desc {
    grid-column: 2 / -1;
  }
}

@media (max-width: 560px) {
  .spec__row {
    grid-template-columns: 34px 1fr;
  }

  .spec__go {
    display: none;
  }
}

/* faixa de exames complementares */
.exams {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(40px, 4vw, 56px);
  padding: clamp(28px, 3.4vw, 42px);
  background: var(--night);
  border-radius: var(--r-lg);
  color: var(--night-text);
}

@media (max-width: 860px) {
  .exams {
    grid-template-columns: 1fr;
  }
}

.exams h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(1.6rem, 2.6vw, 2.2rem) * var(--display-scale));
  line-height: 1.08;
  color: var(--paper);
  margin-bottom: 12px;
}

.exams p {
  color: var(--night-mute);
  font-size: 0.96rem;
}

.exams__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--night-line);
  border-block: 1px solid var(--night-line);
}

@media (max-width: 1080px) {
  .exams__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .exams__list {
    grid-template-columns: 1fr;
  }
}

.exams__list li {
  background: var(--night);
  padding: 13px 14px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night-text);
}

/* -------------------------------------------------------------
   11. PROCESSO
   ------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps__i {
  background: var(--paper);
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 32px);
  transition: background-color 0.3s var(--ease);
}

.sec--paper2 .steps__i {
  background: var(--paper-2);
}

.steps__i:hover {
  background: var(--white);
}

.steps__n {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: clamp(28px, 4vw, 52px);
}

.steps__i h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(1.35rem, 2vw, 1.7rem) * var(--display-scale));
  line-height: 1.12;
  margin-bottom: 12px;
}

.steps__i p {
  font-size: 0.94rem;
  color: var(--ink-2);
  margin: 0;
}

/* -------------------------------------------------------------
   12. E-SOCIAL — painel de transmissão (UI real, sem render 3D)
   ------------------------------------------------------------- */
.esoc {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

@media (max-width: 960px) {
  .esoc {
    grid-template-columns: 1fr;
  }
}

.console {
  border: 1px solid var(--night-line);
  border-radius: var(--r-lg);
  background: var(--night);
  color: var(--night-text);
  overflow: hidden;
  box-shadow: 0 1px 0 var(--line), 0 24px 48px -32px rgba(16, 31, 28, 0.5);
}

.console__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--night-line);
  background: var(--night-2);
}

.console__bar .mono {
  color: var(--paper);
  letter-spacing: 0.14em;
  font-size: 0.66rem;
}

.console__live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--night-mute);
}

.console__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  animation: beat 2.4s ease-in-out infinite;
}

@keyframes beat {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.console__cols,
.console__row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 116px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
}

.console__cols {
  border-bottom: 1px solid var(--night-line);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-mute);
}

.console__row {
  border-bottom: 1px solid var(--night-line);
}

.console__row:last-of-type {
  border-bottom: 0;
}

.console__code {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.console__what {
  font-size: 0.9rem;
  color: var(--night-text);
  line-height: 1.4;
}

.console__what small {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night-mute);
  margin-top: 4px;
}

.tag {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag--ok {
  color: #7cc98a;
  border-color: rgba(124, 201, 138, 0.35);
  background: rgba(124, 201, 138, 0.08);
}

.tag--wait {
  color: #d8b463;
  border-color: rgba(216, 180, 99, 0.35);
  background: rgba(216, 180, 99, 0.08);
}

.console__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  padding: 13px 18px;
  border-top: 1px solid var(--night-line);
  background: var(--night-2);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--night-mute);
}

@media (max-width: 520px) {

  .console__cols,
  .console__row {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
  }

  .console__cols span:last-child {
    display: none;
  }

  .tag {
    grid-column: 2;
    justify-self: start;
  }

  .tag {
    margin-top: 6px;
  }
}

.esoc__notes {
  margin-top: clamp(26px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.esoc__notes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  color: var(--ink-2);
}

.esoc__notes .icon {
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 3px;
}

/* -------------------------------------------------------------
   13. NÚMEROS
   ------------------------------------------------------------- */
.nums {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--night-line);
}

@media (max-width: 860px) {
  .nums {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .nums {
    grid-template-columns: 1fr;
  }
}

.nums__i {
  background: var(--night);
  padding: clamp(26px, 3vw, 38px) clamp(18px, 2vw, 28px);
}

.nums__v {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(2.6rem, 4.6vw, 3.9rem) * var(--display-scale));
  line-height: 1;
  color: var(--paper);
  margin-bottom: 12px;
}

.nums__v span {
  color: var(--leaf);
}

.nums__k {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--night-mute);
  line-height: 1.5;
}

/* -------------------------------------------------------------
   14. ATENDIMENTO (faixa com foto)
   ------------------------------------------------------------- */
.band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

@media (max-width: 900px) {
  .band {
    grid-template-columns: 1fr;
  }
}

.band__img {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.band__img img {
  width: 100%;
}

.band h3 {
  font-family: var(--display);
  font-weight: var(--display-w);
  font-size: calc(clamp(1.7rem, 2.8vw, 2.4rem) * var(--display-scale));
  line-height: 1.08;
  margin-bottom: 14px;
}

.band__list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.band__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.band__list b {
  color: var(--ink);
  font-weight: 500;
}

/* -------------------------------------------------------------
   15. DEPOIMENTOS
   ------------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 900px) {
  .quotes {
    grid-template-columns: 1fr;
  }
}

.quote {
  background: var(--paper);
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.quote__mark {
  font-family: var(--display);
  font-weight: var(--display-w-2);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  height: 1.1rem;
}

.quote p {
  font-family: var(--display);
  font-weight: var(--display-w-2);
  font-size: calc(clamp(1.15rem, 1.55vw, 1.35rem) * var(--display-scale));
  line-height: 1.36;
  color: var(--ink);
  margin: 0;
  flex: 1;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote__ini {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ink-2);
  flex: none;
}

.quote__by strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.quote__by span {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* -------------------------------------------------------------
   16. FAQ
   ------------------------------------------------------------- */
.faq {
  border-top: 1px solid var(--line);
}

.faq__i {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 2.2vw, 28px) 0;
  text-align: left;
  color: var(--ink);
}

.faq__q em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 7px;
}

.faq__q span {
  font-family: var(--display);
  font-weight: var(--display-w-2);
  font-size: calc(clamp(1.15rem, 1.7vw, 1.5rem) * var(--display-scale));
  line-height: 1.2;
  transition: color 0.2s var(--ease);
}

.faq__q:hover span {
  color: var(--accent);
}

.faq__q i {
  position: relative;
  width: 15px;
  height: 15px;
  margin-top: 8px;
  flex: none;
}

.faq__q i::before,
.faq__q i::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease);
}

.faq__q i::before {
  inset: 7px 0 auto;
  height: 1px;
}

.faq__q i::after {
  inset: 0 7px auto;
  width: 1px;
  height: 15px;
}

.faq__i.is-open .faq__q i::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq__i.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a>div {
  overflow: hidden;
}

.faq__a p {
  max-width: 70ch;
  padding: 0 0 clamp(22px, 2.4vw, 30px) 64px;
  font-size: 0.97rem;
  color: var(--ink-2);
}

@media (max-width: 560px) {
  .faq__q {
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
  }

  .faq__a p {
    padding-left: 42px;
  }
}

/* -------------------------------------------------------------
   17. FECHAMENTO
   ------------------------------------------------------------- */
.close-cta {
  padding: var(--sp) 0;
  background: var(--night);
  color: var(--night-text);
}

.close-cta .h-cta {
  color: var(--paper);
  max-width: 18ch;
}

.close-cta .h-cta em {
  color: var(--leaf);
  font-style: italic;
}

.close-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: end;
}

@media (max-width: 860px) {
  .close-cta__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

.close-cta p {
  color: var(--night-mute);
  font-size: 1.02rem;
  max-width: 46ch;
  margin-bottom: 26px;
}

.close-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.close-cta__side {
  border-top: 1px solid var(--night-line);
}

.close-cta__side li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--night-line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--night-mute);
  line-height: 1.5;
}

.close-cta__side .icon {
  color: var(--leaf);
  font-size: 1rem;
  margin-top: 1px;
}

/* -------------------------------------------------------------
   18. RODAPÉ
   ------------------------------------------------------------- */
.foot {
  background: var(--night);
  color: var(--night-mute);
  padding-bottom: 26px;
  border-top: 1px solid var(--night-line);
}

.foot__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.87fr));
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(48px, 6vw, 76px) 0 clamp(38px, 4vw, 56px);
}

@media (max-width: 940px) {
  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .foot__grid {
    grid-template-columns: 1fr;
  }
}

.foot__logo img {
  height: 52px;
  margin-bottom: 20px;
}

.foot__bio {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 34ch;
  color: var(--night-mute);
}

.foot h4 {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--night-mute);
  margin-bottom: 18px;
}

.foot ul {
  display: grid;
  gap: 11px;
}

.foot ul a,
.foot ul span {
  font-size: 0.92rem;
  color: var(--night-text);
}

.foot ul a:hover {
  color: var(--leaf);
}

.foot__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--night-line);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--night-mute);
}

.foot__bar a {
  color: var(--night-text);
}

.foot__bar a:hover {
  color: var(--leaf);
}

/* -------------------------------------------------------------
   19. WHATSAPP FLUTUANTE
   ------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 600;
  box-shadow: 0 12px 30px -12px rgba(16, 31, 28, 0.55);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease), background-color 0.25s var(--ease);
}

.wa-float.is-in {
  transform: none;
  opacity: 1;
}

.wa-float:hover {
  background: var(--accent-deep);
  color: var(--white);
}

.wa-float .icon {
  font-size: 1.25rem;
  color: var(--wa);
}

.wa-float:hover .icon {
  color: var(--white);
}

@media (max-width: 560px) {
  .wa-float span {
    display: none;
  }

  .wa-float {
    padding: 15px;
  }
}

/* -------------------------------------------------------------
   20. REVEAL
   ------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .v-cell,
  .v-seal,
  .v-card,
  .v-node {
    opacity: 1;
    transform: none;
  }

  .v-check,
  .v-drop,
  .v-rail-on {
    stroke-dashoffset: 0;
  }

  .v-fill {
    transform: scaleX(0.82);
  }

  .v-evt {
    fill: rgba(75, 157, 65, 0.14);
    stroke: rgba(75, 157, 65, 0.5);
  }

  .v-scan,
  .v-pulse {
    display: none;
  }

  .wa-float {
    transform: none;
    opacity: 1;
  }
}