/* =========================================================================
   GALDINO SISTEMAS — Parceiro Oficial LC Sistemas
   style.css — folha de estilos principal
   Sumário:
     1. Reset & variáveis (design tokens)
     2. Tipografia base
     3. Utilitários (container, botões, badges, eyebrow)
     4. Header / navegação
     5. Hero
     6. Selo parceiro / marquee de confiança
     7. Seção "Por que escolher"
     8. Módulos do ERP
     9. Segmentos
    10. Como funciona (timeline)
    11. Diferenciais
    12. CTA banners
    13. Depoimentos / especialistas
    14. FAQ
    15. Formulário (demonstração / contato)
    16. Rodapé
    17. Página interna: hero secundário
    18. Animações
   ========================================================================= */

/* ---------- 1. RESET & VARIÁVEIS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Cores de marca */
  --navy-950: #070a1f;
  --navy-900: #0c1338;
  --navy-800: #141c4a;
  --navy-700: #1d2760;

  --purple-600: #6c3ce9;
  --purple-500: #7f4ff0;
  --purple-400: #a98bff;
  --purple-100: #efe9ff;

  --blue-accent: #3b5bff;

  --graphite-900: #1a1d2b;
  --graphite-700: #3a3f54;
  --graphite-500: #656b85;
  --graphite-300: #9aa0bb;

  --gray-50: #fafbff;
  --gray-100: #f3f4fa;
  --gray-200: #e9eaf5;
  --line: #e3e5f2;

  --white: #ffffff;

  --grad-brand: linear-gradient(135deg, #0c1338 0%, #4a2fd1 55%, #7f4ff0 100%);
  --grad-accent: linear-gradient(135deg, #6c3ce9 0%, #3b5bff 100%);
  --grad-soft: linear-gradient(160deg, #f6f4ff 0%, #eef1ff 100%);

  /* Tipografia */
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* Espaçamento */
  --section-y: 112px;
  --container-w: 1220px;

  /* Sombras */
  --shadow-sm: 0 2px 10px rgba(20, 22, 60, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 22, 60, 0.10);
  --shadow-lg: 0 24px 64px rgba(20, 22, 60, 0.16);
  --shadow-purple: 0 16px 40px rgba(108, 60, 233, 0.22);

  /* Raios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--graphite-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
svg.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; }

:focus-visible {
  outline: 2.5px solid var(--purple-500);
  outline-offset: 3px;
  border-radius: 4px;
}

@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;
  }
}

/* ---------- 2. TIPOGRAFIA ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { line-height: 1.7; color: var(--graphite-500); }

.lead { font-size: 1.15rem; color: var(--graphite-700); line-height: 1.65; }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { margin-top: 14px; }
.section-head.align-left { margin-left: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-600);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--purple-600);
  display: inline-block;
}

/* ---------- 3. UTILITÁRIOS ---------- */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: var(--section-y) 0; }
.bg-light { background: var(--gray-100); }
.bg-soft { background: var(--grad-soft); }
.bg-dark { background: var(--grad-brand); color: var(--white); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,0.72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(108,60,233,0.3); }
.btn-whatsapp {
  background: var(--white);
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn-whatsapp:hover { border-color: var(--purple-400); transform: translateY(-2px); }
.bg-dark .btn-whatsapp { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.24); }
.bg-dark .btn-whatsapp:hover { background: rgba(255,255,255,0.14); }
.btn-whatsapp-solid {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(37,211,102,0.28);
}
.btn-whatsapp-solid:hover { background: #20bd5a; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37,211,102,0.36); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--purple-500); color: var(--purple-600); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.badge-partner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 9px 18px 9px 14px;
  border-radius: var(--r-pill);
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.badge-partner .badge-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-partner .badge-check svg { width: 12px; height: 12px; stroke: var(--white); stroke-width: 3; }

.badge-partner.on-light {
  background: var(--purple-100);
  border-color: transparent;
  color: var(--purple-700, var(--navy-900));
}
.badge-partner.on-light .badge-check { background: var(--grad-accent); }

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--gray-100);
  color: var(--graphite-700);
  font-size: 0.82rem;
  font-weight: 500;
}

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.center { text-align: center; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- 4. HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20,22,60,0.05);
}
.site-header .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-900); font-weight: 700; letter-spacing: -0.01em;}
.brand-text span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.08em; color: var(--purple-600); text-transform: uppercase; font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav .mobile-nav-cta { display: none; }
.main-nav a {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--graphite-700);
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: var(--gray-100); color: var(--navy-900); }
.main-nav a.is-active { background: var(--purple-100); color: var(--purple-600); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 12px 24px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--navy-900);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  z-index: 501;
}
.nav-toggle:hover { background: var(--gray-100); }
.nav-toggle svg { width: 22px; height: 22px; }

/* Fundo escurecido atrás do menu mobile aberto */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 31, 0.45);
  backdrop-filter: blur(2px);
  z-index: 498;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  padding: 176px 0 120px;
  background: var(--grad-brand);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,79,240,0.35) 0%, rgba(127,79,240,0) 70%);
  top: -420px; right: -260px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 { color: var(--white); margin: 18px 0 20px; }
.hero-copy .lead { color: rgba(255,255,255,0.76); max-width: 520px; margin-bottom: 34px; }
.hero .badge-partner { margin-bottom: 22px; }
.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-proof .stat-num {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.hero-proof .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* Painel mockup do dashboard (elemento assinatura) */
.dash-mock {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  animation: float-panel 7s ease-in-out infinite;
  overflow: hidden;
}
.dash-mock .dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  min-width: 0;
}
.dash-mock .dash-topbar-dots { display: flex; align-items: center; gap: 6px; flex: none; }
.dash-mock .dash-topbar-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.28); }
.dash-mock .dash-brand { display: flex; align-items: center; gap: 6px; min-width: 0; overflow: hidden; }
.dash-mock .dash-brand img { width: 16px; height: 16px; object-fit: contain; flex: none; border-radius: 4px; }
.dash-mock .dash-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.dash-mock .dash-live {
  margin-left: auto;
  flex: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #7ce8b6;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.dash-mock .dash-live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: live-pulse 1.8s ease-in-out infinite; }

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.dash-kpi {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 12px 12px;
  min-width: 0;
}
.dash-kpi .kpi-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #a98bff, #6c3ce9);
  color: var(--white);
}
.dash-kpi .kpi-icon .icon { width: 14px; height: 14px; }
.dash-kpi .kpi-body { min-width: 0; }
.dash-kpi .kpi-label { font-size: 0.66rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-mono); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-kpi .kpi-value { font-family: var(--font-mono); font-size: 1.2rem; font-weight: 600; color: var(--white); margin-top: 5px; white-space: nowrap; }
.dash-kpi .kpi-trend { font-size: 0.72rem; color: #7ce8b6; margin-top: 3px; white-space: nowrap; }

.dash-chart {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 16px 16px 10px;
  margin-bottom: 14px;
}
.dash-chart .chart-label { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, #a98bff, #6c3ce9);
  border-radius: 4px 4px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  animation: grow-bar 1s cubic-bezier(.2,.9,.3,1) forwards;
}
.dash-modules { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-modules .mod-pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
}

@keyframes grow-bar { to { transform: scaleY(1); } }
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  50% { opacity: .6; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}
@keyframes float-panel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- 6. MARQUEE / CONFIANÇA ---------- */
.trust-strip { padding: 40px 0; border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip .trust-label { font-family: var(--font-mono); font-size: 0.76rem; color: var(--graphite-300); text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap; }
.trust-logos { display: flex; gap: 38px; flex-wrap: wrap; align-items: center; }
.trust-logos span { font-family: var(--font-display); font-weight: 600; color: var(--graphite-300); font-size: 1.05rem; letter-spacing: -0.01em; }

/* ---------- 7. CARDS "POR QUE ESCOLHER" ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-purple);
}
.feature-icon svg { width: 25px; height: 25px; stroke: var(--white); color: var(--white); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; }

/* ---------- 8. MÓDULOS ERP ---------- */
.module-grid { grid-template-columns: repeat(4, 1fr); }
.module-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color .3s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--purple-400); }
.module-card .mod-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.module-card .mod-icon svg { width: 22px; height: 22px; }
.module-card h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--navy-900); margin-bottom: 6px; font-weight: 600; }
.module-card p { font-size: 0.86rem; margin: 0; }

/* ---------- 8b. PLANOS / PREÇOS ---------- */
.plan-filter-row { margin-bottom: 40px; }

.plans-grid { grid-template-columns: repeat(3, 1fr); }

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--purple-400); }
.plan-card.featured { border-color: var(--purple-400); box-shadow: var(--shadow-purple); }

.plan-tag {
  position: absolute;
  top: -13px;
  left: 26px;
  background: var(--grad-accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-purple);
}

.plan-card .plan-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.plan-card .plan-icon svg { width: 23px; height: 23px; }

.plan-card .plan-cat { margin-bottom: 10px; }
.plan-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--navy-900); font-weight: 600; margin-bottom: 8px; }
.plan-card .plan-desc { font-size: 0.88rem; margin-bottom: 22px; flex-grow: 1; }

.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.plan-price .price-value { font-family: var(--font-display); font-size: 1.85rem; font-weight: 700; color: var(--navy-900); letter-spacing: -0.01em; }
.plan-price .price-period { font-size: 0.82rem; color: var(--graphite-500); }
.plan-price.price-consult .price-value { font-size: 1.12rem; font-weight: 600; }

.plan-card .btn { margin-top: auto; width: 100%; }

.plans-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--grad-soft);
  border: 1px solid var(--purple-100);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin-bottom: 52px;
}
.plans-note .note-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--white);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.plans-note .note-icon svg { width: 19px; height: 19px; }
.plans-note p { font-size: 0.92rem; color: var(--graphite-700); margin: 0; }
.plans-note strong { color: var(--navy-900); }

/* ---------- 9. SEGMENTOS ---------- */
.segment-grid { grid-template-columns: repeat(5, 1fr); }
.segment-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.segment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.segment-card .seg-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.segment-card .seg-icon svg { width: 26px; height: 26px; }
.segment-card h4 { font-size: 0.94rem; font-weight: 600; color: var(--navy-900); }

/* ---------- 10. TIMELINE "COMO FUNCIONA" ---------- */
.timeline { position: relative; }
.timeline-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 34px; left: 10%; right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--purple-400) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline-step { position: relative; z-index: 1; text-align: center; }
.timeline-step .step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--purple-400);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-mono);
  font-weight: 600;
  position: relative;
}
.timeline-step:nth-child(odd) .step-num { background: var(--grad-accent); border-color: transparent; color: var(--white); box-shadow: var(--shadow-purple); }
.timeline-step .step-num svg { width: 26px; height: 26px; }
.timeline-step .step-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--purple-500); letter-spacing: 0.06em; text-transform: uppercase; }
.timeline-step h4 { margin: 6px 0 8px; font-size: 1.02rem; }
.timeline-step p { font-size: 0.87rem; }

/* ---------- 11. DIFERENCIAIS ---------- */
.diff-list { display: flex; flex-direction: column; gap: 4px; }
.diff-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}
.diff-row:last-child { border-bottom: none; }
.diff-row .diff-check {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-row .diff-check svg { width: 17px; height: 17px; }
.diff-row h4 { font-size: 1.02rem; margin-bottom: 4px; }
.diff-row p { font-size: 0.92rem; margin: 0; }

.diff-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  background: var(--navy-900);
}
.diff-visual img { width: 100%; height: 100%; object-fit: cover; }
.diff-visual .diff-quote {
  position: absolute;
  left: 26px; right: 26px; bottom: 26px;
  background: rgba(10,14,40,0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-md);
  padding: 22px;
  color: var(--white);
}
.diff-visual .diff-quote p { color: rgba(255,255,255,0.85); font-size: 0.92rem; margin: 0; }

/* ---------- 12. CTA BANNERS ---------- */
.cta-banner {
  background: var(--grad-brand);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,79,240,0.4), transparent 70%);
  right: -180px; top: -220px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 10px; max-width: 480px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 460px; }
.cta-banner .btn-row { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- 13. ESPECIALISTAS ---------- */
.specialist-strip { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.specialist-avatars { display: flex; }
.specialist-avatars img {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  margin-left: -16px;
  box-shadow: var(--shadow-sm);
}
.specialist-avatars img:first-child { margin-left: 0; }

/* ---------- 14. FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
}
.faq-question .faq-plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-question .faq-plus svg { width: 14px; height: 14px; }
.faq-item.open .faq-question .faq-plus { background: var(--grad-accent); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 4px 24px; font-size: 0.95rem; max-width: 640px; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ---------- 15. FORMULÁRIOS ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--graphite-700); }
.field label .opt { font-weight: 400; color: var(--graphite-300); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--gray-50);
  color: var(--graphite-900);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--purple-500);
  background: var(--white);
  outline: none;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 6px; flex-wrap: wrap; }
.form-note { font-size: 0.82rem; color: var(--graphite-300); }

.form-side { display: flex; flex-direction: column; gap: 22px; }
.side-info-card {
  background: var(--gray-100);
  border-radius: var(--r-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.side-info-card .side-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--white);
  color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.side-info-card .side-icon svg { width: 20px; height: 20px; }
.side-info-card h4 { font-size: 0.98rem; margin-bottom: 4px; }
.side-info-card p, .side-info-card a { font-size: 0.9rem; }
.side-info-card a:hover { color: var(--purple-600); }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 30px;
}
.form-success.show { display: block; }
.form-success .success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: var(--shadow-purple);
}
.form-success .success-icon svg { width: 34px; height: 34px; stroke-width: 2.5; }

/* ---------- 16. RODAPÉ ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-text strong { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.92rem; max-width: 300px; margin-bottom: 20px; }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: 0.92rem; margin-bottom: 18px; letter-spacing: 0.01em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--grad-accent); border-color: transparent; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .badge-partner { padding: 7px 14px 7px 10px; font-size: 0.78rem; }

/* ---------- 17. HERO SECUNDÁRIO (páginas internas) ---------- */
.page-hero {
  position: relative;
  padding: 168px 0 84px;
  background: var(--grad-brand);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,79,240,0.32), transparent 70%);
  top: -380px; right: -200px;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: rgba(255,255,255,0.55); margin-bottom: 20px; font-family: var(--font-mono); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 { color: var(--white); max-width: 720px; }
.page-hero .lead { color: rgba(255,255,255,0.74); max-width: 620px; margin-top: 18px; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }

/* Blocos de conteúdo padrão para páginas internas */
/* ---------- VITRINE DE PRODUTOS (LC Web / LC ERP) ---------- */
.product-showcase + .product-showcase { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.showcase-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 40px; }
.showcase-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--white);
  font-size: 0.86rem; font-weight: 600; color: var(--graphite-700);
  white-space: nowrap;
}
.showcase-tab .icon { width: 16px; height: 16px; flex: none; }
.showcase-tab.active { border-color: var(--purple-500); background: var(--purple-100); color: var(--purple-600); }

.showcase-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }

.showcase-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.showcase-media img { width: 100%; height: auto; display: block; }

.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.content-block.contato-grid { grid-template-columns: 0.9fr 1.1fr; }
.content-block.reverse .content-media { order: 2; }
.content-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--graphite-700); }
.check-list .li-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--purple-100); color: var(--purple-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-list .li-check svg { width: 12px; height: 12px; stroke-width: 3; }

.video-slot {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-slot .play-btn {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-slot .play-btn:hover { transform: scale(1.08); background: rgba(255,255,255,0.22); }
.video-slot .play-btn svg { width: 30px; height: 30px; margin-left: 4px; }
.video-slot .video-label { position: absolute; bottom: 22px; left: 22px; color: rgba(255,255,255,0.8); font-family: var(--font-mono); font-size: 0.78rem; }

.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* Filtro de segmentos */
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--graphite-700);
  transition: all 0.2s ease;
}
.filter-btn.is-active, .filter-btn:hover { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad-accent);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-purple);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; transform: rotate(-90deg); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.4);
  z-index: 400;
  animation: pulse-wa 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 27px; height: 27px; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 12px 28px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 12px 28px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.08); }
}

/* Contador animado */
.stat-counter { font-family: var(--font-mono); }

/* Divisor de seção com label */
.section-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.section-divider .line { flex: 1; height: 1px; background: var(--line); }
