/* ============================================================================
 * GERADO por scripts/sync-css.mjs — NÃO EDITAR À MÃO.
 * Origem: knxsite/src/app/khoinix.css
 * Para alterar, edite a origem no knxsite (só leitura durante a migração) ou
 * ajuste a transformação em scripts/sync-css.mjs.
 * ============================================================================ */

/* ========================================================================
   Khoinix Design System — Combined CSS
   colors_and_type + site + homepage layers
   Imported by globals.css after Tailwind/ShadCN tokens.
   ======================================================================== */

/* ============================================================
   1. COLOR & TYPOGRAPHY TOKENS
   ============================================================ */

:root {
  --max-w: 1240px;

  /* --- Brand basics --- */
  --color-brand-orange: #F58634;
  --color-brand-white:  #FEFEFE;
  --color-brand-gray:   #A9ABAE;

  /* --- Orange scale --- */
  --color-orange-50:  #FFF4EC;
  --color-orange-100: #FFE4CF;
  --color-orange-200: #FFD0AA;
  --color-orange-300: #FFB77A;
  --color-orange-400: #FFA052;
  --color-orange-500: #F58634;
  --color-orange-600: #E87420;
  --color-orange-700: #C65F18;
  --color-orange-800: #9C4A14;
  --color-orange-900: #73350E;

  /* --- Gray scale --- */
  --color-gray-50:  #F7F8F9;
  --color-gray-100: #EEF0F2;
  --color-gray-200: #DADDE1;
  --color-gray-300: #C5C8CD;
  --color-gray-400: #A9ABAE;
  --color-gray-500: #85898E;
  --color-gray-600: #666A70;
  --color-gray-700: #4A4E54;
  --color-gray-800: #2F3133;
  --color-gray-900: #17191B;

  /* --- Navy scale --- */
  --color-navy-50:  #EEF3F7;
  --color-navy-100: #D7E2EC;
  --color-navy-200: #B6CBDB;
  --color-navy-300: #8CAAC2;
  --color-navy-400: #5F86A6;
  --color-navy-500: #243B53;
  --color-navy-600: #1B3148;
  --color-navy-700: #16283C;
  --color-navy-800: #101E2D;
  --color-navy-900: #09131D;

  /* --- Teal scale --- */
  --color-teal-50:  #EAFBF8;
  --color-teal-100: #C9F4EE;
  --color-teal-200: #9BE8DE;
  --color-teal-300: #68D8CB;
  --color-teal-400: #40C4B6;
  --color-teal-500: #2CB1A1;
  --color-teal-600: #238F84;
  --color-teal-700: #1D716A;
  --color-teal-800: #195A55;
  --color-teal-900: #154B47;

  /* --- Semantic --- */
  --color-destructive: #EF4444;

  /* --- Surface / text aliases (light) --- */
  --bg:             var(--color-brand-white);
  --bg-subtle:      var(--color-gray-50);
  --bg-muted:       var(--color-gray-100);
  --surface:        var(--color-brand-white);
  --surface-inverse: var(--color-navy-500);
  --fg:             var(--color-gray-800);
  --fg-strong:      var(--color-gray-900);
  --fg-muted:       var(--color-gray-600);
  --fg-subtle:      var(--color-gray-500);

  --border:         var(--color-gray-200);
  --border-strong:  var(--color-gray-300);
  --border-subtle:  rgba(47, 49, 51, 0.08);

  --primary:        var(--color-brand-orange);
  --primary-hover:  var(--color-orange-600);
  --primary-active: var(--color-orange-700);
  --primary-fg:     var(--color-brand-white);

  --secondary:      var(--color-navy-500);
  --secondary-hover: var(--color-navy-600);
  --secondary-fg:   var(--color-brand-white);
  --secondary-foreground: var(--color-brand-white);

  --accent:         var(--color-teal-500);
  --ring:           rgba(245, 134, 52, 0.32);

  /* --- Gradients --- */
  --gradient-navy: linear-gradient(135deg, #243B53 0%, #3E5E82 100%);
  --gradient-orange: linear-gradient(135deg, #F58634 0%, #FFB36B 100%);

  /* --- Font families --- */
  --font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "General Sans", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mark:    "Chunkfive", "Roboto Slab", Georgia, serif;
  --font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* --- Spacing (8px grid) --- */
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 32px; --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 96px;

  /* --- Radius --- */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* --- Shadows --- */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);

  /* --- Motion --- */
  --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);
  --duration-fast:   120ms;
  --duration-normal: 180ms;
  --duration-slow:   280ms;
}

/* ============================================================
   2. BASE ELEMENT STYLES
   ============================================================ */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.60;
  color: var(--fg);
  background: var(--bg);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01", "ss03";
}

::selection { background: var(--color-orange-200); color: var(--color-gray-900); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg-strong);
  margin: 0 0 var(--space-md);
}

h1 { font-size: clamp(40px, 6vw, 64px); line-height: 1.08; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.18; letter-spacing: -0.01em; font-weight: 600; }
h4 { font-size: clamp(22px, 2.5vw, 28px); line-height: 1.25; font-weight: 600; }
h5 { font-size: 22px; line-height: 1.30; font-weight: 600; }

p { font-size: 16px; line-height: 1.60; color: var(--fg); margin: 0 0 var(--space-md); max-width: 70ch; text-wrap: pretty; }

a { color: var(--color-orange-700); text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
a:hover { color: var(--color-orange-600); text-decoration: underline; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   3. LAYOUT
   ============================================================ */

* { box-sizing: border-box; }

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

.section { padding: 96px 0; }
.section.alt { background: var(--bg-subtle); }

.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; margin: 0; text-wrap: balance; }
.section-head p { font-size: 18px; line-height: 1.6; color: var(--fg-muted); margin: 0; max-width: 60ch; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.kx-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ============================================================
   4. NAVBAR
   ============================================================ */

.navbar {
  position: sticky; top: 0; z-index: 50;
  height: 116px;
  display: flex; align-items: center;
  background: rgba(254, 254, 254, 0.78);
  --glass-blur: blur(24px) saturate(1.15);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand .nav-lockup { height: 88px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 14px; border-radius: var(--radius-lg);
  font: 500 15px var(--font-sans); color: var(--fg);
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.nav-links a:hover { background: var(--color-gray-100); color: var(--fg-strong); text-decoration: none; }
.nav-links a.active { color: var(--color-orange-700); background: var(--color-orange-50); }

.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; border-radius: var(--radius-lg);
  color: var(--fg); cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}
.nav-toggle:hover { background: var(--color-gray-100); }
.nav-sheet-links { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.nav-sheet-links a {
  padding: 12px 14px; border-radius: var(--radius-lg);
  font: 500 16px var(--font-sans); color: var(--fg);
  text-decoration: none;
  transition: background var(--duration-fast) var(--ease-out), color var(--duration-fast) var(--ease-out);
}
.nav-sheet-links a:hover { background: var(--color-gray-100); color: var(--fg-strong); text-decoration: none; }
.nav-sheet-links a.active { color: var(--color-orange-700); background: var(--color-orange-50); }

/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer; text-decoration: none;
  font-family: var(--font-sans); font-weight: 600;
  transition: background var(--duration-normal) var(--ease-spring),
              color var(--duration-normal) var(--ease-spring),
              box-shadow var(--duration-normal) var(--ease-spring),
              transform var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.985); }
.btn-sm  { height: 36px; padding: 0 16px; font-size: 14px; border-radius: var(--radius-lg); }
.btn-md  { height: 44px; padding: 0 20px; font-size: 16px; border-radius: var(--radius-xl); }
.btn-lg  { height: 52px; padding: 0 28px; font-size: 16px; border-radius: var(--radius-xl); }

.btn-primary  { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-sm); }
.btn-primary:hover  { background: var(--primary-hover); color: var(--primary-fg); text-decoration: none; }
.btn-primary:active { background: var(--primary-active); }

.btn-outline { background: var(--surface); color: var(--fg-strong); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--color-gray-50); color: var(--fg-strong); text-decoration: none; }

.btn-ghost { background: transparent; color: var(--fg-strong); }
.btn-ghost:hover { background: var(--color-orange-50); color: var(--color-orange-700); text-decoration: none; }

/* Anchor button overrides */
a.btn { text-decoration: none !important; }
a.btn-primary             { color: var(--primary-fg); }
a.btn-primary:hover       { color: var(--primary-fg); background: var(--primary-hover); }
a.btn-primary:active      { color: var(--primary-fg); background: var(--primary-active); }
a.btn-outline             { color: var(--fg-strong); }
a.btn-outline:hover       { color: var(--fg-strong); background: var(--color-gray-50); }
a.btn-ghost               { color: var(--fg-strong); }
a.btn-ghost:hover         { color: var(--color-orange-700); background: var(--color-orange-50); }

/* ============================================================
   6. EYEBROW / LABELS
   ============================================================ */

.kx-eyebrow {
  font-size: 12px; line-height: 1; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-orange-700);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-orange-700);
  padding: 6px 12px; border-radius: 999px; background: var(--color-orange-50);
}

/* ============================================================
   7. CARDS
   ============================================================ */

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: 28px;
  transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-spring);
  display: flex; flex-direction: column; gap: 14px;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .icon-wrap {
  width: 48px; height: 48px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-orange-50); color: var(--color-orange-700);
}
.card.tech .icon-wrap { background: var(--color-teal-50); color: var(--color-teal-700); }
.card.navy .icon-wrap { background: var(--color-navy-50); color: var(--color-navy-600); }
.card h3 { font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; font-weight: 600; margin: 0; color: var(--fg-strong); }
.card p  { font-size: 15px; line-height: 1.55; color: var(--fg-muted); margin: 0; }
.card .meta { margin-top: 6px; font-size: 13px; color: var(--color-orange-700); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   8. FORMS
   ============================================================ */

.form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--fg-strong); }
.field input, .field textarea, .field select {
  height: 44px; padding: 0 14px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: white; color: var(--fg);
  font: 400 16px var(--font-sans);
  transition: border-color var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
  outline: none;
}
.field textarea { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; line-height: 1.55; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,134,52,0.22);
}
.field .err { font-size: 13px; color: var(--color-destructive); display: flex; align-items: center; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   9. FOOTER
   ============================================================ */

.footer { background: #0A0B0C; color: rgba(255,255,255,0.78); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer h5 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-brand-orange); font-weight: 600; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; }
.footer a:hover { color: white; text-decoration: none; }
.footer .brand-block { display: flex; flex-direction: column; gap: 16px; }
.footer .brand-block .brand-row { display: flex; align-items: center; gap: 12px; }
.footer .brand-lockup { height: 180px; width: auto; display: block; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; grid-template-columns: 1fr minmax(0,30%) 1fr; gap: 24px; align-items: start;
  font-size: 13px; color: rgba(255,255,255,0.55);
}

/* ============================================================
   10. HERO
   ============================================================ */

.hero { position: relative; padding: 96px 0 64px; overflow: hidden; background: var(--color-gray-100); }
.hero-note { font-size: 19px; color: var(--fg-muted); margin: 18px 0 0; max-width: 54ch; line-height: 1.6; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; color: var(--fg-strong); margin: 20px 0 20px; text-wrap: balance; }
.hero h1 .hl { color: var(--color-orange-500); }
.hero .lede { font-size: 19px; line-height: 1.6; color: var(--fg-muted); max-width: 56ch; margin: 0 0 32px; }
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Woven art */
.hero-woven { position: relative; width: 100%; aspect-ratio: 1/1; max-width: 520px; justify-self: end; }
.hero-woven .orb { position: absolute; top: -5%; right: -12%; width: 72%; aspect-ratio: 1; background: radial-gradient(circle at 40% 40%, rgba(245,134,52,0.20) 0%, transparent 65%); filter: blur(28px); z-index: 0; pointer-events: none; }
.hero-woven .orb-teal { position: absolute; bottom: 8%; left: -8%; width: 50%; aspect-ratio: 1; background: radial-gradient(circle at 60% 60%, rgba(44,177,161,0.12) 0%, transparent 65%); filter: blur(24px); z-index: 0; pointer-events: none; }
.hero-woven .woven-svg { position: absolute; inset: 4%; z-index: 1; pointer-events: none; width: 92%; height: 92%; }
.hero-woven .fl-card { position: absolute; background: white; border: 1px solid var(--border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); z-index: 2; }
.fl-card--mockup { top: 5%; left: 4%; width: 56%; padding: 16px; }
.fl-card--code   { bottom: 5%; right: 2%; width: 60%; padding: 14px; }
.fl-card--metric { top: 40%; right: -1%; width: 37%; padding: 16px; }
.metric-inner { display: flex; flex-direction: column; gap: 8px; }
.metric-row   { display: flex; align-items: center; gap: 8px; }
.metric-icon  { width: 28px; height: 28px; border-radius: 8px; background: var(--color-teal-50); color: var(--color-teal-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.metric-label { font-size: 12px; font-weight: 600; color: var(--fg-strong); }
.metric-value { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--color-teal-600); }
.metric-sub   { font-size: 11px; color: var(--fg-muted); }

/* Cover mock */
.cover-mock { width: 100%; aspect-ratio: 16/10; background: rgba(255,255,255,0.96); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.cover-mock .dots { display: flex; gap: 5px; }
.cover-mock .dots i { width: 7px; height: 7px; border-radius: 999px; background: var(--color-gray-200); font-style: normal; }
.cover-mock .line { height: 8px; background: var(--color-gray-100); border-radius: 4px; }
.cover-mock .line.short { width: 50%; }
.cover-mock .line.med { width: 75%; }
.cover-mock .accent { height: 10px; width: 30%; background: var(--color-orange-500); border-radius: 4px; }
.cover-mock .row { display: flex; gap: 8px; }
.cover-mock .tile { flex: 1; height: 36px; background: var(--color-gray-100); border-radius: 8px; }

/* Code strip */
.code-strip { background: var(--color-gray-900); color: #C9F4EE; border-radius: var(--radius-lg); padding: 12px 14px; font: 12.5px/1.7 var(--font-mono); }
.code-strip .c-mut { color: #85898E; }
.code-strip .c-or  { color: #FFA052; }
.code-strip .c-tl  { color: #68D8CB; }

/* ============================================================
   11. POSITIONING SECTION (dark)
   ============================================================ */

.pos-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl); padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  --glass-blur: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: background var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
  height: 100%; box-sizing: border-box;
}
.pos-card:hover { background: rgba(255,255,255,0.12); box-shadow: 0 8px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.15); }
.pos-card .icon-wrap { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: rgba(245,134,52,0.18); color: var(--color-orange-300); }
.pos-card h4 { font-size: 16px; font-weight: 600; color: white; margin: 0; line-height: 1.3; }
.pos-card p  { font-size: 14px; color: rgba(255,255,255,0.66); margin: 0; line-height: 1.55; }
.pos-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.pos-cards-grid .hp-reveal { height: 100%; }

/* ============================================================
   12. AUTHORITY GRID
   ============================================================ */

.authority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.authority-grid .hp-reveal { height: 100%; }
.authority-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  height: 100%; box-sizing: border-box;
  transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-spring);
}
.authority-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.authority-item .auth-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--color-orange-50); color: var(--color-orange-600); }
.authority-item h5 { font-size: 16px; font-weight: 600; color: var(--fg-strong); margin: 0; line-height: 1.3; }
.authority-item p  { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.5; }

/* ============================================================
   13. PROCESS FLOW
   ============================================================ */

.process-flow { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.process-flow::before {
  content: ''; position: absolute; top: 27px;
  left: calc(10% + 14px); right: calc(10% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange-200), var(--color-teal-200));
  z-index: 0;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 0 10px; position: relative; z-index: 1; }
.process-step .step-num { width: 54px; height: 54px; border-radius: 999px; background: white; border: 2px solid var(--color-orange-300); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-orange-600); flex-shrink: 0; box-shadow: var(--shadow-sm); }
.process-step h4 { font-size: 15px; font-weight: 600; color: var(--fg-strong); margin: 0; line-height: 1.3; }
.process-step p  { font-size: 13px; color: var(--fg-muted); margin: 0; line-height: 1.5; max-width: 22ch; }

/* ============================================================
   14. MANIFESTO
   ============================================================ */

.manifesto-section { background: #09101A; padding: 120px 0; position: relative; overflow: hidden; }
.manifesto-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.manifesto-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-orange-500); font-weight: 600; margin-bottom: 24px; display: block; }
.manifesto-title { font-family: var(--font-display); font-size: clamp(44px, 7.5vw, 92px); font-weight: 700; line-height: 1.02; letter-spacing: -0.03em; color: white; margin: 0 0 36px; text-wrap: balance; }
.manifesto-title .hl { color: var(--color-orange-500); }
.manifesto-body { font-size: 18px; line-height: 1.72; color: rgba(255,255,255,0.68); max-width: 66ch; margin: 0 0 20px; }
.manifesto-impact { font-size: 19px; line-height: 1.55; font-style: italic; color: rgba(255,255,255,0.88); font-weight: 500; border-left: 3px solid var(--color-orange-500); padding-left: 22px; max-width: 56ch; margin-top: 12px; }

/* ============================================================
   15. TESTIMONIALS
   ============================================================ */

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-2xl); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow var(--duration-normal) var(--ease-out); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card .q-mark { font-family: var(--font-display); font-size: 52px; line-height: 0.5; color: var(--color-orange-200); font-weight: 700; user-select: none; }
.testimonial-card .q-text { font-size: 16px; line-height: 1.65; color: var(--fg); font-style: italic; margin: 0; flex: 1; text-align: justify; }
.testimonial-card .q-author { display: flex; flex-direction: column; gap: 2px; padding-top: 14px; border-top: 1px solid var(--border); }
.testimonial-card .q-author strong { font-size: 14px; font-weight: 600; color: var(--fg-strong); }
.testimonial-card .q-author span   { font-size: 13px; color: var(--fg-muted); }

/* ============================================================
   16. AUDIENCE CARDS
   ============================================================ */

.audience-segments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; }
.audience-segments .hp-reveal { height: 100%; }
.audience-card {
  background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.90);
  border-radius: var(--radius-xl); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  --glass-blur: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
  transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-spring), background var(--duration-normal) var(--ease-out);
  height: 100%; box-sizing: border-box;
}
.audience-card:hover { background: rgba(255,255,255,0.88); box-shadow: 0 8px 32px rgba(0,0,0,0.11), inset 0 1px 0 rgba(255,255,255,1); transform: translateY(-2px); }
.audience-card .icon-wrap { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--color-navy-50); color: var(--color-navy-600); flex-shrink: 0; }
.audience-card h4 { font-size: 16px; font-weight: 600; color: var(--fg-strong); margin: 0 0 6px; line-height: 1.3; }
.audience-card p  { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.55; }

/* ============================================================
   17. OBJECTIONS (glass cards)
   ============================================================ */

.objections-grid { align-items: stretch; }
.objections-grid .hp-reveal { height: 100%; }
.objections-grid .card { height: 100%; box-sizing: border-box; --glass-blur: blur(12px) saturate(1.3); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.90); box-shadow: 0 4px 20px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95); }
.objections-grid .card:hover { background: rgba(255,255,255,0.88); box-shadow: 0 8px 32px rgba(0,0,0,0.11), inset 0 1px 0 rgba(255,255,255,1); }

/* Services section glass */
#servicos .card { --glass-blur: blur(12px) saturate(1.3); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur); background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.90); box-shadow: 0 4px 20px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95); transition: box-shadow var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-spring), background var(--duration-normal) var(--ease-out); }
#servicos .card:hover { background: rgba(255,255,255,0.88); box-shadow: 0 8px 32px rgba(0,0,0,0.11), inset 0 1px 0 rgba(255,255,255,1); transform: translateY(-2px); }

/* ============================================================
   18. CTA FORM SECTION
   ============================================================ */

.cta-form-section { background: var(--gradient-navy); padding: 96px 0; }
.cta-form-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.cta-form-intro h2 { font-size: clamp(28px,4vw,44px); color: white; margin-bottom: 16px; }
.cta-form-intro p  { font-size: 17px; color: rgba(255,255,255,0.74); margin: 0 0 28px; max-width: 48ch; }
.cta-perks { display: flex; flex-direction: column; gap: 12px; }
.perk { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.84); }
.perk svg { color: var(--color-teal-400); flex-shrink: 0; }

/* ============================================================
   19. SCROLL REVEAL
   ============================================================ */

.hp-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.hp-reveal.hp-visible { opacity: 1; transform: none; }
.hp-d60  { transition-delay:  60ms; }
.hp-d70  { transition-delay:  70ms; }
.hp-d80  { transition-delay:  80ms; }
.hp-d90  { transition-delay:  90ms; }
.hp-d100 { transition-delay: 100ms; }
.hp-d110 { transition-delay: 110ms; }
.hp-d140 { transition-delay: 140ms; }
.hp-d160 { transition-delay: 160ms; }
.hp-d180 { transition-delay: 180ms; }
.hp-d200 { transition-delay: 200ms; }
.hp-d210 { transition-delay: 210ms; }
.hp-d240 { transition-delay: 240ms; }
.hp-d270 { transition-delay: 270ms; }
.hp-d360 { transition-delay: 360ms; }
.hp-d450 { transition-delay: 450ms; }

/* ============================================================
   20. RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 48px; }
  .hero-woven     { display: none; }
  .grid-2         { grid-template-columns: 1fr; }
  .kx-two-col     { grid-template-columns: 1fr; gap: 40px; }
  .pos-cards-grid { grid-template-columns: 1fr 1fr; }
  .authority-grid { grid-template-columns: 1fr 1fr; }
  .process-flow   { grid-template-columns: 1fr; gap: 20px; }
  .process-flow::before { display: none; }
  .process-step   { flex-direction: row; text-align: left; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-form-grid  { grid-template-columns: 1fr; }
  .audience-segments { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-bottom  { grid-template-columns: 1fr; }
  .navbar         { height: 88px; }
  .nav-brand .nav-lockup { height: 60px; }
  .nav-links      { display: none; }
  .nav-toggle     { display: inline-flex; }
}

@media (max-width: 640px) {
  .authority-grid { grid-template-columns: 1fr; }
  .pos-cards-grid { grid-template-columns: 1fr; }
  .field-row      { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-links-block,
  .footer-location-block { text-align: center; }
  .footer-links-block ul,
  .footer-location-block ul { align-items: center; }
}
