/* =========================================================
   VORX — Fonte self-hosted (Archivo variável, pesos 400–800)
   ========================================================= */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/archivo-variable.woff2") format("woff2");
}

/* =========================================================
   VORX — Design System / Tokens
   ========================================================= */
:root {
  /* Marca */
  --red:        #FA3417;   /* Acento único — vermelho Vorx */
  --red-deep:   #D72808;
  --bone:       #D9D6C8;   /* Concreto / off-white */
  --ink:        #161513;   /* Fundo mais profundo */
  --ink-2:      #1E1D1B;   /* Superfície */
  --ink-3:      #262522;   /* Superfície elevada */
  --gray:       #9A9A9A;   /* Texto secundário */
  --gray-dark:  #6E6E6E;

  /* Semânticos */
  --bg:         var(--ink);
  --surface:    var(--ink-2);
  --text:       var(--bone);
  --text-dim:   var(--gray);
  --line:       rgba(217, 214, 200, 0.12);
  --line-soft:  rgba(217, 214, 200, 0.07);

  /* Tipografia */
  --font-display: "Archivo Expanded", "Archivo", system-ui, sans-serif;
  --font-sans:    "Archivo", system-ui, -apple-system, sans-serif;

  /* Forma — sistema reto/geométrico (travado) */
  --radius: 2px;

  /* Layout */
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --nav-h: 72px;

  /* Easing */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--red); color: #fff; }

/* =========================================================
   Utilitários
   ========================================================= */
.accent { color: var(--red); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), background 0.2s var(--ease),
              color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--bone); transform: translateY(-2px); }

/* CTA reaproveitável dentro das seções */
.section-cta { margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.compare__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
}
.section-cta svg,
.compare__cta .btn svg { width: 18px; height: 18px; }

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(22, 21, 19, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Wordmark — logo oficial Vorx */
.brand { display: inline-flex; align-items: center; }
.brand img {
  height: 28px;
  width: auto;
  transition: opacity 0.2s var(--ease);
}
.brand:hover img { opacity: 0.85; }

.nav__links {
  display: flex;
  gap: 2.2rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 2rem;
  overflow: hidden;
}

/* Fallback CSS caso WebGL não esteja disponível */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 70% 40%, rgba(250, 52, 23, 0.22), transparent 70%),
    radial-gradient(40% 40% at 0% 90%, rgba(217, 214, 200, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Canvas do plasma */
.hero__plasma {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Scrim: vignette para destacar o texto central e dar profundidade às bordas */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 52%,
      rgba(22, 21, 19, 0.55) 0%,
      rgba(22, 21, 19, 0.25) 45%,
      transparent 75%),
    radial-gradient(130% 120% at 50% 45%,
      transparent 35%,
      rgba(22, 21, 19, 0.60) 100%),
    linear-gradient(180deg,
      rgba(22, 21, 19, 0.55) 0%,
      transparent 22%,
      transparent 72%,
      rgba(22, 21, 19, 0.92) 100%);
}

/* Conteúdo do hero — centralizado */
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1.2vw, 0.85rem);
  flex-wrap: wrap;
}
/* Logo centralizada — mesmo tamanho de quando acompanhava o "Digital" */
.hero__logo {
  height: clamp(2.3rem, 6.6vw, 4.9rem);
  width: auto;
  max-width: 100%;
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  max-width: 38ch;
  margin: 0 auto;
}

/* =========================================================
   Sobre / Números
   ========================================================= */
.about {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.about__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 16ch;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.about__text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-dim);
  max-width: 52ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Stats 2x2 */
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.stat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.stat__arrow {
  width: clamp(24px, 2.4vw, 30px);
  height: clamp(24px, 2.4vw, 30px);
  flex-shrink: 0;
  margin-top: 0.5rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.stat__body {
  display: flex;
  flex-direction: column;
}
.stat__plus {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--bone);
  margin-top: 0.35rem;
  max-width: 18ch;
}

/* Stat em destaque — caixa vermelha */
.stat--accent .stat__body {
  background: var(--red);
  color: #fff;
  padding: 0.5rem 0.9rem 0.7rem;
  margin-top: -0.1rem;
}
.stat--accent .stat__plus,
.stat--accent .stat__num,
.stat--accent .stat__label { color: #fff; }

/* Mapa */
.about__map {
  display: flex;
  justify-content: center;
}
.about__map img {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.45));
}

/* =========================================================
   Serviços (interativo por abas)
   ========================================================= */
.services {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.services__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.services__head {
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.services__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 30ch;
  margin-bottom: 0.8rem;
  text-wrap: balance;
}
.services__sub {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 78ch;
}

/* Abas — barra rolável em telas pequenas */
.services__tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.services__tabs::-webkit-scrollbar { display: none; }

.tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* alvo de toque confortável */
  scroll-snap-align: start;
  padding: 0.7rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.15s var(--ease);
}
.tab:hover { color: var(--bone); border-color: var(--gray-dark); }
.tab:active { transform: translateY(1px); }
.tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Banner */
.services__banner {
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-2);
  height: clamp(243px, 29.7vw, 405px); /* altura do espaço das imagens — ajuste aqui */
}
.services__banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s var(--ease);
}
.services__banner.is-swap img { opacity: 0; }

/* Detalhe (título + descrição) */
.services__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
  transition: opacity 0.3s var(--ease);
}
.services__detail.is-swap { opacity: 0; }

.services__detail-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 20ch;
}
.services__detail-desc {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 50ch;
}

/* =========================================================
   Certificação
   ========================================================= */
.cert {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.cert__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Cabeçalho centralizado */
.cert__head { text-align: center; }
.cert__icon {
  display: inline-flex;
  color: var(--red);
}
.cert__icon svg { width: 34px; height: 34px; }

.cert__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 0.8rem;
}
.cert__divider {
  height: 1px;
  margin: 1.4rem auto;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.7;
}
.cert__sub {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 48ch;
  margin: 0 auto;
}

/* Linha: selo + texto */
.cert__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.cert__badge img {
  width: 100%;
  height: auto;
}
.cert__text p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(217, 214, 200, 0.82);
}
.cert__text p + p { margin-top: 1.1rem; }
.cert__text strong { color: var(--bone); font-weight: 700; }

/* =========================================================
   IA & Tecnologia
   ========================================================= */
.aitech {
  position: relative;
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
  overflow: hidden;
}
/* brilho vermelho sutil atrás do gráfico (lado direito) */
.aitech::before {
  content: "";
  position: absolute;
  top: 50%; right: 8%;
  width: 40vw; height: 40vw;
  max-width: 600px; max-height: 600px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(250, 52, 23, 0.16), transparent 65%);
  pointer-events: none;
}
.aitech__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.aitech__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 14ch;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.aitech__desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 48ch;
  margin-bottom: 2rem;
}

.aitech__list {
  list-style: none;
  display: grid;
  gap: 1.1rem;
}
.aitech__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(217, 214, 200, 0.85);
  max-width: 52ch;
}
.aitech__list .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aitech__visual {
  display: flex;
  justify-content: center;
}
.aitech__visual img {
  width: 100%;
  max-width: 520px;
  height: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .aitech__visual img { animation: floaty 6s ease-in-out infinite; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   Entregamos (palavras rotativas — Rolodex)
   ========================================================= */
.deliver {
  background: var(--bg);
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.deliver__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f1efe9 100%);
  border-radius: clamp(20px, 3vw, 36px);
  padding: clamp(2.8rem, 8vw, 6rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.deliver__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.6vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: left;
}
.deliver__line { white-space: nowrap; }
.deliver__tail { color: var(--ink); }

/* Componente Rolodex */
.rolodex {
  display: inline-block;
  position: relative;
  perspective: 900px;
  transform-style: preserve-3d;
  overflow: visible;
}
.rolodex__word {
  display: inline-block;
  color: var(--red);
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
.rolodex__word.is-out {
  position: absolute;
  left: 0;
  top: 0;
  animation: flipOut 0.6s var(--ease) forwards;
}
.rolodex__word.is-in {
  animation: flipIn 0.6s var(--ease) forwards;
}
@keyframes flipOut {
  from { transform: rotateX(0deg);   opacity: 1; }
  to   { transform: rotateX(-90deg); opacity: 0; }
}
@keyframes flipIn {
  from { transform: rotateX(90deg);  opacity: 0; }
  to   { transform: rotateX(0deg);   opacity: 1; }
}

/* =========================================================
   Clientes (logo wall)
   ========================================================= */
.clients {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.clients__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.clients__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-align: center;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
  text-wrap: balance;
}

/* Grade flexível — centraliza a última fila incompleta */
.clients__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.client {
  flex: 0 0 calc((100% - 3 * 12px) / 4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(96px, 12vw, 132px);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.015);
}
.client img {
  max-width: 78%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.client:hover img { opacity: 1; transform: scale(1.04); }

.clients__more {
  text-align: center;
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
  font-size: 1.02rem;
  color: var(--text-dim);
}
.clients__more strong { color: var(--bone); font-weight: 700; }

/* =========================================================
   Como trabalhamos (processo / timeline)
   ========================================================= */
.process {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.process__inner {
  max-width: 760px;
  margin: 0 auto;
}
.process__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

/* Sublinhado desenhado à mão */
.ul-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.ul-draw {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22em;
  width: 100%;
  height: 0.45em;
  overflow: visible;
}
.ul-draw path {
  fill: none;
  stroke: var(--red);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.9s var(--ease);
}
.ul-word.is-drawn .ul-draw path { stroke-dashoffset: 0; }

/* Etapas */
.process__steps {
  list-style: none;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.5rem;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.step:last-child { padding-bottom: 0; }
/* linha conectando as etapas */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 56px;
  bottom: -4px;
  width: 2px;
  background: var(--line);
  transition: background 0.4s var(--ease);
}
.step__marker {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--red);
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
              transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step__body {
  transition: transform 0.3s var(--ease);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-top: 0.55rem;
  margin-bottom: 0.35rem;
  transition: color 0.25s var(--ease);
}
.step__desc {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 46ch;
  transition: color 0.25s var(--ease);
}

/* Interação: hover na etapa */
.step:hover .step__marker {
  background: var(--red);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(250, 52, 23, 0.14), 0 0 28px rgba(250, 52, 23, 0.5);
}
.step:hover .step__body { transform: translateX(10px); }
.step:hover .step__title { color: var(--red); }
.step:hover .step__desc { color: var(--bone); }
.step:hover:not(:last-child)::after {
  background: linear-gradient(180deg, var(--red) 0%, var(--line) 90%);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 0.09s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   FAQ — perguntas frequentes (accordion)
   ========================================================= */
.faq {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.faq__inner { max-width: 860px; margin: 0 auto; }

.faq__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: clamp(1.8rem, 3.5vw, 2.75rem);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.faq__item:hover { border-color: rgba(217, 214, 200, 0.2); }
.faq__item.is-open {
  background: var(--ink-3);
  border-color: rgba(250, 52, 23, 0.35);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: clamp(1.1rem, 2.2vw, 1.4rem) clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--bone);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.4;
}
.faq__q-text { flex: 1 1 auto; }

.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--red);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  padding: 0 clamp(1.2rem, 2.5vw, 1.75rem) clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--text-dim);
  font-size: clamp(0.94rem, 1.4vw, 1.02rem);
  line-height: 1.65;
}

/* =========================================================
   Depoimentos — carrossel premium
   ========================================================= */
.depo {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
  overflow: hidden;
}
.depo__inner { max-width: var(--max); margin: 0 auto; }

.depo__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.25rem);
}
.depo__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.depo__sub {
  margin-top: 0.9rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.depo__carousel { --depo-gap: clamp(16px, 2vw, 28px); }
.depo__viewport { overflow: hidden; }
.depo__track {
  list-style: none;
  display: flex;
  align-items: stretch; /* todos os cards com a mesma altura */
  gap: var(--depo-gap);
  will-change: transform;
}
.depo__slide {
  flex: 0 0 calc((100% - 2 * var(--depo-gap)) / 3);
  min-width: 0;
  display: flex;
}

/* Card: foto ao fundo + gradiente + conteúdo ancorado embaixo */
.depo__card {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 52vw, 580px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 24px 60px -34px rgba(0, 0, 0, 0.75);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.depo__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
  transition: transform 0.55s var(--ease);
}
.depo__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(130% 55% at 15% 100%, rgba(250, 52, 23, 0.20), transparent 62%),
    linear-gradient(180deg,
      rgba(22, 21, 19, 0.06) 0%,
      rgba(22, 21, 19, 0.30) 36%,
      rgba(22, 21, 19, 0.86) 62%,
      rgba(22, 21, 19, 0.97) 100%);
}
.depo__content {
  position: relative;
  z-index: 2;
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
}
.depo__quote p {
  color: #fff;
  font-size: 0.97rem;
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.depo__divider {
  height: 1px;
  margin: clamp(1.1rem, 2vw, 1.4rem) 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08));
}
.depo__logo {
  height: 30px; /* altura padronizada das logos */
  width: auto;
  margin-bottom: 0.9rem;
}
.depo__name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.3;
}
.depo__role {
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(217, 214, 200, 0.78);
}

/* Hover: eleva o card e aproxima a foto (apenas dispositivos com mouse) */
@media (hover: hover) {
  .depo__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 76px -34px rgba(0, 0, 0, 0.9);
  }
  .depo__card:hover .depo__photo { transform: scale(1.05); }
}
.depo__card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* Controles */
.depo__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}
.depo__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.18s var(--ease);
}
.depo__arrow svg { width: 22px; height: 22px; }
.depo__arrow:active { transform: translateY(0); }
@media (hover: hover) {
  .depo__arrow:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateY(-2px);
  }
}

/* =========================================================
   Comparativo — Por que VORX
   ========================================================= */
.compare {
  background: var(--bg);
  padding: clamp(4.5rem, 10vh, 8rem) var(--pad);
  scroll-margin-top: var(--nav-h);
}
.compare__inner { max-width: var(--max); margin: 0 auto; }

.compare__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}
.compare__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.compare__sub {
  margin-top: 1.1rem;
  color: var(--text-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.compare__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.compare__card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 2.2vw, 1.9rem);
}
.compare__card--vorx {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(250, 52, 23, 0.10), transparent 55%),
    var(--ink-3);
  border-color: rgba(250, 52, 23, 0.35);
  box-shadow: 0 24px 60px -34px rgba(250, 52, 23, 0.55);
}

.compare__header {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-bottom: clamp(1.1rem, 1.8vw, 1.5rem);
  border-bottom: 1px solid var(--line);
}
.compare__logo { height: clamp(26px, 3vw, 32px); width: auto; }
.compare__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  letter-spacing: -0.01em;
  color: var(--text-dim);
}

.compare__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.8vw, 1.35rem);
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.compare__card--vorx .compare__list li { color: var(--bone); }
.compare__card--other .compare__list li { color: var(--text-dim); }

.compare__ic {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
}
.compare__ic svg { width: 14px; height: 14px; }
.compare__ic--yes { background: rgba(61, 178, 96, 0.16); color: #3DB260; }
.compare__ic--no  { background: rgba(250, 52, 23, 0.14); color: var(--red); }

/* =========================================================
   Rodapé
   ========================================================= */
.foot {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 4.75rem) var(--pad) clamp(1.5rem, 3vw, 2rem);
}
.foot__inner { max-width: var(--max); margin: 0 auto; }

/* Navegação de serviços (colunas) */
.foot__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.9rem, 4vw, 2.75rem) clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.foot__col-title {
  display: inline-block;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--bone);
  margin-bottom: 0.85rem;
  transition: color 0.2s var(--ease);
}
a.foot__col-title:hover { color: var(--red); }
.foot__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.foot__col li {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.45;
}
.foot__col li a { transition: color 0.2s var(--ease); }
.foot__col li a:hover { color: var(--bone); }

.foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.foot__logo { height: clamp(30px, 3.2vw, 36px); width: auto; margin-bottom: 1.35rem; }
.foot__about p {
  color: var(--text-dim);
  max-width: 56ch;
  font-size: 0.98rem;
  line-height: 1.7;
}
.foot__badges { margin-top: clamp(1.5rem, 3vw, 2.1rem); }
.foot__badge {
  height: clamp(76px, 8vw, 92px);
  width: auto;
  border-radius: 8px;
}

.foot__loc { display: flex; align-items: flex-start; gap: 0.9rem; }
.foot__flag {
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 2px;
}
.foot__loc-body strong {
  display: block;
  color: var(--bone);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.foot__loc-body p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
}

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: clamp(1.25rem, 2.5vw, 1.75rem);
}
.foot__copy { color: var(--gray-dark); font-size: 0.9rem; }
.foot__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.foot__links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: color 0.2s var(--ease);
}
.foot__links a:hover { color: var(--bone); }
.foot__toplink { display: inline-flex; align-items: center; gap: 0.4rem; }
.foot__toplink svg { width: 16px; height: 16px; }

/* =========================================================
   Páginas legais (Política de Privacidade / Cookies etc.)
   ========================================================= */
.legal {
  background: var(--bg);
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) var(--pad) clamp(3rem, 6vw, 5rem);
}
.legal__inner { max-width: 820px; margin: 0 auto; }

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  transition: color 0.2s var(--ease);
}
.legal__back:hover { color: var(--bone); }
.legal__back svg { width: 18px; height: 18px; }

.legal__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.legal__updated {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-top: 0.6rem;
  padding-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.legal section { margin-top: clamp(1.6rem, 3vw, 2.25rem); }
.legal h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--bone);
  margin-bottom: 0.55rem;
}
.legal p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.75;
}
.legal a { color: var(--red); }
.legal a:hover { text-decoration: underline; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 920px) {
  .about__inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .about__title { max-width: none; }
  .about__map img { max-width: 360px; }

  .aitech__inner { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  .aitech__title { max-width: none; }
  .aitech__visual { order: -1; }
  .aitech__visual img { max-width: 380px; }
}

@media (max-width: 900px) {
  .client { flex-basis: calc((100% - 2 * 12px) / 3); }

  .depo__slide { flex-basis: calc((100% - var(--depo-gap)) / 2); }
}

@media (max-width: 600px) {
  .depo__slide { flex-basis: 100%; }
  .depo__card { min-height: 480px; }
}

@media (max-width: 720px) {
  .services__detail { grid-template-columns: 1fr; gap: 1rem; }
  .services__detail-title { max-width: none; }

  /* Banner: proporção adequada e ancorado à esquerda para não cortar o título da arte */
  .services__banner {
    height: clamp(150px, 45vw, 260px);
    border-radius: 14px;
  }
  .services__banner img { object-position: left center; }

  .client { flex-basis: calc((100% - 12px) / 2); }

  .cert__row { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.8rem; }
  .cert__badge { max-width: 200px; }
  .cert__text p { text-align: left; }

  .deliver__inner { padding: clamp(1.6rem, 7vw, 2.6rem); }
  /* Deixa a manchete quebrar linha em vez de estourar a caixa */
  .deliver__line { white-space: normal; }

  .compare__grid { grid-template-columns: 1fr; }
  .compare__card--other { order: 2; }

  .foot__nav { grid-template-columns: 1fr 1fr; }
  .foot__top { grid-template-columns: 1fr; gap: clamp(1.75rem, 6vw, 2.5rem); }
  .foot__bottom { justify-content: flex-start; }

  .svc-steps, .svc-duo, .svc-list--cols { grid-template-columns: 1fr; }
  .svc-hero__banner { border-radius: 14px; }
  .svc-hero__banner img { object-position: left center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--pad);
    gap: 1.4rem;
    margin: 0;
  }

  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero__strip { flex-wrap: wrap; gap: 0.8rem 1.2rem; font-size: 0.72rem; }

  /* Scrim mais uniforme no mobile (conteúdo ocupa largura total) */
  .hero__scrim {
    background:
      linear-gradient(180deg,
        rgba(22, 21, 19, 0.80) 0%,
        rgba(22, 21, 19, 0.55) 40%,
        rgba(22, 21, 19, 0.70) 75%,
        rgba(22, 21, 19, 0.95) 100%);
  }
}

/* =========================================================
   Página de serviço (ex.: /trafego-pago/)
   ========================================================= */
.svc-hero {
  position: relative;
  background: var(--bg);
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem)) var(--pad) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.svc-hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 55vw; height: 55vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(250, 52, 23, 0.14), transparent 65%);
  pointer-events: none;
}
.svc-hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.svc-crumb {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 1.2rem;
}
.svc-crumb a { color: var(--text-dim); transition: color 0.2s var(--ease); }
.svc-crumb a:hover { color: var(--bone); }
.svc-crumb span:last-child { color: var(--red); }

.svc-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-wrap: balance;
}
.svc-hero__lead {
  margin-top: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--bone);
}
.svc-hero__text {
  max-width: 68ch;
  margin: 0.9rem auto 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1rem;
}
.svc-hero__cta { margin-top: clamp(1.5rem, 3vw, 2rem); }
.svc-hero__banner {
  margin-top: clamp(2rem, 4.5vw, 3.25rem);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink-2);
}
.svc-hero__banner img { display: block; width: 100%; height: auto; }

/* Corpo do conteúdo */
.svc {
  background: var(--bg);
  padding: clamp(1.5rem, 4vw, 3rem) var(--pad) clamp(2rem, 5vw, 3.5rem);
}
.svc__inner { max-width: 860px; margin: 0 auto; }
.svc__block { margin-top: clamp(2.5rem, 5.5vw, 4rem); }
.svc__block:first-child { margin-top: 0; }
.svc__block h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 1rem;
}
.svc__block h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.svc__block p {
  color: var(--text-dim);
  line-height: 1.75;
  font-size: 1rem;
}
.svc__block p + p { margin-top: 0.9rem; }
.svc__block a { color: var(--red); }
.svc__block a:hover { text-decoration: underline; }
.svc__block strong { color: var(--bone); font-weight: 700; }

/* Lista com check vermelho */
.svc-list {
  list-style: none;
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.svc-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 15px;
  height: 8px;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}
.svc-list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 2rem;
}

/* Etapas da metodologia */
.svc-steps {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.svc-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
}
.svc-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.svc-step p { font-size: 0.95rem; }
.svc-step p + p { margin-top: 0.7rem; }

/* Chips (plataformas / métricas) */
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0;
}
.svc-chips span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bone);
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.32rem 0.6rem;
  white-space: nowrap;
}

/* Comparativo em dois cards */
.svc-duo {
  margin: 1.4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.svc-duo__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
}
.svc-duo__card p { font-size: 0.95rem; }
.svc-duo__card p + p { margin-top: 0.7rem; }
.svc-duo__card .svc-list { margin-top: 0.7rem; }

/* CTA final */
.svc-cta {
  background: var(--bg);
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad) clamp(4.5rem, 10vh, 7rem);
}
.svc-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background:
    radial-gradient(120% 130% at 50% 0%, rgba(250, 52, 23, 0.10), transparent 60%),
    var(--ink-2);
  border: 1px solid rgba(250, 52, 23, 0.25);
  border-radius: 20px;
  padding: clamp(2.25rem, 5vw, 3.5rem);
}
.svc-cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.svc-cta__inner p {
  max-width: 60ch;
  margin: 1rem auto clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dim);
  line-height: 1.7;
}

/* Banner de serviço clicável (home) */
.services__banner a {
  display: block;
  width: 100%;
  height: 100%;
}

/* =========================================================
   Botão flutuante — WhatsApp
   ========================================================= */
.wa-float {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  bottom: calc(clamp(16px, 2.5vw, 28px) + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5),
              0 4px 14px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.6),
              0 6px 18px rgba(0, 0, 0, 0.4);
}
.wa-float:active { transform: translateY(0) scale(0.98); }

/* Anel pulsante sutil (desenhado para fora, não cobre o ícone) */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* Telas estreitas: CTAs longos podem quebrar linha */
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
  .section-cta, .compare__cta .btn { width: 100%; }
  .services__tabs { gap: 0.45rem; }
  .tab { padding: 0.7rem 1rem; }
}

/* Telas muito estreitas (SE / dobráveis): números empilhados */
@media (max-width: 380px) {
  .about__stats { grid-template-columns: 1fr; gap: 1.4rem; }
  .stat__label { max-width: none; }
}

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

/* =========================================================
   Toque: neutraliza estados de :hover que "grudam" no mobile
   ========================================================= */
@media (hover: none) {
  .btn--primary:hover,
  .btn--ghost:hover,
  .wa-float:hover,
  .tab:hover { transform: none; }

  .btn--primary:hover { background: var(--red); }
  .client:hover img { transform: none; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .growth__bar { transform: scaleY(1); }
}

/* =========================================================
   Rodapé — contatos e redes sociais
   ========================================================= */
.foot__contacts {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.foot__contacts a:hover { color: var(--bone); }
.foot__contacts svg { width: 18px; height: 18px; flex: none; }

.foot__social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.foot__social a {
  display: inline-flex;
  opacity: 0.92;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.foot__social a:hover { transform: translateY(-2px); opacity: 1; }
.foot__social svg { width: 30px; height: 30px; }

/* Endereço do rodapé clicável (Google Maps / GMN) */
a.foot__loc { transition: opacity 0.2s ease; }
a.foot__loc:hover { opacity: 0.8; }
a.foot__loc:hover strong { text-decoration: underline; text-underline-offset: 3px; }
