/* ============================================================
   Achilles Media, sistema de design fiel à Automy
   Estrutura, componentes e animações da automy.com.br
   Paleta branco / dourado / preto. Navbar e footer brancos.
   ============================================================ */

:root {
  /* Dourado (substitui o roxo da Automy) */
  --gold: #c8a24d;
  --gold-dark: #a8842f;
  --gold-deep: #8a6a22;
  --gold-light: #e0c48a;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #c8a24d 0%, #a8842f 100%);
  --gradient-gold: linear-gradient(135deg, #e0c48a 0%, #c8a24d 100%);
  --gradient-cover: linear-gradient(180deg, #100e0a 0%, #191510 55%, #221b11 100%);

  /* Neutros (off-white frio, casa com o branco puro da logo) */
  --bg-white: #ffffff;
  --bg-page: #f8f9fc;
  --bg-card-alt: #f1f3f8;
  --border-light: #e9ebf1;
  --border-gold: rgba(200, 162, 77, 0.20);
  --text-primary: #17140d;
  --text-secondary: #4a4a58;
  --text-muted: #83838f;
  --text-light: #a9a9b4;

  /* Escuro */
  --dark: #100e0a;
  --on-dark: #f4f0e7;
  --on-dark-soft: rgba(244, 240, 231, 0.68);
  --on-dark-faint: rgba(244, 240, 231, 0.42);

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(23, 20, 13, 0.04);
  --shadow-md: 0 4px 12px rgba(23, 20, 13, 0.06);
  --shadow-lg: 0 8px 24px rgba(23, 20, 13, 0.08);
  --shadow-xl: 0 16px 48px rgba(23, 20, 13, 0.10);
  --shadow-gold-sm: 0 4px 12px rgba(168, 132, 47, 0.18);
  --shadow-gold-md: 0 8px 24px rgba(168, 132, 47, 0.26);
  --shadow-gold-lg: 0 16px 48px rgba(168, 132, 47, 0.30);

  /* Tipografia (fiel à Automy) */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
::selection {
  background: rgba(200, 162, 77, 0.25);
  color: var(--text-primary);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Tipografia
   ============================================================ */
.t-display-lg,
.t-display-md,
.t-headline-lg {
  font-family: var(--font-display);
  font-feature-settings: 'ss01', 'ss02', 'cv11';
}
.t-display-lg {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.t-display-md {
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.t-headline-lg {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
  font-weight: 600;
  letter-spacing: -0.028em;
}
.t-headline-sm {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.t-body-lg {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.t-body-md {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
.t-body-sm {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}
.t-metric-lg {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 50px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.05em;
  display: inline-block;
}
.section-dark .gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.section {
  padding-top: 84px;
  padding-bottom: 84px;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
.section-tight {
  padding-top: 52px;
  padding-bottom: 52px;
}

/* Eyebrow (mono técnico, como a Automy) */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
.section-dark .eyebrow {
  color: var(--gold-light);
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-head .eyebrow {
  margin-bottom: 18px;
}
.section-head h2 {
  margin: 0 0 18px;
}
.section-head p {
  color: var(--text-secondary);
  margin: 0;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .eyebrow {
  justify-content: center;
}
.section-dark .section-head p {
  color: var(--on-dark-soft);
}

/* ============================================================
   Fundos de seção
   ============================================================ */
.section-dark {
  background: var(--gradient-cover);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 18% 35%, rgba(200, 162, 77, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 82% 25%, rgba(224, 196, 138, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 60% 85%, rgba(168, 132, 47, 0.16) 0%, transparent 55%);
  z-index: -2;
}
.section-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  z-index: -1;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Canvas de partículas em seções escuras (ex.: última chamada) */
.spark-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.section-mesh {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 18%, rgba(200, 162, 77, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 78%, rgba(200, 162, 77, 0.05) 0%, transparent 55%);
  z-index: -1;
}
.section-page {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(200, 162, 77, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(200, 162, 77, 0.05) 0%, transparent 55%);
  z-index: -1;
}

/* ============================================================
   Botões (fiel à Automy)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 200ms var(--ease-default);
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease-default);
}
.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(168, 132, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 200ms var(--ease-default);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(168, 132, 47, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(200, 162, 77, 0.05);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}
.btn-wa {
  background: #1fa855;
  color: #fff;
}
.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(31, 168, 85, 0.35);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Pílula */
/* Rótulo minimalista: texto fino e discreto.
   mesmo padrão da tagline da hero */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pill-dot {
  width: 18px;
  height: 1px;
  border-radius: 0;
  background: var(--gold);
  opacity: 0.75;
  box-shadow: none;
}
.section-dark .pill {
  color: rgba(224, 196, 138, 0.82);
}
.section-dark .pill-dot {
  background: var(--gold-light);
}

/* Rótulos de seção em fundo escuro: mesmo tratamento minimalista da
   hero-tagline (base off-white + varredura de luz dourada), no lugar
   do dourado chapado. */
.section-dark .eyebrow,
.section-dark .pill {
  background-image: linear-gradient(
    100deg,
    rgba(240, 236, 224, 0.42) 0%,
    rgba(240, 236, 224, 0.42) 42%,
    rgba(224, 196, 138, 0.85) 48%,
    #fff6df 50%,
    rgba(224, 196, 138, 0.85) 52%,
    rgba(240, 236, 224, 0.42) 58%,
    rgba(240, 236, 224, 0.42) 100%
  );
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-tagline-sweep 10s linear infinite;
}
.section-dark .eyebrow::before,
.section-dark .pill-dot {
  background: rgba(240, 236, 224, 0.5);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .section-dark .eyebrow,
  .section-dark .pill {
    animation: none;
    background-position: 0% 0;
  }
}

/* Pill do hero: minimalista, branco, com brilho sutil */
/* Tagline minimalista: texto fino com uma luz dourada que atravessa
   letra por letra a cada ~10s (sem contorno / pill) */
.hero-tagline {
  display: inline-block;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  /* Base apagada + banda dourada que varre via background-clip */
  background-image: linear-gradient(
    100deg,
    rgba(240, 236, 224, 0.42) 0%,
    rgba(240, 236, 224, 0.42) 42%,
    rgba(224, 196, 138, 0.85) 48%,
    #fff6df 50%,
    rgba(224, 196, 138, 0.85) 52%,
    rgba(240, 236, 224, 0.42) 58%,
    rgba(240, 236, 224, 0.42) 100%
  );
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-tagline-sweep 10s linear infinite;
}
.hero-tagline-sep {
  margin: 0 6px;
  font-size: 10px;
  vertical-align: middle;
}
/* Repouso apagado na maior parte do ciclo; varredura rápida no fim */
@keyframes hero-tagline-sweep {
  0%, 78% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}
@media (max-width: 480px) {
  .hero-tagline { white-space: normal; font-size: 11px; letter-spacing: 0.12em; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-tagline {
    animation: none;
    background-position: 0% 0;
  }
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px;
  transition: all 300ms var(--ease-default);
  position: relative;
}
.card-hover:hover {
  border-color: rgba(200, 162, 77, 0.32);
  box-shadow: 0 16px 48px rgba(200, 162, 77, 0.1);
  transform: translateY(-3px);
}
.card-grad {
  position: relative;
  isolation: isolate;
}
.card-grad::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms var(--ease-default);
  pointer-events: none;
  z-index: 1;
}
.card-grad:hover::after {
  opacity: 1;
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 77, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: transform 300ms var(--ease-default);
}
.card:hover .card-icon {
  transform: scale(1.06);
}
.card-icon svg {
  width: 22px;
  height: 22px;
}
.card h3 {
  margin: 0 0 10px;
}
.card p {
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================================
   Grids
   ============================================================ */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 320ms var(--ease-default), border-color 280ms var(--ease-default), box-shadow 280ms var(--ease-default), backdrop-filter 280ms var(--ease-default);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  height: 72px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}
.nav-logo-img {
  height: 25px;
  width: auto;
  display: block;
}
/* Sobre a hero (nav transparente) usa a logo branca; ao rolar, a preta */
.nav-logo-dark { display: none; }
.nav.scrolled .nav-logo-light { display: none; }
.nav.scrolled .nav-logo-dark { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 38px);
  min-width: 0;
}
.nav-link {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 2px;
  color: rgba(248, 244, 232, 0.72);
  position: relative;
  transition: color 200ms var(--ease-default);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}
.nav-link:hover {
  color: #ffffff;
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link.active {
  color: #ffffff;
}
.nav-link.active::after {
  transform: scaleX(1);
}
/* Estado sólido (após rolar): texto escuro / dourado */
.nav.scrolled .nav-link {
  color: var(--text-secondary);
}
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active {
  color: var(--gold-dark);
}
.nav-cta {
  display: flex;
  align-items: center;
  justify-self: end;
}
.btn-nav {
  min-height: 38px;
  padding: 10px 18px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(224, 196, 138, 0.42) 0 18%, transparent 42%),
    linear-gradient(135deg, #120c06 0%, #3a2309 30%, #8f681f 58%, #c09a3d 78%, #2a1806 100%);
  border: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.36);
  box-shadow:
    0 0 22px rgba(200, 162, 77, 0.22),
    0 10px 26px rgba(80, 52, 15, 0.34),
    0 3px 10px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-nav:hover {
  background:
    radial-gradient(circle at 80% 0%, rgba(224, 196, 138, 0.50) 0 18%, transparent 42%),
    linear-gradient(135deg, #191006 0%, #4a2e0c 30%, #9b7224 58%, #d0aa4a 78%, #2d1a07 100%);
  box-shadow:
    0 0 28px rgba(200, 162, 77, 0.30),
    0 14px 32px rgba(80, 52, 15, 0.42),
    0 4px 14px rgba(0, 0, 0, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.nav.scrolled .btn-nav {
  background:
    radial-gradient(circle at 18% 0%, rgba(224, 196, 138, 0.42) 0 18%, transparent 42%),
    linear-gradient(135deg, #120c06 0%, #3a2309 30%, #8f681f 58%, #c09a3d 78%, #2a1806 100%);
  color: #ffffff;
  box-shadow:
    0 0 20px rgba(200, 162, 77, 0.18),
    0 9px 22px rgba(80, 52, 15, 0.26),
    0 3px 10px rgba(23, 20, 13, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.nav.scrolled .btn-nav:hover {
  background:
    radial-gradient(circle at 80% 0%, rgba(224, 196, 138, 0.50) 0 18%, transparent 42%),
    linear-gradient(135deg, #191006 0%, #4a2e0c 30%, #9b7224 58%, #d0aa4a 78%, #2d1a07 100%);
  box-shadow:
    0 0 26px rgba(200, 162, 77, 0.24),
    0 13px 30px rgba(80, 52, 15, 0.34),
    0 4px 14px rgba(23, 20, 13, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: color 320ms var(--ease-default);
}
.nav.scrolled .nav-toggle {
  color: var(--text-primary);
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 22px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile a {
  padding: 13px 15px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
}
.nav-mobile a:hover {
  background: rgba(200, 162, 77, 0.07);
  color: var(--gold-dark);
}
.nav-mobile .btn {
  margin-top: 8px;
}
@media (max-width: 920px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-page {
  padding-top: 150px;
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 880px;
}
.hero h1 {
  margin: 24px 0 26px;
}
.hero-sub {
  color: var(--on-dark-soft);
  max-width: 640px;
  margin: 0 0 38px;
}

/* Word reveal do headline */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}
.word-reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Retorno real (cards passo a passo)
   ============================================================ */
.retorno-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  --retorno-dur: 3400ms;
}
.retorno-card {
  text-align: left;
  padding: 28px 26px 24px;
  border-right: 1px solid var(--border-light);
  position: relative;
  transition: background-color 400ms var(--ease-default);
  display: flex;
  flex-direction: column;
  min-height: 190px;
}
.retorno-card:last-child {
  border-right: none;
}
/* Entrada refinada e escalonada (melhor animação de carregamento) */
.retorno-card.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 660ms var(--ease-out),
    transform 660ms var(--ease-out),
    background-color 400ms var(--ease-default);
  transition-delay: calc(var(--i, 0) * 130ms);
}
.retorno-card.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.retorno-card.active {
  background: rgba(200, 162, 77, 0.06);
}
.retorno-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.retorno-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
  transition: color 400ms var(--ease-default);
}
.retorno-card.active .retorno-num {
  color: var(--gold-dark);
}
.retorno-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--text-light);
  transition: all 400ms var(--ease-default);
}
.retorno-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 400ms var(--ease-default);
}
.retorno-card.active .retorno-arrow {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-gold-sm);
}
.retorno-card.active .retorno-arrow svg {
  transform: rotate(-180deg);
}
.retorno-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 12px;
  transition: color 400ms var(--ease-default);
}
.retorno-card.active h3 {
  color: var(--gold-dark);
}
/* Espaço da descrição fica sempre reservado: a altura do card nunca muda
   (evita a "quebra" do layout). Só o texto entra e sai com fade. */
.retorno-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 20px;
  min-height: 42px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 460ms var(--ease-out), transform 460ms var(--ease-out);
}
.retorno-card.active .retorno-desc {
  opacity: 1;
  transform: translateY(0);
}
/* Barra de carregamento */
.retorno-track {
  margin-top: auto;
  height: 3px;
  border-radius: 3px;
  background: var(--border-light);
  overflow: hidden;
}
.retorno-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 10px rgba(200, 162, 77, 0.45);
}
.retorno-card.active .retorno-track span {
  width: 100%;
  transition: width var(--retorno-dur, 3400ms) linear;
}
@media (max-width: 860px) {
  .retorno-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .retorno-card:nth-child(2) {
    border-right: none;
  }
  .retorno-card:nth-child(1),
  .retorno-card:nth-child(2) {
    border-bottom: 1px solid var(--border-light);
  }
}
@media (max-width: 520px) {
  .retorno-grid {
    grid-template-columns: 1fr;
  }
  .retorno-card {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    min-height: 0;
  }
  .retorno-card:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   Hero com visual de partículas
   ============================================================ */
/* Hero imersivo: canvas cobre a seção inteira */
#hero.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 90px;
}
#hero .container {
  position: relative;
  z-index: 3;
}
#hero .hero-inner {
  max-width: 660px;
}
/* Fundo limpo para a logo em partículas */
.hero-neb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(224, 196, 138, 0.28) 0%, rgba(224, 196, 138, 0.08) 22%, transparent 48%),
    linear-gradient(90deg, rgba(16, 14, 10, 1) 0%, rgba(16, 14, 10, 0.95) 42%, rgba(33, 27, 17, 0.92) 100%);
  pointer-events: none;
}
/* Malha quadriculada minimalista (tech / universo) */
.hero-neb::before,
.hero-neb::after {
  content: '';
  position: absolute;
  inset: -2px;
  pointer-events: none;
}
.hero-neb::before {
  background-image:
    linear-gradient(rgba(224, 196, 138, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 196, 138, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  background-position: center;
  mask-image: radial-gradient(ellipse 75% 70% at 68% 48%, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 68% 48%, #000 0%, rgba(0, 0, 0, 0.55) 45%, transparent 78%);
  animation: hero-grid-pan 24s linear infinite;
}
/* Malha maior, mais sutil, deslocada para dar profundidade */
.hero-neb::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 162px 162px;
  background-position: center;
  mask-image: radial-gradient(ellipse 90% 85% at 60% 50%, #000 0%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 60% 50%, #000 0%, transparent 82%);
  animation: hero-grid-pan 40s linear infinite reverse;
}
@keyframes hero-grid-pan {
  from { background-position: 0 0; }
  to { background-position: 54px 54px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-neb::before,
  .hero-neb::after { animation: none; }
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
/* Scrim: garante leitura do texto sobre as partículas */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(16, 14, 10, 0.8) 0%,
    rgba(16, 14, 10, 0.58) 40%,
    rgba(16, 14, 10, 0.14) 66%,
    rgba(16, 14, 10, 0) 82%
  );
}
@media (max-width: 900px) {
  #hero.hero {
    min-height: 92vh;
    min-height: 92svh;
  }
  .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(16, 14, 10, 0.6) 0%,
      rgba(16, 14, 10, 0.82) 55%,
      rgba(16, 14, 10, 0.92) 100%
    );
  }
}

#hero .hero-inner {
  max-width: 820px;
  padding-top: 4vh;
}
@media (max-width: 640px) {
  #hero.hero {
    padding-top: 126px;
    padding-bottom: 64px;
  }
}

/* ============================================================
   Métricas
   ============================================================ */
/* Painel de números (resultados): centralizado, com divisórias */
.metrics-panel {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px 30px;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(200, 162, 77, 0.05), #fff 62%);
  box-shadow: 0 26px 64px -34px rgba(23, 20, 13, 0.2);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric {
  position: relative;
  text-align: center;
  padding: 4px 22px;
}
.metric + .metric::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border-light);
}
.metrics-panel .metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.metrics-panel .metric-label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .metrics-panel {
    padding: 30px 16px;
    border-radius: 18px;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .metric {
    padding: 4px 8px;
  }
  .metric + .metric::before {
    display: none;
  }
  .metric:nth-child(even)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: var(--border-light);
  }
  .metrics-panel .metric-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

/* ============================================================
   Posicionamento digital
   ============================================================ */
.digital-positioning {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.digital-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.digital-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 252, 0.92)),
    #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease-default), border-color 260ms var(--ease-default), box-shadow 260ms var(--ease-default);
}
.digital-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(168, 132, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 132, 47, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}
.digital-card::after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(200, 162, 77, 0.3);
  box-shadow: inset 0 0 0 12px rgba(200, 162, 77, 0.06);
  opacity: 0.75;
}
.digital-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 77, 0.34);
  box-shadow: 0 18px 46px rgba(23, 20, 13, 0.08);
}
.digital-code {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
}
.digital-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
}
.digital-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}
.svc-grid-digital {
  margin-bottom: 4px;
}
.digital-service-card {
  border-color: rgba(200, 162, 77, 0.18);
}
@media (max-width: 980px) {
  .digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .digital-grid {
    grid-template-columns: 1fr;
  }
  .digital-card {
    min-height: auto;
    padding: 24px;
    border-radius: 16px;
  }
}

/* ============================================================
   Pilar Panel (seção alternada copy + visual, como a Automy)
   ============================================================ */
.pilar-panel {
  position: relative;
  isolation: isolate;
}
.pilar-panel + .pilar-panel {
  margin-top: 96px;
}
.pilar-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.pilar-panel-reverse .pilar-panel-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.pilar-panel-reverse .pilar-panel-copy {
  order: 2;
}
.pilar-panel-reverse .pilar-panel-visual {
  order: 1;
}
.pilar-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
  display: block;
}
.pilar-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.pilar-kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}
.pilar-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.pilar-lead {
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 16px;
}
.pilar-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 24px;
  max-width: 52ch;
}
.pilar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}
.pilar-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-secondary);
}
.pilar-list li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
  margin-top: 1px;
}
.pilar-panel-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pilar-visual-card {
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  background: #fff;
  box-shadow: var(--shadow-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.pilar-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 10%, rgba(200, 162, 77, 0.09) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 920px) {
  .pilar-panel + .pilar-panel {
    margin-top: 64px;
  }
  .pilar-panel-grid,
  .pilar-panel-reverse .pilar-panel-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pilar-panel-reverse .pilar-panel-copy {
    order: 1;
  }
  .pilar-panel-reverse .pilar-panel-visual {
    order: 2;
  }
}

/* ============================================================
   Serviços IA (filtro + card problema/solução)
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 200ms var(--ease-default);
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.filter-chip.active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 940px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .svc-grid { grid-template-columns: 1fr; }
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 30px 26px;
  transition: all 300ms var(--ease-default);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms var(--ease-default);
  pointer-events: none;
  z-index: 1;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(200, 162, 77, 0.12);
  border-color: transparent;
}
.svc-card:hover::after {
  opacity: 1;
}
.svc-card.hidden {
  display: none;
}
.svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.svc-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}
.svc-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}
.ps-block + .ps-block {
  margin-top: 14px;
}
.ps-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
.ps-problem {
  color: #ad4034;
}
.ps-problem::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c85748;
}
.ps-solution {
  color: var(--gold-dark);
}
.ps-solution::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.ps-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.svc-reveal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-light);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 350ms var(--ease-default), opacity 350ms var(--ease-default),
    margin-top 350ms var(--ease-default), padding-top 350ms var(--ease-default);
}
.svc-card:hover .svc-reveal,
.svc-card:focus-within .svc-reveal {
  max-height: 80px;
  opacity: 1;
}
.svc-reveal a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-dark);
}
.svc-reveal a svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms var(--ease-default);
}
.svc-reveal a:hover svg {
  transform: translateX(3px);
}
/* Em telas sem hover (touch), sempre mostrar o CTA */
@media (hover: none) {
  .svc-reveal {
    max-height: 80px;
    opacity: 1;
  }
}

/* ============================================================
   Seção "E muito mais" + campo livre WhatsApp
   ============================================================ */
.mais-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mais-box h2 {
  margin: 20px 0 20px;
}
.mais-box .lead {
  color: var(--on-dark-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  margin: 0 auto 40px;
  max-width: 640px;
}
.ask-form {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}
.ask-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-dark);
  margin-bottom: 14px;
  text-align: center;
}
.ask-input-wrap {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.ask-input-wrap input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(244, 240, 231, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--on-dark);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 180ms var(--ease-default), box-shadow 180ms var(--ease-default);
}
.ask-input-wrap input::placeholder {
  color: var(--on-dark-faint);
}
.ask-input-wrap input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.22);
}
.ask-form .btn {
  flex-shrink: 0;
}
@media (max-width: 620px) {
  .ask-input-wrap {
    flex-direction: column;
  }
}

/* ============================================================
   Quebra de objeções
   ============================================================ */
.objection {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: all 300ms var(--ease-default);
}
/* Brilho periódico e suave, percorrendo os cards em sequência */
.objection::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(200, 162, 77, 0.45), 0 12px 36px -10px rgba(200, 162, 77, 0.42);
  animation: objection-glow 8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -2s);
}
@keyframes objection-glow {
  0% { opacity: 0; }
  6% { opacity: 1; }
  18% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .objection::after { animation: none; }
}
.objection:hover {
  border-color: rgba(200, 162, 77, 0.3);
  box-shadow: var(--shadow-lg);
}
.objection-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-gold-sm);
}
.objection-check svg {
  width: 20px;
  height: 20px;
}
.objection h3 {
  margin: 2px 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  font-family: var(--font-display);
}
.objection p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* ============================================================
   Depoimentos
   ============================================================ */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
}
.testimonial-name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   Case
   ============================================================ */
.case {
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  background: #fff;
  transition: all 300ms var(--ease-default);
}
.case:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(200, 162, 77, 0.28);
}
.case-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.case-result {
  margin-left: auto;
  text-align: right;
}
.case-result .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-dark);
  line-height: 1;
}
.case-result .lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 700px) {
  .case-grid { grid-template-columns: 1fr; gap: 20px; }
  .case { padding: 28px; }
}
.case-block p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}
.case-block .ps-tag {
  margin-bottom: 8px;
}
.ps-neutral {
  color: var(--text-muted);
}
.ps-neutral::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-light);
}

/* ============================================================
   Formulário contato
   ============================================================ */
.form-field {
  margin-bottom: 20px;
}
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color 180ms var(--ease-default), box-shadow 180ms var(--ease-default);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.15);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.info-row:last-child {
  border-bottom: none;
}
.info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 162, 77, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
}
.info-icon svg {
  width: 20px;
  height: 20px;
}
.info-row .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-row .val {
  font-weight: 600;
  font-size: 15px;
}
.info-row a.val:hover {
  color: var(--gold-dark);
}

/* ============================================================
   CTA final
   ============================================================ */
.cta-final {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final h2 {
  margin: 20px 0 20px;
}
.cta-final p {
  color: var(--on-dark-soft);
  margin: 0 auto 36px;
  max-width: 560px;
}
.cta-final .btn-row {
  justify-content: center;
}

/* ============================================================
   Footer (BRANCO)
   ============================================================ */
.footer {
  background: #ffffff;
  color: var(--text-secondary);
  padding: 72px 0 32px;
  border-top: 1px solid var(--border-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-light);
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  margin: 0 0 20px;
  color: var(--text-muted);
}
.footer-col h4 {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 14.5px;
  padding: 6px 0;
  color: var(--text-secondary);
  transition: color 160ms var(--ease-default), padding-left 160ms var(--ease-default);
}
.footer-col a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}
.footer-contact {
  min-width: 0;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  line-height: 1.35;
}
.footer-contact a:hover {
  padding-left: 0;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--gold-dark);
  opacity: 0.86;
}
.footer-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: all 180ms var(--ease-default);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   WhatsApp flutuante
   ============================================================ */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fa855;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 168, 85, 0.4);
  transition: transform 220ms var(--ease-out);
  animation: wa-pulse 2.8s var(--ease-default) infinite;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(31, 168, 85, 0.4), 0 0 0 0 rgba(31, 168, 85, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(31, 168, 85, 0.4), 0 0 0 14px rgba(31, 168, 85, 0); }
}

/* ============================================================
   Reveal on scroll (fiel à Automy)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* Utils */
.divider { height: 1px; background: var(--border-light); border: none; margin: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .word-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   Marquee de tecnologias (faixa infinita)
   ============================================================ */
.marquee-band {
  position: relative;
  padding: 46px 0;
  background:
    radial-gradient(circle at 72% 44%, rgba(224, 196, 138, 0.22) 0%, rgba(224, 196, 138, 0.06) 24%, transparent 48%),
    radial-gradient(circle at 18% 64%, rgba(200, 162, 77, 0.09) 0%, transparent 34%),
    linear-gradient(90deg, rgba(16, 14, 10, 1) 0%, rgba(16, 14, 10, 0.96) 42%, rgba(33, 27, 17, 0.94) 100%);
  border-top: 1px solid rgba(224, 196, 138, 0.13);
  border-bottom: 1px solid rgba(224, 196, 138, 0.16);
  overflow: hidden;
  isolation: isolate;
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  pointer-events: none;
}
.marquee-band::before {
  background-image:
    radial-gradient(circle, rgba(255, 244, 207, 0.82) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(224, 196, 138, 0.48) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.32) 0 0.8px, transparent 1.6px);
  background-size: 44px 44px, 74px 74px, 118px 118px;
  background-position: 0 0, 18px 11px, 34px 28px;
  animation: marquee-particle-drift 22s linear infinite;
  opacity: 0.42;
}
.marquee-band::after {
  background:
    linear-gradient(110deg, transparent 18%, rgba(224, 196, 138, 0.12) 42%, transparent 62%),
    linear-gradient(rgba(224, 196, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 196, 138, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 42px 42px, 42px 42px;
  opacity: 0.78;
  animation: marquee-grid-shift 14s var(--ease-default) infinite alternate;
}
.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.56);
  margin-bottom: 26px;
}
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee:hover {
  animation-play-state: paused;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(244, 240, 231, 0.78);
  text-shadow: 0 0 18px rgba(224, 196, 138, 0.08);
}
.marq-item svg {
  width: 18px;
  height: 18px;
  color: rgba(224, 196, 138, 0.78);
  filter: drop-shadow(0 0 10px rgba(224, 196, 138, 0.26));
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-particle-drift {
  to {
    transform: translate3d(-74px, 44px, 0);
  }
}
@keyframes marquee-grid-shift {
  from {
    transform: translateX(-18px);
  }
  to {
    transform: translateX(18px);
  }
}

/* ============================================================
   Cenas animadas nos paineis de pilar
   ============================================================ */
.scene {
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.scene-chat {
  gap: 14px;
}
.chat-bubble {
  max-width: 82%;
  padding: 13px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-bottom-right-radius: 5px;
  animation: chat-in 7s var(--ease-out) infinite;
}
.chat-bubble.typing {
  align-self: flex-start;
  background: var(--gradient-primary);
  border-bottom-left-radius: 5px;
  padding: 15px 18px;
  display: flex;
  gap: 5px;
  animation: chat-typing 7s var(--ease-out) infinite;
}
.chat-bubble.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  animation: dot-blink 1.2s ease-in-out infinite;
}
.chat-bubble.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble.typing span:nth-child(3) { animation-delay: 0.4s; }
.chat-bubble.reply {
  align-self: flex-start;
  background: var(--gradient-primary);
  color: #fff;
  border-bottom-left-radius: 5px;
  box-shadow: var(--shadow-gold-sm);
  animation: chat-reply 7s var(--ease-out) infinite;
}
@keyframes chat-in {
  0% { opacity: 0; transform: translateY(10px); }
  8%, 92% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
@keyframes chat-typing {
  0%, 22% { opacity: 0; transform: translateY(8px); }
  30%, 50% { opacity: 1; transform: none; }
  56%, 100% { opacity: 0; transform: translateY(0); }
}
@keyframes chat-reply {
  0%, 52% { opacity: 0; transform: translateY(10px); }
  60%, 92% { opacity: 1; transform: none; }
  100% { opacity: 1; transform: none; }
}
@keyframes dot-blink {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.scene-chart .chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.chart-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chart-up {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold-dark);
}
.chart-signal {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(248, 249, 252, 0.82);
  box-shadow: inset 0 0 0 1px rgba(233, 235, 241, 0.86);
  opacity: 0;
  transform: translateY(8px);
}
.chart-signal span {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chart-signal strong {
  font-size: 13px;
  line-height: 1.25;
  color: var(--text-primary);
}
.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}
/* Gráfico: desenha uma vez ao entrar na tela e permanece preenchido.
   (Antes reiniciava em loop e ficava "vazio" em parte do ciclo.) */
.chart-line {
  fill: none;
  stroke: url(#goldgrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
}
.chart-area {
  fill: url(#goldfill);
  opacity: 0;
}
.chart-dot {
  fill: #fff;
  stroke: var(--gold);
  stroke-width: 2.5;
  opacity: 0;
}
.chart-grid line {
  stroke: rgba(131, 131, 143, 0.14);
  stroke-width: 1;
  stroke-dasharray: 4 7;
}
.chart-points circle {
  fill: #fff;
  stroke: rgba(168, 132, 47, 0.76);
  stroke-width: 2;
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transform-box: fill-box;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.metric-pill {
  min-height: 78px;
  padding: 12px 11px 10px;
  border-radius: 13px;
  background: #eef0f6;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
}
.metric-pill::before {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(200, 162, 77, 0.08), rgba(200, 162, 77, 0.34));
  transition: height 700ms var(--ease-out);
}
.metric-pill.is-gold {
  background: linear-gradient(145deg, #d2ad4f, #b68b2f);
  box-shadow: 0 14px 26px rgba(168, 132, 47, 0.22);
}
.metric-pill.is-gold::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(72, 48, 12, 0.10));
}
.metric-value,
.metric-label,
.metric-pill i {
  position: relative;
  z-index: 1;
}
.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-dark);
}
.metric-pill.is-gold .metric-value,
.metric-pill.is-gold .metric-label {
  color: #fff;
}
.metric-label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 8.5px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.metric-pill i {
  display: block;
  height: 4px;
  width: 0;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(224, 196, 138, 0.74), rgba(168, 132, 47, 0.96));
}
.metric-pill.is-gold i {
  background: rgba(255, 255, 255, 0.82);
}
.chart-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.chart-flow span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 0 0 1px rgba(233, 235, 241, 0.9);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
}
.chart-flow span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(200, 162, 77, 0.50);
}

/* Dispara quando o painel entra na viewport (classe .in via IntersectionObserver) */
.reveal.in .chart-signal {
  animation: metric-rise 0.75s var(--ease-out) 0.22s forwards;
}
.reveal.in .chart-line {
  animation: chart-draw 1.9s var(--ease-out) 0.35s forwards;
}
.reveal.in .chart-area {
  animation: chart-fill 1.4s var(--ease-out) 0.85s forwards;
}
.reveal.in .chart-points circle {
  animation: chart-point 0.45s var(--ease-out) forwards;
}
.reveal.in .chart-points circle:nth-child(1) { animation-delay: 0.65s; }
.reveal.in .chart-points circle:nth-child(2) { animation-delay: 0.82s; }
.reveal.in .chart-points circle:nth-child(3) { animation-delay: 0.99s; }
.reveal.in .chart-points circle:nth-child(4) { animation-delay: 1.16s; }
.reveal.in .chart-points circle:nth-child(5) { animation-delay: 1.33s; }
.reveal.in .metric-pill {
  animation: metric-rise 0.7s var(--ease-out) forwards;
}
.reveal.in .metric-pill::before {
  height: var(--w);
}
.reveal.in .metric-pill i {
  animation: metric-bar 1s var(--ease-out) forwards;
}
.reveal.in .metric-pill:nth-child(1) { animation-delay: 0.75s; }
.reveal.in .metric-pill:nth-child(2) { animation-delay: 0.92s; }
.reveal.in .metric-pill:nth-child(3) { animation-delay: 1.09s; }
.reveal.in .metric-pill:nth-child(4) { animation-delay: 1.26s; }
.reveal.in .metric-pill:nth-child(1) i { animation-delay: 1s; }
.reveal.in .metric-pill:nth-child(2) i { animation-delay: 1.17s; }
.reveal.in .metric-pill:nth-child(3) i { animation-delay: 1.34s; }
.reveal.in .metric-pill:nth-child(4) i { animation-delay: 1.51s; }
.reveal.in .chart-flow span {
  animation: metric-rise 0.55s var(--ease-out) forwards;
}
.reveal.in .chart-flow span:nth-child(1) { animation-delay: 1.25s; }
.reveal.in .chart-flow span:nth-child(2) { animation-delay: 1.42s; }
.reveal.in .chart-flow span:nth-child(3) { animation-delay: 1.59s; }
.reveal.in .chart-flow span:nth-child(4) { animation-delay: 1.76s; color: var(--gold-dark); }
.reveal.in .chart-dot {
  animation:
    chart-dot 0.6s var(--ease-out) 1.55s forwards,
    chart-dot-pulse 2.4s ease-in-out 2.15s infinite;
}

@keyframes chart-draw {
  from { stroke-dashoffset: 520; }
  to { stroke-dashoffset: 0; }
}
@keyframes chart-fill {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes chart-dot {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes chart-dot-pulse {
  0%, 100% { r: 5; filter: drop-shadow(0 0 0 rgba(200, 162, 77, 0)); }
  50% { r: 6.2; filter: drop-shadow(0 0 4px rgba(200, 162, 77, 0.6)); }
}
@keyframes chart-point {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes metric-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes metric-bar {
  from { width: 0; }
  to { width: var(--w); }
}
@media (max-width: 560px) {
  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chart-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chart-flow span::after {
    display: none;
  }
}

.scene-revenue {
  min-height: 350px;
  justify-content: center;
}
.invoice-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 162, 77, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 252, 0.92));
  box-shadow: var(--shadow-lg);
}
.invoice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(168, 132, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 132, 47, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.invoice-head,
.invoice-summary,
.invoice-checklist,
.invoice-status {
  position: relative;
  z-index: 1;
}
.invoice-head,
.invoice-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.invoice-head {
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}
.invoice-head span,
.invoice-summary span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.invoice-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-muted);
}
.invoice-kicker::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.invoice-head strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  color: var(--text-primary);
}
.invoice-summary {
  margin-top: 18px;
}
.invoice-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 18px;
}
.invoice-summary div:last-child strong {
  color: var(--gold-dark);
}
.invoice-checklist {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.invoice-step {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--border-light);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
}
.invoice-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}
.invoice-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: #fff;
  color: transparent;
}
.invoice-check svg {
  width: 14px;
  height: 14px;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
}
.invoice-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  opacity: 0;
}
.invoice-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 162, 77, 0.16);
}
.invoice-status strong {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 16px;
}
.reveal.in .invoice-check {
  animation: invoice-check-fill 0.34s var(--ease-out) forwards;
}
.reveal.in .step-one .invoice-check { animation-delay: 0s; }
.reveal.in .step-two .invoice-check { animation-delay: 1s; }
.reveal.in .step-three .invoice-check { animation-delay: 2s; }
.reveal.in .step-four .invoice-check { animation-delay: 3s; }
.reveal.in .invoice-check svg {
  animation: invoice-check-draw 0.34s var(--ease-out) forwards;
}
.reveal.in .step-one .invoice-check svg { animation-delay: 0.06s; }
.reveal.in .step-two .invoice-check svg { animation-delay: 1.06s; }
.reveal.in .step-three .invoice-check svg { animation-delay: 2.06s; }
.reveal.in .step-four .invoice-check svg { animation-delay: 3.06s; }
.reveal.in .invoice-status {
  animation: invoice-status-in 0.55s var(--ease-out) 3.45s forwards;
}
@keyframes invoice-check-fill {
  to {
    border-color: rgba(200, 162, 77, 0.35);
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-gold-sm);
  }
}
@keyframes invoice-check-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes invoice-status-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .invoice-head,
  .invoice-summary {
    flex-direction: column;
  }
}

.scene-human-flow {
  min-height: 340px;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}
.scene-human-flow::before {
  content: '';
  position: absolute;
  inset: -20px;
  background:
    linear-gradient(rgba(168, 132, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 132, 47, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.human-flow-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 22px;
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.human-flow-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ce0b0;
  box-shadow: 0 0 0 5px rgba(140, 224, 176, 0.18);
}
.human-flow-stack {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(430px, 100%);
  margin: 0 auto;
}
.flow-object {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
}
.flow-object small {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.flow-object strong {
  display: block;
  margin-top: 4px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.2;
}
.object-status {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: #fff;
  color: transparent;
}
.object-status svg {
  width: 16px;
  height: 16px;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
}
.object-status.alert {
  color: var(--gold-dark);
  border-color: rgba(200, 162, 77, 0.42);
  background: rgba(200, 162, 77, 0.08);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.object-status.human {
  color: var(--gold-dark);
  border-color: rgba(200, 162, 77, 0.42);
}
.object-status.human svg {
  width: 18px;
  height: 18px;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}
.object-alert {
  border-color: rgba(200, 162, 77, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(200, 162, 77, 0.08)),
    #fff;
}
.flow-arrow {
  position: relative;
  width: 2px;
  height: 22px;
  background: var(--border-light);
  opacity: 0;
}
.flow-arrow::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  box-shadow: 0 0 14px rgba(200, 162, 77, 0.28);
}
.flow-arrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
}
.human-alert-card {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 14px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(200, 162, 77, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(200, 162, 77, 0.08)),
    #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
}
.human-alert-card span {
  display: block;
  color: var(--gold-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.human-alert-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 17px;
}
.human-alert-card p {
  margin: 7px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}
.reveal.in .flow-object {
  animation: human-object-in 0.48s var(--ease-out) forwards;
}
.reveal.in .object-a { animation-delay: 0.1s; }
.reveal.in .object-b { animation-delay: 0.72s; }
.reveal.in .object-alert { animation-delay: 1.34s; }
.reveal.in .object-human { animation-delay: 2.05s; }
.reveal.in .object-a .object-status,
.reveal.in .object-b .object-status {
  animation: human-node-done 0.35s var(--ease-out) forwards;
}
.reveal.in .object-a .object-status { animation-delay: 0.32s; }
.reveal.in .object-b .object-status { animation-delay: 0.94s; }
.reveal.in .object-a svg { animation: human-check 0.36s var(--ease-out) 0.38s forwards; }
.reveal.in .object-b svg { animation: human-check 0.36s var(--ease-out) 1s forwards; }
.reveal.in .object-alert .object-status {
  animation: human-alert-pulse 1.1s var(--ease-default) 1.62s infinite;
}
.reveal.in .flow-arrow {
  animation: human-arrow-show 0.2s var(--ease-out) forwards;
}
.reveal.in .arrow-a { animation-delay: 0.52s; }
.reveal.in .arrow-b { animation-delay: 1.14s; }
.reveal.in .arrow-c { animation-delay: 1.82s; }
.reveal.in .flow-arrow::before {
  animation: human-arrow-run 0.42s var(--ease-out) forwards;
}
.reveal.in .arrow-a::before { animation-delay: 0.56s; }
.reveal.in .arrow-b::before { animation-delay: 1.18s; }
.reveal.in .arrow-c::before { animation-delay: 1.86s; }
.reveal.in .flow-arrow::after {
  animation: human-arrow-head 0.2s var(--ease-out) forwards;
}
.reveal.in .arrow-a::after { animation-delay: 0.86s; }
.reveal.in .arrow-b::after { animation-delay: 1.48s; }
.reveal.in .arrow-c::after { animation-delay: 2.16s; }
.reveal.in .human-alert-card {
  animation: human-alert-card-in 0.55s var(--ease-out) 1.78s forwards;
}
@keyframes human-object-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes human-check {
  to { stroke-dashoffset: 0; }
}
@keyframes human-node-done {
  to {
    border-color: rgba(140, 224, 176, 0.7);
    color: #39b778;
    box-shadow: 0 0 0 6px rgba(140, 224, 176, 0.16);
  }
}
@keyframes human-alert-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 77, 0.24); }
  50% { box-shadow: 0 0 0 10px rgba(200, 162, 77, 0.08); }
}
@keyframes human-alert-card-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes human-arrow-show {
  to { opacity: 1; }
}
@keyframes human-arrow-run {
  from { height: 0; }
  to { height: 100%; }
}
@keyframes human-arrow-head {
  to { opacity: 1; }
}
@media (max-width: 700px) {
  .scene-human-flow {
    padding: 4px;
  }
  .flow-object {
    min-height: 54px;
  }
}

/* ============================================================
   Timeline animada (processo)
   ============================================================ */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding-left: 52px;
}
.timeline-line {
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.timeline-progress {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  transition: height 2.6s var(--ease-out);
}
.timeline.run .timeline-progress {
  height: 100%;
}
.tl-step {
  position: relative;
  padding-bottom: 48px;
}
.tl-step:last-child {
  padding-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: -44px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-strong, #d6d0c4);
  transition: background 500ms var(--ease-default), border-color 500ms var(--ease-default),
    box-shadow 500ms var(--ease-default);
  transition-delay: calc(var(--s, 0) * 0.6s);
  z-index: 1;
}
.timeline.run .tl-dot {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 0 0 5px rgba(200, 162, 77, 0.14);
}
.timeline.run .tl-dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: tl-ring 2.4s var(--ease-out) infinite;
  animation-delay: calc(var(--s, 0) * 0.6s + 0.4s);
}
@keyframes tl-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.tl-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 8px;
}
.tl-step h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.tl-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  max-width: 58ch;
}
.tl-num {
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bg-card-alt);
}
@media (max-width: 560px) {
  .tl-num { display: none; }
  .timeline { padding-left: 44px; }
  .tl-dot { left: -38px; }
}

/* Card de garantia em destaque (borda dourada fixa, sem piscar) */
.objection.glow-card {
  border-color: rgba(200, 162, 77, 0.4);
  background: linear-gradient(180deg, rgba(200, 162, 77, 0.035), #fff 60%);
}

/* ============================================================
   Soluções: cards em destaque, badge, filtro com contagem,
   animação de entrada e estado vazio.
   ============================================================ */

/* Card em destaque: borda dourada fixa + fundo levemente tingido */
.svc-card-featured {
  background: linear-gradient(180deg, rgba(200, 162, 77, 0.055), #fff 58%);
  box-shadow: 0 18px 46px -20px rgba(200, 162, 77, 0.4);
}
.svc-card-featured::after {
  opacity: 1;
}
.svc-card-featured .svc-num {
  display: none;
}
/* No destaque, o CTA fica sempre visível (inclusive no mobile/touch) */
.svc-card-featured .svc-reveal {
  max-height: 90px;
  opacity: 1;
  margin-top: 22px;
  padding-top: 18px;
}

/* Badge do card em destaque */
.svc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-gold-sm);
}
.svc-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

/* Barra de controles: botão "Filtrar" à esquerda, contagem à direita */
.svc-controls {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 30px;
}
.svc-filter {
  position: relative;
  z-index: 40;
}
.svc-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 200ms var(--ease-default), box-shadow 200ms var(--ease-default);
}
.svc-filter-toggle:hover {
  border-color: var(--gold);
}
.svc-filter-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 77, 0.14);
}
.svc-filter-icon {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
}
.svc-filter-current {
  color: var(--gold-dark);
  font-weight: 700;
}
.svc-filter-current::before {
  content: '·';
  margin-right: 7px;
  color: var(--text-light);
  font-weight: 400;
}
.svc-filter-chevron {
  width: 15px;
  height: 15px;
  color: var(--text-muted);
  transition: transform 220ms var(--ease-default);
}
.svc-filter-toggle[aria-expanded="true"] .svc-filter-chevron {
  transform: rotate(180deg);
}
.svc-filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: max-content;
  max-width: min(540px, 88vw);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  background: #fff;
  box-shadow: 0 26px 64px -24px rgba(23, 20, 13, 0.3);
  animation: svc-menu-in 180ms var(--ease-default) both;
}
.svc-filter-menu[hidden] {
  display: none;
}
@keyframes svc-menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.svc-filter-heading {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.svc-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Contagem de resultados (à direita dos controles) */
.svc-count {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  margin: 0;
  min-height: 15px;
}
.svc-count strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Contador dentro de cada chip do filtro */
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.chip-count {
  padding: 0 6px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 17px;
  color: var(--text-muted);
  background: #f0ede6;
  font-variant-numeric: tabular-nums;
}
.filter-chip.active .chip-count {
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
}

/* Animação de entrada ao trocar de filtro */
@keyframes svc-in {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.svc-grid.is-filtering .svc-card:not(.hidden) {
  animation: svc-in 340ms var(--ease-default) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}

/* Estado vazio (nenhuma solução na categoria) */
.svc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 44px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}
.svc-empty a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Ajustes mobile do filtro e destaque */
@media (max-width: 600px) {
  .svc-filter,
  .svc-filter-toggle {
    width: 100%;
  }
  .svc-filter-toggle {
    justify-content: center;
  }
  .svc-filter-menu {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }
  .svc-badge {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 4px 9px;
  }
  @media (prefers-reduced-motion: no-preference) {
    .svc-grid.is-filtering .svc-card:not(.hidden) {
      animation-duration: 300ms;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  .svc-grid.is-filtering .svc-card:not(.hidden) {
    animation: none;
  }
}

/* ============================================================
   Compactação mobile — reduz a altura das seções em grid no
   celular (desktop intacto). Ver conversa: pilares, cards com
   ícone, "sem risco" e página de soluções ficavam longos demais.
   ============================================================ */

/* (1) Cards com ícone "Presença Digital" (index): 2 por linha */
@media (max-width: 640px) {
  .digital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .digital-card {
    min-height: auto;
    padding: 18px;
    border-radius: 14px;
  }
}

@media (max-width: 600px) {
  /* (2) Quatro pilares: mantém 1 coluna, só reduz escala/espaçamento */
  .pilar-panel + .pilar-panel {
    margin-top: 40px;
  }
  .pilar-panel-grid,
  .pilar-panel-reverse .pilar-panel-grid {
    gap: 22px;
  }
  .pilar-num {
    font-size: 38px;
    margin-bottom: 8px;
  }
  .pilar-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .pilar-lead {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .pilar-body {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .pilar-list {
    gap: 10px;
    margin-bottom: 20px;
  }
  .pilar-visual-card {
    padding: 18px;
    border-radius: 18px;
  }
  .scene {
    min-height: 200px;
  }

  /* (3) Cards curtos com ícone (4 frentes no index, 3 garantias no
     processo): 2 por linha em vez de empilhados */
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .grid-3 .card,
  .grid-4 .card {
    padding: 18px;
    border-radius: 14px;
  }
  .grid-3 .card-icon,
  .grid-4 .card-icon {
    margin-bottom: 10px;
  }

  /* (4) "Sem risco": 2 por linha, com o card reempilhado na vertical */
  .grid-2:has(.objection) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .objection {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
  }
  .objection-check {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .objection-check svg {
    width: 17px;
    height: 17px;
  }
  .objection h3 {
    font-size: 15.5px;
    margin: 0 0 5px;
  }
  .objection p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* (5) Página de soluções: mantém 1 coluna, compacta os cards densos */
  .svc-grid {
    gap: 14px;
  }
  .svc-card {
    padding: 20px 20px 18px;
    border-radius: 16px;
  }
  .svc-top {
    margin-bottom: 12px;
  }
  .svc-card h3 {
    font-size: 19px;
    margin: 0 0 12px;
  }
  .ps-block + .ps-block {
    margin-top: 10px;
  }
  .ps-text {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

