@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ───── tokens: cores ───── */
/* Beck Tech — sistema de cores
   60% fundo escuro profissional · 30% superfícies · 10% acento */

:root {
  /* ── Escala navy (neutros da marca) ── */
  --navy-950: #060b18;
  --navy-900: #0a1124;
  --navy-850: #0d1730;
  --navy-800: #11203f;
  --navy-700: #1a2c52;
  --navy-600: #2a3e6b;
  --navy-100: #dbe4f5;
  --navy-50:  #eef2fa;

  /* ── Neutros claros ── */
  --gray-50:  #f7f9fc;
  --gray-100: #eef1f7;
  --gray-200: #e2e8f2;
  --gray-300: #c8d2e4;
  --gray-400: #9aa8c2;
  --gray-500: #6d7d9c;
  --gray-600: #51607d;
  --gray-700: #38465f;

  /* ── Acentos da marca ── */
  --blue-700: #1d4ed8;  /* azul de ação — primário (texto/botão) */
  --blue-600: #2563eb;  /* azul secundário — hover/realce */
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --cyan-400: #38bdf8;  /* sky — acento tecnológico (só decorativo, nunca em texto) */
  --cyan-300: #7dd3fc;
  --teal-600: #0d9488;  /* teal escuro — ícones legíveis no claro (3.5:1) */
  --teal-500: #14b8a6;  /* teal — resultado/automação (realces/glow) */
  --teal-400: #2dd4bf;

  /* ── Semânticas de estado (legíveis no claro) ── */
  --success: #047857;
  --warning: #d97706;
  --danger:  #dc2626;

  /* ── Gradiente da marca ── */
  --grad-brand: linear-gradient(120deg, var(--blue-700) 0%, var(--blue-600) 50%, var(--cyan-400) 100%);
  --grad-accent-text: linear-gradient(100deg, var(--blue-700), #0284c7);

  /* ════ Aliases semânticos — TEMA CLARO (padrão da marca) ════ */
  --bg-page: #f7f9fc;             /* off-white com leve tom slate */
  --bg-raised: #eef2f8;           /* faixas (bands) — um tom mais fundo */
  --surface-card: #ffffff;        /* cards sempre brancos, destacam por sombra/borda */
  --surface-card-2: #f1f5f9;      /* superfícies internas (kpi, gráfico, thumbs) */
  --surface-inset: rgba(15, 23, 42, 0.04);
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --text-strong: #0f172a;         /* slate-900 — títulos/corpo principal (16.7:1) */
  --text-body: #334155;           /* slate-700 — corpo (10:1) */
  --text-muted: #475569;          /* slate-600 — apoio (7:1) */
  --text-faint: #64748b;          /* slate-500 — legendas (4.7:1) */
  --text-inverse: #ffffff;

  --accent: var(--blue-700);
  --accent-soft: rgba(29, 78, 216, 0.10);
  --accent-2: var(--cyan-400);
  --accent-3: var(--teal-500);
  --on-accent: #ffffff;
  --link: var(--blue-700);
  --focus-ring: rgba(29, 78, 216, 0.45);

  color-scheme: light;
}

/* ───── tokens: tipografia ───── */
/* Beck Tech — tipografia */
:root {
  --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Escala (desktop) */
  --text-hero: clamp(2.4rem, 5.2vw, 4rem);   /* headline do hero */
  --text-h1: 2.5rem;     /* 40px */
  --text-h2: 2rem;       /* 32px — títulos de seção */
  --text-h3: 1.375rem;   /* 22px — títulos de card */
  --text-h4: 1.125rem;   /* 18px */
  --text-lg: 1.125rem;   /* 18px — lead/subtítulos */
  --text-base: 1rem;     /* 16px — corpo */
  --text-sm: 0.875rem;   /* 14px — apoio */
  --text-xs: 0.75rem;    /* 12px — labels, eyebrows */

  --leading-tight: 1.12;
  --leading-snug: 1.3;
  --leading-body: 1.65;

  --tracking-tight: -0.02em;
  --tracking-wide: 0.14em;  /* eyebrows/overlines em caixa alta */

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
}

/* ───── tokens: espaçamento ───── */
/* Beck Tech — espaçamento, raios, sombras, movimento */
:root {
  /* Escala de espaço (base 4px) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Layout */
  --container: 1160px;
  --section-pad: clamp(64px, 9vw, 112px);

  /* Raios */
  --radius-sm: 8px;
  --radius-md: 12px;   /* botões, inputs */
  --radius-lg: 16px;   /* cards */
  --radius-xl: 24px;   /* painéis grandes */
  --radius-full: 999px;

  /* Sombras */
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 24px rgba(15, 23, 42, 0.06);
  --shadow-pop: 0 18px 48px rgba(15, 23, 42, 0.12);
  --shadow-accent: 0 10px 24px rgba(29, 78, 216, 0.22);

  /* Movimento — discreto, sem exageros */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --dur-fast: 150ms; /* @kind other */
  --dur-base: 240ms; /* @kind other */
}

/* ───── base global ───── */
/* Beck Tech — base global */
* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

code, pre { font-family: var(--font-mono); }

::selection { background: var(--accent-soft); color: var(--text-strong); }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}

/* ───── site institucional ───── */
/* Beck Tech — site institucional */

html { scroll-behavior: smooth; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: var(--section-pad) 0; }

/* ───────── Header ───────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg-page) 78%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.site-header .container {
  display: flex; align-items: center; gap: var(--space-6);
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 30px; display: block; }
.brand-name {
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: 15px; letter-spacing: 0.16em; color: var(--text-strong);
}
.brand-name em { font-style: normal; color: var(--accent); }
.site-nav { display: flex; gap: var(--space-5); margin-left: auto; }
.site-nav a {
  color: var(--text-muted); font-size: var(--text-sm); font-weight: var(--weight-semibold);
  text-decoration: none; transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:hover { color: var(--text-strong); text-decoration: none; }

/* ───────── Botões ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: var(--weight-bold); line-height: 1.2;
  font-size: var(--text-base); padding: 13px 28px;
  border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: filter var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:hover { text-decoration: none; filter: brightness(1.1); transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn-secondary { background: var(--surface-inset); color: var(--text-strong); border-color: var(--border-strong); }
.btn-sm { padding: 9px 18px; font-size: var(--text-sm); }
.btn-lg { padding: 16px 34px; }
.btn .lucide { width: 18px; height: 18px; }

/* ───────── Seções: cabeçalho padrão ───────── */
.section-head { max-width: 680px; margin-bottom: var(--space-7); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: var(--text-xs); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-3);
}
.section-head h2 { font-size: var(--text-h2); font-weight: var(--weight-bold); margin-bottom: var(--space-3); }
.section-head p { color: var(--text-muted); font-size: var(--text-lg); }

.band { background: var(--bg-raised); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }

/* ───────── Hero ───────── */
.hero { padding-top: calc(68px + clamp(56px, 8vw, 96px)); position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; pointer-events: none; inset: 0;
  background:
    radial-gradient(560px 360px at 78% 18%, var(--accent-soft), transparent 70%),
    radial-gradient(420px 300px at 12% 80%, color-mix(in srgb, var(--accent-3) 7%, transparent), transparent 70%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); align-items: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-full);
  padding: 7px 16px; margin-bottom: var(--space-5); background: var(--surface-inset);
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 99px; background: var(--accent); }
.hero h1 {
  font-size: var(--text-hero); font-weight: var(--weight-extrabold);
  margin-bottom: var(--space-5); max-width: 20ch;
}
.hero h1 .grad {
  background: var(--grad-accent-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: var(--text-lg); color: var(--text-muted); max-width: 46ch; margin-bottom: var(--space-6); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-5); }
.hero-note { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--text-faint); }
.hero-note .lucide { width: 15px; height: 15px; color: var(--accent); }

/* hero visual — janela de dashboard */
.hero-visual { position: relative; }
.mock-window {
  background: var(--surface-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-pop); overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); }
.mock-bar i { width: 10px; height: 10px; border-radius: 99px; background: var(--border-strong); }
.mock-bar span {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint);
  background: var(--surface-inset); border-radius: 6px; padding: 3px 10px;
}
.mock-body { padding: 20px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.kpi { background: var(--surface-card-2); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 12px 14px; }
.kpi small { display: block; font-size: 10.5px; color: var(--text-faint); letter-spacing: 0.04em; text-transform: uppercase; font-weight: var(--weight-bold); }
.kpi b { font-family: var(--font-display); font-size: 19px; color: var(--text-strong); }
.kpi .up { color: var(--success); font-size: 11px; font-weight: var(--weight-bold); }
.mock-chart {
  grid-column: 1 / -1; background: var(--surface-card-2); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); padding: 14px; display: flex; align-items: flex-end; gap: 8px; height: 110px;
}
.mock-chart i { flex: 1; border-radius: 4px 4px 2px 2px; background: rgba(29, 78, 216, 0.20); }
.mock-chart i.hot { background: var(--grad-brand); }
.float-chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--surface-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 12px 16px; box-shadow: var(--shadow-pop);
}
.float-chip .lucide { width: 18px; height: 18px; color: var(--accent); }
.float-chip b { display: block; font-size: 13px; color: var(--text-strong); font-family: var(--font-display); }
.float-chip span { font-size: 11.5px; color: var(--text-faint); }
.chip-automation { right: -18px; top: -22px; }
.chip-code { left: -26px; bottom: -20px; }
.chip-code code { font-family: var(--font-mono); font-size: 11.5px; color: var(--blue-600); }
.chip-automation .lucide { color: var(--teal-600); }

/* ───────── Problemas ───────── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.pain {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5);
}
.pain .lucide { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pain b { display: block; color: var(--text-strong); font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-semibold); margin-bottom: 4px; }
.pain p { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Serviços ───────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.service {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-6);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.service:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.service .icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 4px;
}
.service .icon .lucide { width: 21px; height: 21px; }
.service h3 { font-size: var(--text-h4); font-weight: var(--weight-semibold); }
.service p { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Processo ───────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); counter-reset: step; }
.step {
  position: relative; background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5) var(--space-5) var(--space-5);
}
.step .num {
  font-family: var(--font-display); font-weight: var(--weight-extrabold);
  font-size: 14px; color: var(--accent);
  background: var(--accent-soft); border-radius: var(--radius-sm);
  width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.step b { display: block; color: var(--text-strong); font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-semibold); margin-bottom: 4px; }
.step p { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Benefícios ───────── */
.benefits { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--space-8); align-items: center; }
.benefit-list { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .lucide { width: 19px; height: 19px; color: var(--success); flex-shrink: 0; margin-top: 4px; }
.benefit b { color: var(--text-strong); font-weight: var(--weight-bold); }
.benefit span { color: var(--text-muted); }

/* ───────── Sobre ───────── */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-8); align-items: start; }
.about-card {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: var(--space-6);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4); text-align: center;
}
.about-card img.tile { width: 96px; border-radius: 24px; box-shadow: var(--shadow-card); }
.about-card .role { font-size: var(--text-sm); color: var(--text-muted); }
.about-card .loc { display: flex; align-items: center; gap: 6px; font-size: var(--text-xs); color: var(--text-faint); }
.about-card .loc .lucide { width: 14px; height: 14px; color: var(--accent); }
.about-body p { color: var(--text-muted); margin-bottom: var(--space-4); }
.stack { display: flex; flex-wrap: wrap; gap: 8px; }
.stack span {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-body);
  background: var(--surface-inset); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full); padding: 5px 14px;
}

/* ───────── Exemplos ───────── */
.examples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.example {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.example:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.example .thumb {
  height: 120px; display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(180deg, var(--accent-soft), transparent),
    var(--surface-card-2);
  border-bottom: 1px solid var(--border-subtle);
}
.example .thumb .lucide { width: 34px; height: 34px; color: var(--accent); }
.example .body { padding: var(--space-5); display: flex; flex-direction: column; gap: 8px; }
.example .tag {
  align-self: flex-start; font-size: 10.5px; font-weight: var(--weight-bold);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border-radius: var(--radius-full); padding: 3px 10px;
}
.example b { color: var(--text-strong); font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.example p { font-size: var(--text-sm); color: var(--text-muted); }
.examples-note { margin-top: var(--space-5); font-size: var(--text-sm); color: var(--text-faint); text-align: center; }

/* ───────── IA ───────── */
.ai-quote {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: var(--weight-semibold); color: var(--text-strong);
  letter-spacing: var(--tracking-tight); line-height: var(--leading-snug);
  max-width: 24ch;
}
.ai-quote .grad { background: var(--grad-accent-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ai { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: center; }
.ai-items { display: grid; gap: var(--space-3); }
.ai-item { display: flex; gap: 12px; align-items: flex-start; }
.ai-item .lucide { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.ai-item b { color: var(--text-strong); }
.ai-item span { color: var(--text-muted); font-size: var(--text-sm); }

/* ───────── CTA final ───────── */
.cta-panel {
  position: relative; overflow: hidden; text-align: center;
  background: var(--surface-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl); padding: clamp(48px, 7vw, 80px) 24px;
  box-shadow: var(--shadow-pop);
}
.cta-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(480px 260px at 50% 0%, var(--accent-soft), transparent 70%);
}
.cta-panel > * { position: relative; }
.cta-panel h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: var(--weight-bold); max-width: 22ch; margin: 0 auto var(--space-3); }
.cta-panel p { color: var(--text-muted); font-size: var(--text-lg); margin-bottom: var(--space-6); }

/* ───────── Contato / footer ───────── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.contact-card {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.contact-card:hover { text-decoration: none; border-color: var(--border-strong); transform: translateY(-2px); }
.contact-card .icon {
  width: 42px; height: 42px; border-radius: var(--radius-md); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.contact-card .icon .lucide { width: 20px; height: 20px; }
.contact-card b { display: block; color: var(--text-strong); font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.contact-card span { font-size: var(--text-xs); color: var(--text-faint); }

/* ───────── Formulário de contato (Formspree) ───────── */
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--space-7); align-items: start; }
.contact-form {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: var(--space-6);
  box-shadow: var(--shadow-card); display: grid; gap: var(--space-4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: grid; gap: 6px; }
.field label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-strong); }
.field .req { color: var(--danger); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--text-base);
  color: var(--text-strong); background: var(--bg-page);
  border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  padding: 12px 14px; min-height: 48px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 128px; resize: vertical; line-height: var(--leading-body); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.22);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--danger); }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); margin-top: 2px; }
.form-foot .btn { min-height: 48px; }
.form-foot .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; filter: none; }
.form-hint { font-size: var(--text-xs); color: var(--text-faint); max-width: 28ch; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-msg { font-size: var(--text-sm); border-radius: var(--radius-md); padding: 12px 14px; margin: 0; }
.form-msg-error { color: #b42318; background: rgba(220, 38, 38, 0.08); border: 1px solid rgba(220, 38, 38, 0.28); }

.contact-aside { display: grid; gap: var(--space-3); align-content: start; }
.aside-title { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-strong); }
.contact-aside .loc { display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); color: var(--text-faint); margin-top: var(--space-2); }
.contact-aside .loc .lucide { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

.form-success {
  max-width: 580px; margin: 0 auto; text-align: center;
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: var(--space-7); box-shadow: var(--shadow-card);
}
.form-success .lucide { width: 42px; height: 42px; color: var(--success); margin-bottom: var(--space-3); }
.form-success b { display: block; font-family: var(--font-display); font-size: var(--text-h3); color: var(--text-strong); margin-bottom: 6px; }
.form-success p { color: var(--text-muted); }

.site-footer { border-top: 1px solid var(--border-subtle); padding: var(--space-6) 0; }
.site-footer .container { display: flex; align-items: center; gap: var(--space-4); }
.site-footer img { height: 24px; }
.site-footer p { font-size: var(--text-sm); color: var(--text-faint); }
.site-footer .right { margin-left: auto; display: flex; gap: var(--space-4); }
.site-footer .right a { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Impacto (custo de não resolver) ───────── */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.impact {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-6);
  text-align: center; box-shadow: var(--shadow-card);
}
.impact .lucide { width: 26px; height: 26px; color: var(--accent); margin-bottom: var(--space-3); }
.impact b { display: block; font-family: var(--font-display); color: var(--text-strong); font-size: var(--text-h4); font-weight: var(--weight-semibold); margin-bottom: 6px; }
.impact p { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Confiança (risco reduzido) ───────── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.trust {
  background: var(--surface-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-card);
}
.trust .lucide { width: 22px; height: 22px; color: var(--teal-600); margin-bottom: var(--space-3); }
.trust b { display: block; font-family: var(--font-display); color: var(--text-strong); font-size: var(--text-base); font-weight: var(--weight-semibold); margin-bottom: 4px; }
.trust p { font-size: var(--text-sm); color: var(--text-muted); }

/* ───────── Responsivo ───────── */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero h1 { max-width: none; }
  .pain-grid, .services-grid, .steps, .examples-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
  .benefits, .about, .ai, .contact-layout { grid-template-columns: 1fr; gap: var(--space-6); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .site-nav { display: none; }
  .chip-code { left: -8px; }
  .chip-automation { right: -8px; }
}
@media (max-width: 620px) {
  .pain-grid, .services-grid, .steps, .examples-grid, .contact-grid, .impact-grid, .trust-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn, .form-foot .btn { width: 100%; }
  .site-footer .container { flex-wrap: wrap; }
}
