/* ════════════════════════════════════════════════════════════════
   JCE Inteligência Financeira · Site institucional
   Sistema de design baseado no Dossiê de Marca JCE 2026
   Mobile-first
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Blues primários */
  --ink-deep:  #0F1B2A;
  --blue-ink:  #1E3A57;
  --blue-d:    #2C5077;
  --blue:      #3E6E9E;
  --blue-line: #CFDEEB;
  --blue-soft: #EEF3F8;

  /* Neutros */
  --ink:    #14181E;
  --ink2:   #39414C;
  --muted:  #69727D;
  --faint:  #A7AFB8;
  --hair:   #DCE3EA;
  --line:   #E8ECF1;
  --bg-alt: #F7F9FB;
  --white:  #FFFFFF;

  /* Acento */
  --terra: #9C5746;
  --grao:  #A8843C;
  --verde: #4A7C63;

  --shadow:    0 1px 2px rgba(20,24,30,.04), 0 8px 24px rgba(20,24,30,.07);
  --shadow-lg: 0 24px 60px rgba(20,24,30,.12);
  --shadow-blue: 0 20px 48px rgba(13,71,161,.10), 0 4px 12px rgba(13,71,161,.06);

  --nav-h: 64px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 8px); -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.serif { font-family: 'Playfair Display', Georgia, serif; }
.mono  { font-family: 'IBM Plex Mono', monospace; }

/* ─── Layout helpers ─── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-tight { padding: 40px 0; }
.center { text-align: center; }
/* Revelação é aprimoramento progressivo: só esconde quando o JS está ativo (.js).
   Sem JS, ou se algo falhar, o conteúdo fica visível por padrão. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ─── Eyebrow / labels ─── */
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--blue); }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--blue-line); }
.eyebrow.light::before { background: var(--blue-line); }

.label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--faint); margin-bottom: 10px;
}

/* ─── Headings ─── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
.h-display { font-size: clamp(30px, 7vw, 54px); font-weight: 800; }
h2.title { font-size: clamp(26px, 5.5vw, 40px); font-weight: 800; margin-bottom: 14px; }
h3 { font-size: 20px; font-weight: 700; }
em { font-style: italic; font-weight: 600; color: var(--blue); }
.lead { font-size: clamp(16px, 2.4vw, 19px); color: var(--ink2); max-width: 680px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; z-index: 1000;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line); transition: background .3s, border-color .3s;
}
.nav.on-dark {
  background: transparent; border-bottom-color: rgba(255,255,255,.10);
}
.nav.on-dark.scrolled, .nav.scrolled {
  background: rgba(255,255,255,.92); border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; height: 30px; }
.nav-logo img { height: 26px; width: auto; }
.nav.on-dark:not(.scrolled) .nav-logo .logo-dark { display: none; }
.nav.on-dark:not(.scrolled) .nav-logo .logo-light { display: block; }
.nav-logo .logo-light { display: none; }
.nav:not(.on-dark) .nav-logo .logo-light,
.nav.scrolled .nav-logo .logo-light { display: none; }
.nav:not(.on-dark) .nav-logo .logo-dark,
.nav.scrolled .nav-logo .logo-dark { display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,.78); }
.nav-links a:hover { color: var(--blue); background: var(--blue-soft); }
.nav.on-dark:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.10); }
.nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--blue-ink); color: #fff !important; padding: 9px 18px !important;
  border-radius: 100px; font-weight: 600; margin-left: 8px;
}
.nav-cta:hover { background: var(--blue-d); }
.nav.on-dark:not(.scrolled) .nav-cta { background: #fff; color: var(--blue-ink) !important; }

.nav-burger {
  display: none; width: 42px; height: 42px; border: none; background: transparent;
  cursor: pointer; align-items: center; justify-content: center; border-radius: 8px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; transition: .3s; }
.nav-burger span::before, .nav-burger span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .3s; }
.nav-burger span::before { top: -7px; } .nav-burger span::after { top: 7px; }
.nav.on-dark:not(.scrolled) .nav-burger span,
.nav.on-dark:not(.scrolled) .nav-burger span::before,
.nav.on-dark:not(.scrolled) .nav-burger span::after { background: #fff; }
body.menu-open .nav-burger span { background: transparent; }
body.menu-open .nav-burger span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
body.menu-open .nav-burger span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px;
  padding: 14px 28px; border-radius: 100px; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue-ink); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-d); box-shadow: var(--shadow-lg); }
.btn-light { background: #fff; color: var(--blue-ink); box-shadow: var(--shadow-lg); }
.btn-light:hover { background: var(--blue-soft); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue-line); }
.btn-ghost:hover { background: var(--blue-soft); }
.btn-arrow::after { content: '→'; font-family: 'IBM Plex Mono', monospace; }

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background: linear-gradient(157deg, #0F1B2A 0%, #1E3A57 58%, #2C5077 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 56px);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; top: -180px; right: -160px; width: 560px; height: 560px;
  border-radius: 50%; background: radial-gradient(circle, rgba(62,110,158,.30) 0%, transparent 65%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(33px, 8vw, 60px); font-weight: 800; max-width: 14ch; }
.hero h1 em { color: var(--blue-line); }
.hero-desc { font-size: clamp(16px, 2.6vw, 20px); color: rgba(255,255,255,.72); font-weight: 300; max-width: 540px; margin: 22px 0 32px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 52px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-stat .n { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .l { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 6px; max-width: 150px; line-height: 1.4; }

/* compass mark */
.hero-mark { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); opacity: .06; pointer-events: none; z-index: 1; }
.hero-mark svg { width: 560px; height: 560px; }

/* ════════════════════════════════════════════════════════════════
   CARDS / GRIDS
   ════════════════════════════════════════════════════════════════ */
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: 1fr; }
.g3 { grid-template-columns: 1fr; }
.g4 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  padding: 26px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card.hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.card-soft { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }

/* service card */
.svc { display: flex; gap: 18px; align-items: flex-start; }
.svc-ic {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: var(--blue-soft); border: 1px solid var(--blue-line);
  display: flex; align-items: center; justify-content: center;
}
.svc-ic svg { width: 22px; height: 22px; color: var(--blue); }
.svc-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.svc h3 { font-size: 18px; margin-bottom: 6px; }
.svc p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* callout */
.callout {
  background: var(--blue-soft); border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0; padding: 22px 24px;
}
.callout .cl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.callout p { font-size: 16px; color: var(--ink); line-height: 1.55; }
.callout p b { font-weight: 700; }

/* pills */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; font-size: 13px; font-weight: 600;
  background: var(--blue-soft); border: 1px solid var(--blue-line); color: var(--blue-d);
  border-radius: 100px; padding: 6px 15px;
}
.pill.strong { background: linear-gradient(135deg, var(--blue-ink), var(--blue-d)); color: #fff; border-color: transparent; }

/* ─── values / numbered list ─── */
.val-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.val-row:last-child { border-bottom: none; }
.val-n { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: var(--blue-line); line-height: 1; min-width: 46px; }
.val-b h3 { font-size: 18px; margin-bottom: 3px; }
.val-b p { font-size: 14.5px; color: var(--ink2); line-height: 1.55; }

/* ════════════════════════════════════════════════════════════════
   TEAM
   ════════════════════════════════════════════════════════════════ */
.team { display: grid; gap: 14px; grid-template-columns: 1fr; }
.member { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.member:last-child { border-bottom: none; }
.member-ph {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; object-fit: cover;
  background: linear-gradient(155deg, var(--blue-ink), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 18px; color: #fff;
}
.member-r { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 2px; }
.member-n { font-size: 17px; font-weight: 700; color: var(--ink); font-family: 'Playfair Display', serif; line-height: 1.2; }
.member-b { font-size: 13.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════════
   DARK SECTION / BANNERS
   ════════════════════════════════════════════════════════════════ */
.dark { background: var(--ink-deep); color: #fff; position: relative; overflow: hidden; }
.dark::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 56px);
  pointer-events: none;
}
.dark .wrap { position: relative; z-index: 2; }
.dark h2, .dark h3 { color: #fff; }
.dark .lead { color: rgba(255,255,255,.74); }
.dark .eyebrow { color: var(--blue-line); }
.dark .eyebrow::before { background: var(--blue-line); }

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(160deg, #0D2A52 0%, #1E3A57 55%, #2C5077 100%);
  border-radius: 22px; padding: 44px 32px; color: #fff; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,110,158,.35) 0%, transparent 62%); pointer-events: none;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   PRUMAI specifics
   ════════════════════════════════════════════════════════════════ */
.prumo-mark { display: inline-flex; flex-direction: column; align-items: center; }
.prumo-mark .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px rgba(62,110,158,.5); }
.prumo-mark .line { width: 3px; height: 64px; background: linear-gradient(180deg, var(--blue), var(--blue-d)); border-radius: 2px; margin: 2px 0; }
.prumo-mark .diamond { width: 18px; height: 18px; background: linear-gradient(135deg, var(--blue), var(--blue-d)); transform: rotate(45deg); border-radius: 4px; box-shadow: 0 8px 18px rgba(13,71,161,.35); }

.wordmark { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: 6px; }
.wordmark .ai { color: var(--blue); }
.dark .wordmark .ai { color: var(--cyan, #6FB7E8); }

/* pain quotes */
.pain { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; padding: 18px 22px; box-shadow: var(--shadow); }
.pain .qt { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.pain p { font-size: 17px; font-style: italic; color: var(--ink); line-height: 1.4; }

/* meaning cards PRUM + AI */
.meaning { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: stretch; }
.mn { background: var(--white); border: 1px solid var(--blue-line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-blue); }
.mn-key { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 30px; letter-spacing: 1px; color: var(--ink); line-height: 1; }
.mn.k2 .mn-key { color: var(--blue); }
.mn-sub { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin: 6px 0 10px; }
.mn-tx { font-size: 15px; color: var(--ink2); line-height: 1.5; }
.mn-tx b { color: var(--ink); }

/* flow steps */
.flow { display: grid; gap: 14px; grid-template-columns: 1fr; }
.fstep { background: var(--white); border: 1px solid var(--blue-line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-blue); }
.fstep.out { background: linear-gradient(160deg, #0D47A1, #062A60); border: none; color: #fff; }
.fstep .ftag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.fstep.out .ftag { color: #6FB7E8; }
.fstep h3 { font-size: 18px; margin-bottom: 6px; }
.fstep.out h3 { color: #fff; }
.fstep p { font-size: 14.5px; color: var(--ink2); line-height: 1.5; }
.fstep.out p { color: rgba(255,255,255,.85); }

/* dashboard mockup */
.mock { background: var(--bg-alt); border: 1px solid var(--blue-line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.mock-bar { background: #EEF2F8; border-bottom: 1px solid var(--line); padding: 10px 16px; display: flex; align-items: center; gap: 7px; }
.mock-bar i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.mock-bar .r { background: #FF5F57; } .mock-bar .a { background: #FEBC2E; } .mock-bar .g { background: #28C840; }
.mock-url { flex: 1; background: rgba(62,110,158,.08); border-radius: 5px; padding: 5px 12px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); margin-left: 6px; }
.mock-body { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.kpi { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); border-radius: 8px; padding: 12px; }
.kpi.red { border-top-color: #EF4444; } .kpi.green { border-top-color: #22C55E; } .kpi.amber { border-top-color: #F59E0B; }
.kpi .k { font-size: 11px; color: var(--muted); font-weight: 600; }
.kpi .v { font-size: 19px; font-weight: 800; color: var(--ink); line-height: 1.1; margin-top: 2px; }
.kpi.red .v { color: #B91C1C; } .kpi.green .v { color: #166534; } .kpi.amber .v { color: #92400E; }
.mchart { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.mchart .ct { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 70px; }
.bars i { flex: 1; border-radius: 3px 3px 0 0; display: block; }

/* timeline */
.timeline { position: relative; padding-left: 8px; }
.timeline::before { content: ''; position: absolute; left: 19px; top: 18px; bottom: 18px; width: 2px; background: var(--blue-line); }
.tl { display: flex; gap: 20px; padding: 14px 0; align-items: flex-start; position: relative; }
.tl-n { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-family: 'Playfair Display', serif; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
.tl.last .tl-n { background: linear-gradient(135deg, var(--blue-ink), var(--blue)); box-shadow: 0 0 0 5px rgba(62,110,158,.18); }
.tl-day { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 2px; }
.tl h3 { font-size: 17px; margin-bottom: 2px; }
.tl p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* diag two columns */
.diag-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.diag-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink2); line-height: 1.45; }
.diag-list li:last-child { border-bottom: none; }
.diag-list li::before { content: '→'; color: var(--blue); font-family: 'IBM Plex Mono', monospace; flex-shrink: 0; }

/* feature list */
.feat { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feat li { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; color: var(--ink2); }
.feat li::before { content: '→'; color: var(--blue); font-family: 'IBM Plex Mono', monospace; flex-shrink: 0; }
.feat li b { color: var(--ink); font-weight: 600; }

/* ════════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════════ */
.contact-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); transition: border-color .2s, transform .2s, box-shadow .2s; }
.contact-card:hover { border-color: var(--blue-line); transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-ic svg { width: 21px; height: 21px; color: var(--blue); }
.contact-card .k { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.contact-card .v { font-size: 16px; font-weight: 600; color: var(--ink); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.6); padding: 36px 0; }
.footer-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px 32px; flex-wrap: wrap; }
.footer-logo { height: 48px; width: auto; flex-shrink: 0; }
.footer-meta { display: flex; flex-direction: column; gap: 5px; text-align: right; font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: .5px; color: rgba(255,255,255,.34); line-height: 1.5; }
@media (max-width: 620px) {
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

/* ─── mobile menu ─── */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
  z-index: 999; padding: 24px 20px; transform: translateX(100%); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 4px;
}
body.menu-open .mobile-menu { transform: none; }
.mobile-menu a { font-size: 19px; font-weight: 600; color: var(--ink); padding: 16px 8px; border-bottom: 1px solid var(--line); font-family: 'Playfair Display', serif; }
.mobile-menu a.active { color: var(--blue); }
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet & desktop
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 720px) {
  .section { padding: 80px 0; }
  .wrap { padding: 0 32px; }
  .g2 { grid-template-columns: 1fr 1fr; }
  .g3 { grid-template-columns: 1fr 1fr 1fr; }
  .g4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .grid { gap: 22px; }
  .meaning { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr 1fr; }
  .team { grid-template-columns: 1fr 1fr; gap: 8px 40px; }
  .cta-band { padding: 60px 56px; }
  .hero-stats { gap: 48px; }
}

@media (min-width: 980px) {
  .nav-burger { display: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 861px) {
  .mobile-menu { display: none; }
}

/* split layouts */
.split { display: grid; gap: 36px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1.05fr .95fr; gap: 56px; } .split.rev > :first-child { order: 2; } }

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .stream-row, .rot-track { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════════
   LANDING — componentes adicionais (single-page premium)
   ════════════════════════════════════════════════════════════════ */

/* nav: estado ativo por âncora */
.nav-links a.current { color: var(--blue); }
.nav.on-dark:not(.scrolled) .nav-links a.current { color: #fff; }

/* badge superior do hero */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  color: rgba(255,255,255,.86); background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
  padding: 7px 16px; backdrop-filter: blur(6px);
}
.badge .pt { width: 7px; height: 7px; border-radius: 50%; background: #6FB7E8; box-shadow: 0 0 10px rgba(111,183,232,.9); }

/* mini-indicadores do hero (chips de confiança) */
.minik { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.minik span {
  font-size: 12px; font-weight: 600; letter-spacing: .3px; color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; padding: 7px 13px;
}

/* hero landing: duas colunas */
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 940px) { .hero-grid { grid-template-columns: 1.04fr .96fr; gap: 56px; } }
.hero.landing { min-height: auto; align-items: center; }

/* mock — brilho atrás no hero */
.mock-wrap { position: relative; }
.mock-wrap::before {
  content: ''; position: absolute; inset: -8% -6% -10% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 60% 35%, rgba(111,183,232,.28) 0%, transparent 70%);
  filter: blur(8px); pointer-events: none;
}
.mock-wrap .mock { position: relative; z-index: 1; }

/* logo PRUMAI em CSS (transparente, sem fundo) */
.prumai-logo {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 0;
}
.prumai-symbol { display: flex; flex-direction: column; align-items: center; }
.prumai-symbol .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #4FC3F7;
  box-shadow: 0 0 14px rgba(79,195,247,.9), 0 0 36px rgba(79,195,247,.4);
  margin-bottom: 2px;
}
.prumai-symbol .line {
  width: 2px; height: 54px;
  background: linear-gradient(180deg, #4FC3F7 0%, #0277BD 100%);
  border-radius: 1px;
}
.prumai-symbol .diamond {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, #4FC3F7, #1565C0);
  transform: rotate(45deg); border-radius: 3px;
  box-shadow: 0 0 18px rgba(79,195,247,.6), 0 0 38px rgba(79,195,247,.22);
  margin-top: 2px;
}
.prumai-wordmark { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 26px; }
.wm-text {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(34px, 5vw, 50px); letter-spacing: .22em;
  color: #F0F4F8; text-indent: .22em; line-height: 1;
}
.wm-text .ai { color: #4FC3F7; text-shadow: 0 0 18px rgba(79,195,247,.5); }
.wm-tagline {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: .42em; color: rgba(79,195,247,.75);
  text-transform: uppercase; text-indent: .42em;
}
.prumai-byjce {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(240,244,248,.35); margin-top: 22px;
}

/* card navegável da plataforma (iframe) */
.prumai-frame {
  margin-top: 52px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 14px;
  overflow: hidden;
  background: #07090F;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.pf-chrome {
  display: flex; align-items: center; gap: 14px;
  height: 44px; padding: 0 16px;
  background: #0F1726;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pf-dots { display: flex; gap: 7px; flex-shrink: 0; }
.pf-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.pf-dots i:nth-child(1){ background: #FF5F57; }
.pf-dots i:nth-child(2){ background: #FEBC2E; }
.pf-dots i:nth-child(3){ background: #28C840; }
.pf-url {
  flex: 1; text-align: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: .5px;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border-radius: 6px; padding: 5px 12px;
  max-width: 320px; margin: 0 auto;
}
.pf-live {
  flex-shrink: 0;
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(111,183,232,.75); white-space: nowrap;
}
.pf-iframe {
  display: block; width: 100%; height: 700px; border: 0;
  background: #07090F; transform-origin: top left;
}
@media (max-width: 640px) {
  .pf-iframe { height: 540px; }
  .pf-url { max-width: 150px; }
  .pf-live { display: none; }
}
.mock-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* mini donut / status no mock */
.mstat { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.mstat .ct { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 10px; }
.mline { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 11.5px; color: var(--ink2); }
.mline:last-child { margin-bottom: 0; }
.mline .dotc { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mline .bar { flex: 1; height: 6px; background: var(--blue-soft); border-radius: 4px; overflow: hidden; }
.mline .bar i { display: block; height: 100%; border-radius: 4px; }

/* ─── card de dor (grid 6) ─── */
.pain-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s; }
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.pain-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pain-ic svg { width: 21px; height: 21px; color: var(--blue); }
.pain-card h3 { font-size: 17px; margin-bottom: 8px; }
.pain-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.pain-card p b { color: var(--ink); font-weight: 600; }

/* ─── antes / depois ─── */
.vs { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .vs { grid-template-columns: 1fr auto 1fr; align-items: stretch; } }
.vs-col { border-radius: 18px; padding: 28px; }
.vs-before { background: var(--bg-alt); border: 1px dashed var(--hair); }
.vs-after { background: linear-gradient(165deg, #0D2A52, #1E3A57 70%, #2C5077); color: #fff; border: none; box-shadow: var(--shadow-blue); }
.vs-h { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.vs-before .vs-h { color: var(--faint); }
.vs-after .vs-h { color: #6FB7E8; }
.vs-li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: 15px; line-height: 1.45; border-bottom: 1px solid var(--line); }
.vs-before .vs-li { color: var(--muted); border-bottom-color: var(--hair); }
.vs-after .vs-li { color: rgba(255,255,255,.9); border-bottom-color: rgba(255,255,255,.12); }
.vs-li:last-child { border-bottom: none; }
.vs-li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.vs-before .vs-li svg { color: var(--faint); }
.vs-after .vs-li svg { color: #6FB7E8; }
.vs-arrow { display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 22px; font-family: 'IBM Plex Mono', monospace; }
@media (max-width: 759px) { .vs-arrow { transform: rotate(90deg); padding: 4px 0; } }

/* ─── pilares PRUMAI ─── */
.pillars { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar { background: var(--white); border: 1px solid var(--blue-line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow-blue); transition: transform .2s, box-shadow .2s; }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pillar-n { font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: 1px; margin-bottom: 12px; }
.pillar h3 { font-size: 17px; margin-bottom: 7px; }
.pillar p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.prumai-hub { text-align: center; max-width: 560px; margin: 0 auto 36px; }
.prumai-hub .wm { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: 10px; font-size: clamp(30px,7vw,46px); text-indent: 10px; }
.prumai-hub .wm .ai { color: var(--blue); }
.dark .prumai-hub .wm .ai { color: #6FB7E8; }

/* ─── módulos / indicadores ─── */
.mod { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s; }
.mod:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.mod-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.mod-ic { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; }
.mod-ic svg { width: 20px; height: 20px; color: var(--blue); }
.mod-head h3 { font-size: 16.5px; line-height: 1.2; }
.mod-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mod-tags span { font-size: 12px; font-weight: 500; color: var(--blue-d); background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: 7px; padding: 4px 10px; }

/* módulos: 1 coluna em telas muito estreitas (cards densos em tags) */
@media (max-width: 559px) { #modulos .grid { grid-template-columns: 1fr; } }

/* ─── soluções (cards grandes) ─── */
.sol { display: flex; flex-direction: column; height: 100%; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s; }
.sol:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.sol.feat-sol { background: linear-gradient(168deg, #0F1B2A, #1E3A57 75%, #2C5077); color: #fff; border: none; }
.sol-ic { width: 48px; height: 48px; border-radius: 13px; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.sol-ic svg { width: 23px; height: 23px; color: var(--blue); }
.sol.feat-sol .sol-ic { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.sol.feat-sol .sol-ic svg { color: #6FB7E8; }
.sol-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.sol.feat-sol .sol-cat { color: #6FB7E8; }
.sol h3 { font-size: 19px; margin-bottom: 9px; }
.sol.feat-sol h3 { color: #fff; }
.sol p { font-size: 14.5px; color: var(--muted); line-height: 1.55; flex: 1; }
.sol.feat-sol p { color: rgba(255,255,255,.82); }
.sol-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--blue); }
.sol-link::after { content: '→'; font-family: 'IBM Plex Mono', monospace; transition: transform .2s; }
.sol:hover .sol-link::after { transform: translateX(4px); }
.sol.feat-sol .sol-link { color: #6FB7E8; }

/* ─── para quem é (chips com check) ─── */
.forwho { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .forwho { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .forwho { grid-template-columns: 1fr 1fr; } }
.fw { display: flex; gap: 13px; align-items: center; padding: 15px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; transition: border-color .2s, transform .2s; }
.fw:hover { border-color: var(--blue-line); transform: translateX(3px); }
.fw-check { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); border: 1px solid var(--blue-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fw-check svg { width: 14px; height: 14px; color: var(--blue); }
.fw p { font-size: 14.5px; color: var(--ink2); line-height: 1.4; }

/* ─── por que JCE (grid 6 blocos) ─── */
.why { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .why { grid-template-columns: 1fr 1fr 1fr; } }
.why-card { padding: 24px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.why-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: #6FB7E8; line-height: 1; margin-bottom: 12px; }
.why-card h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.55; }

/* faixa de impacto */
.impact-band { text-align: center; max-width: 880px; margin: 40px auto 0; padding: 28px 24px; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.impact-band p { font-family: 'Playfair Display', serif; font-size: clamp(20px, 3.4vw, 28px); font-weight: 700; font-style: italic; color: #fff; line-height: 1.35; }
.impact-band p .hl { color: #6FB7E8; font-style: normal; }

/* diagnóstico — destaque */
.diag-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 880px) { .diag-grid { grid-template-columns: 1fr 1fr; } }
.diag-eval { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.diag-eval span { font-size: 13px; font-weight: 500; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; padding: 7px 13px; }

/* form embutido na landing */
.field { display: block; margin-bottom: 14px; }
.field > span { font-size: 12px; font-weight: 600; color: var(--ink2); display: block; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(62,110,158,.14); }
.field textarea { resize: vertical; }
.field-row { display: grid; gap: 0 14px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-ok { display: none; padding: 16px; border-radius: 12px; background: rgba(74,124,99,.1); border: 1px solid rgba(74,124,99,.3); color: var(--verde); font-size: 14.5px; font-weight: 600; text-align: center; margin-top: 14px; }
.form-ok.show { display: block; }

/* botão de foco acessível global */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--blue); outline-offset: 2px;
}

/* skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000; background: var(--blue-ink); color: #fff;
  padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ════════════════════════════════════════════════════════════════
   HERO CINÉTICO — campo de textos em movimento + palavra rotativa
   ════════════════════════════════════════════════════════════════ */
.hero.kinetic { min-height: 100vh; align-items: center; }
/* vídeo de fundo do hero (campo / agro) — aparece só quando o arquivo existe */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.hero.has-video .hero-video { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity .8s ease;
  background: linear-gradient(157deg, rgba(7,17,31,.82) 0%, rgba(15,27,42,.64) 55%, rgba(30,58,87,.5) 100%);
}
.hero.has-video .hero-veil { opacity: 1; }
.hero-stream {
  position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 36px) 0 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.stream-row { display: flex; width: max-content; white-space: nowrap; will-change: transform; }
.stream-row span {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 800;
  font-size: clamp(32px, 7.5vw, 88px); line-height: 1.05; padding-right: .35em;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.11); letter-spacing: .005em;
}
.stream-row.solid span { color: rgba(255,255,255,.045); -webkit-text-stroke: 0; }
@keyframes streamL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes streamR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.stream-row.a { animation: streamL 42s linear infinite; }
.stream-row.b { animation: streamR 52s linear infinite; }
.stream-row.c { animation: streamL 62s linear infinite; }
.hero.kinetic .wrap { position: relative; z-index: 3; }

/* palavra rotativa — alinhada à linha "Clareza sobre" */
.rot-line { line-height: 1.15em; }
.rot { display: inline-block; height: 1.15em; line-height: 1.15em; overflow: hidden; vertical-align: top; }
.rot-track { display: flex; flex-direction: column; animation: rotwords 13s infinite; }
.rot-track b { height: 1.15em; line-height: 1.15em; color: var(--blue-line); font-weight: 800; white-space: nowrap; }
@keyframes rotwords {
  0%,15%   { transform: translateY(0); }
  20%,35%  { transform: translateY(-1.15em); }
  40%,55%  { transform: translateY(-2.30em); }
  60%,75%  { transform: translateY(-3.45em); }
  80%,95%  { transform: translateY(-4.60em); }
  100%     { transform: translateY(-5.75em); }
}

/* logo do nav/rodapé em PNG (proporção horizontal) */
.nav-logo img { height: 30px; width: auto; }

/* liderança em destaque (estilo apresentação) */
.leaders { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .leaders { grid-template-columns: 1fr 1fr; } }
.leader { display: flex; gap: 18px; align-items: center; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
.leader img { width: 86px; height: 86px; border-radius: 16px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow); }
.leader .lr { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.leader .ln { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.leader .lb { font-size: 13.5px; color: var(--muted); margin-top: 5px; line-height: 1.45; }

/* ════════════════════════════════════════════════════════════════
   PROJETOS — cases representativos + ecossistema de parceiros
   ════════════════════════════════════════════════════════════════ */
.cases { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cases { grid-template-columns: 1fr 1fr; } }
.case { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s, border-color .2s; }
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.case-seg { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-d); background: var(--blue-soft); border: 1px solid var(--blue-line); border-radius: 100px; padding: 5px 13px; margin-bottom: 14px; }
.case h3 { font-size: 19px; margin-bottom: 14px; }
.case-row { padding: 10px 0; border-top: 1px solid var(--line); }
.case-row .ck { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.case-row .cv { font-size: 14.5px; color: var(--ink2); line-height: 1.5; }
.case-row .cv b { color: var(--ink); font-weight: 600; }

.eco { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 18px; }
@media (min-width: 560px) { .eco { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .eco { grid-template-columns: repeat(4, 1fr); } }
.eco-card { padding: 22px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); }
.eco-card .en { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.eco-card .er { font-size: 13.5px; color: rgba(255,255,255,.7); line-height: 1.5; }
.eco-card .et { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: #6FB7E8; margin-bottom: 10px; }

/* logo PRUMAI na seção da plataforma */
.prumai-logo-img { max-width: 230px; margin: 0 auto 8px; border-radius: 14px; box-shadow: var(--shadow-lg); }

/* PRUMO de fundo (canvas) na seção PRUMAI */
.prumo-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .6; }
#prumai .wrap { position: relative; z-index: 2; }
.prumai-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  z-index: 0; opacity: .30;
  pointer-events: none;
}
.prumo-stage { position: relative; width: 100%; max-width: 280px; height: 340px; margin: 0 auto; }
.prumo-canvas { display: block; width: 100%; height: 100%; }
.prumai-wm { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: 10px; font-size: clamp(28px, 6vw, 42px); color: #fff; text-indent: 10px; text-align: center; margin-top: 2px; }
.prumai-wm .ai { color: #6FB7E8; }
.prumai-wm-sub { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: #6FB7E8; text-align: center; margin-top: 9px; }

/* PRUMAI — título wordmark (estilo logo) */
.prumai-title { font-family: 'Inter', sans-serif; font-weight: 800; letter-spacing: 8px; font-size: clamp(40px, 9vw, 76px); line-height: 1; color: #fff; text-indent: 8px; }
.prumai-title .ai { color: #6FB7E8; }

/* PRUMAI — tela real da plataforma */
.prumai-shot img { display: block; width: 100%; height: auto; }
.split > * { min-width: 0; }
.app-frame { position: relative; width: 100%; min-width: 0; overflow: hidden; border-radius: 16px; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 30px 70px rgba(7,17,31,.5); background: #fff; }
.app-frame iframe { border: 0; display: block; transform-origin: top left; }

/* PRUMAI — app que se opera sozinho (mock animado) */
.mock.app { position: relative; }
.app-tabs { display: flex; gap: 2px; padding: 9px 12px 0; border-bottom: 1px solid var(--line); background: rgba(62,110,158,.04); }
.app-tab { font-size: 11px; font-weight: 600; color: var(--muted); padding: 8px 13px; border-radius: 8px 8px 0 0; white-space: nowrap; transition: color .3s, background .3s, box-shadow .3s; }
.app-tab.active { color: var(--blue); background: #fff; box-shadow: inset 0 -2px 0 var(--blue); }
.app-screens { position: relative; height: 326px; padding: 16px; }
.app-screen { position: absolute; inset: 16px; opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.app-screen.active { opacity: 1; transform: none; }
.app-scr-title { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
/* lista (aging) */
.app-list { display: flex; flex-direction: column; gap: 8px; }
.app-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px; font-size: 11.5px; opacity: 0; transform: translateX(-8px); }
.app-screen.active .app-row { animation: appRowIn .45s ease forwards; }
.app-screen.active .app-row:nth-child(2) { animation-delay: .08s; }
.app-screen.active .app-row:nth-child(3) { animation-delay: .16s; }
.app-screen.active .app-row:nth-child(4) { animation-delay: .24s; }
.app-screen.active .app-row:nth-child(5) { animation-delay: .32s; }
@keyframes appRowIn { to { opacity: 1; transform: none; } }
.app-row .nm { flex: 1; color: var(--ink2); font-weight: 600; }
.app-row .vl { color: var(--ink); font-weight: 700; }
.app-badge { font-size: 9.5px; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.app-badge.g { background: rgba(34,197,94,.14); color: #166534; }
.app-badge.a { background: rgba(245,158,11,.16); color: #92400E; }
.app-badge.r { background: rgba(239,68,68,.14); color: #B91C1C; }
/* DRE drill-down */
.app-dre { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.app-dl { display: flex; justify-content: space-between; padding: 9px 13px; font-size: 11.5px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.app-dl:first-child { border-top: none; }
.app-dl .v { font-weight: 700; }
.app-dl.sub { padding-left: 28px; background: rgba(62,110,158,.05); color: var(--muted); font-weight: 500; opacity: 0; }
.app-screen.active .app-dl.sub { animation: appRowIn .4s ease forwards; }
.app-screen.active .app-dl.sub:nth-of-type(3) { animation-delay: .12s; }
.app-screen.active .app-dl.sub:nth-of-type(4) { animation-delay: .22s; }
.app-dl.tot { background: rgba(62,110,158,.10); color: var(--blue-ink); font-weight: 800; }
/* cursor que opera */
.app-cursor { position: absolute; top: 0; left: 0; z-index: 6; width: 18px; height: 18px; pointer-events: none; transition: left .7s cubic-bezier(.45,0,.2,1), top .7s cubic-bezier(.45,0,.2,1); filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); }
.app-cursor svg { width: 100%; height: 100%; display: block; }
.app-cursor::after { content: ''; position: absolute; left: -7px; top: -7px; width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(111,183,232,.9); opacity: 0; transform: scale(.4); }
.app-cursor.click::after { animation: appTap .4s ease; }
@keyframes appTap { 0% { opacity: .9; transform: scale(.4); } 100% { opacity: 0; transform: scale(1.2); } }
@media (prefers-reduced-motion: reduce) {
  .app-screen, .app-cursor { transition: none; }
  .app-screen.active .app-row, .app-screen.active .app-dl.sub { animation: none; opacity: 1; transform: none; }
}

/* PRUMAI — processo dos 5 movimentos */
.flow5 { display: grid; gap: 30px 0; grid-template-columns: 1fr; }
@media (min-width: 880px) { .flow5 { grid-template-columns: repeat(5, 1fr); } }
.flow5-step { position: relative; padding-right: 16px; }
@media (min-width: 880px) {
  .flow5-step::after { content: ''; position: absolute; z-index: 0; top: 23px; left: 23px; width: 100%; height: 2px; background: rgba(111,183,232,.28); }
  .flow5-step:last-child::after { display: none; }
}
.flow5-n { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #6FB7E8, #1E5A8A); color: #fff; font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: 0 0 0 6px rgba(111,183,232,.10); }
.flow5-step h4 { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 7px; }
.flow5-step p { color: rgba(255,255,255,.68); font-size: 13.5px; line-height: 1.5; }

/* faixa flutuante de WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 900;
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px;
  background: #1E3A57; color: #fff; border-radius: 100px; font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg); transition: transform .2s, background .2s;
}
.wa-float:hover { transform: translateY(-2px); background: #2C5077; }
.wa-float svg { width: 19px; height: 19px; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* ════════════════════════════════════════════════════════════════
   TIME — cards no estilo da Apresentação Técnica (foto + CV)
   ════════════════════════════════════════════════════════════════ */
.tlineup { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) {
  .tlineup.lead2 { grid-template-columns: 1fr 1fr; }
  .tlineup.team3 { grid-template-columns: repeat(3, 1fr); }
}
.tmember {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 26px 26px 30px; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tmember:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-line); }
.tm-head { display: flex; flex-direction: row; gap: 18px; align-items: center; margin-bottom: 18px; }
.tm-photo {
  width: 134px; height: 168px; flex-shrink: 0; border-radius: 14px; overflow: hidden;
  background: var(--blue-soft); border: 1px solid var(--blue-line);
  box-shadow: 0 14px 30px rgba(13,71,161,.16);
}
.tm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.tm-id { text-align: left; min-width: 0; }
.tm-role { font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; line-height: 1.4; }
.tm-id h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 24px; line-height: 1.12; margin: 0; letter-spacing: 0; color: var(--ink); }
.tm-tag { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400; font-style: italic; color: var(--ink2); margin-top: 7px; line-height: 1.4; text-transform: none; letter-spacing: 0; }
@media (max-width: 480px) { .tm-head { flex-direction: column; align-items: flex-start; } }
.tm-cv { list-style: none; display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 2px; }
.tm-cv li { position: relative; padding-left: 19px; font-size: 14px; color: var(--ink2); line-height: 1.45; }
.tm-cv li::before { content: '◆'; position: absolute; left: 0; top: 3px; color: var(--blue); font-size: 9px; }

/* ════════════════════════════════════════════════════════════════
   MURAL DE MARCAS — cards com logo (estilo Apresentação Institucional)
   ════════════════════════════════════════════════════════════════ */
.brandwall { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 1000px; margin: 0 auto; }
.brand {
  flex: 0 0 auto; width: 182px; min-height: 78px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 12px 16px; box-shadow: 0 12px 28px rgba(7,17,31,.28);
  transition: transform .2s, box-shadow .2s;
}
.brand:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(7,17,31,.4); }
.brand img { max-height: 44px; max-width: 86%; object-fit: contain; display: block; }
.brand img[alt="Stemac"], .brand img[alt="SM Tratores"] { max-height: 54px; max-width: 92%; }
.brand img.ok ~ span { display: none; }
.brand span { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--ink2); line-height: 1.18; }
@media (max-width: 600px) { .brand { width: 45%; min-height: 66px; } .brand img { max-height: 36px; } }

/* ════════════════════════════════════════════════════════════════
   CARROSSEL DO TIME — navegação por setas
   ════════════════════════════════════════════════════════════════ */
.team-carousel {
  position: relative; overflow-x: auto; overflow-y: hidden; margin-top: 0;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.team-carousel::-webkit-scrollbar { display: none; }
.team-track { display: flex; gap: 20px; width: max-content; }
.team-track .tmember { flex: 0 0 min(340px, 86vw); scroll-snap-align: start; }

/* header com eyebrow + setas */
.team-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.team-nav-header .eyebrow { margin-bottom: 0; }
.team-nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-nav-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink2);
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;
  padding: 0;
}
.team-nav-btn svg { width: 16px; height: 16px; }
.team-nav-btn:hover {
  background: var(--blue-soft);
  border-color: var(--blue-line);
  color: var(--blue-d);
}
.team-nav-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }
.team-nav-counter {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  min-width: 30px;
  text-align: center;
  user-select: none;
}

/* ── Quem somos: texto em cima, equipe (grade) embaixo ── */
.qs-split { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: start; }
.qs-text, .qs-team { min-width: 0; }
.qs-text { max-width: none; }
.qs-text h2, .qs-text p { text-align: justify; hyphens: auto; }
.qs-text h2 { font-size: clamp(14px, 1.8vw, 16px) !important; }
.qs-text p.lead { font-size: clamp(14px, 1.8vw, 16px); }
.qs-team .eyebrow { margin-bottom: 18px; }

/* grade de mini-cards do time */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .team-grid { grid-template-columns: 1fr; } }

.tm-mini {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  background: var(--white);
  border: 1px solid rgba(62,110,158,.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-shadow: 0 1px 2px rgba(20,24,30,.04), 0 12px 30px rgba(20,24,30,.06);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s, border-color .25s;
}
/* feixe azul na base do card */
.tm-mini::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; z-index: 3;
  background: linear-gradient(90deg, #6FB7E8 0%, var(--blue-d) 100%);
  opacity: .85;
  transition: opacity .25s, height .25s;
}
.tm-mini:hover::before { height: 5px; opacity: 1; }
.tm-mini:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 6px rgba(20,24,30,.05), 0 24px 54px rgba(62,110,158,.18);
  border-color: rgba(111,183,232,.45);
}
/* foto com badge sobreposto */
.tm-mini-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blue-soft);
  display: block;
}
.tm-mini-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.tm-mini:hover .tm-mini-photo img { transform: scale(1.05); }
.tm-mini-photo::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 46%;
  background: linear-gradient(to top, rgba(13,25,42,.62), rgba(13,25,42,.12) 55%, transparent);
  pointer-events: none;
}
.tm-mini .tm-cat {
  position: absolute;
  left: 14px; bottom: 14px;
  margin: 0;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0,0,0,.22);
}
/* corpo */
.tm-mini-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 0;
}
.tm-mini-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
}
.tm-mini-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 18px;
}
/* rodapé "Ver currículo" sempre visível */
.tm-mini-more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 15px 0 17px;
  border-top: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--blue);
  transition: color .25s;
}
.tm-mini-more svg { width: 14px; height: 14px; transition: transform .25s; }
.tm-mini:hover .tm-mini-more { color: var(--blue-d); }
.tm-mini:hover .tm-mini-more svg { transform: translateX(4px); }

/* modal de currículo */
.team-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.team-modal[hidden] { display: none; }
.team-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,25,42,.55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  animation: modalFade .25s ease;
}
.team-modal-card {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 22px;
  max-width: 600px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 38px;
  box-shadow: 0 40px 100px rgba(13,25,42,.4);
  animation: modalPop .3s cubic-bezier(.22,.68,0,1.2);
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.team-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink2);
  transition: background .2s, color .2s, border-color .2s;
}
.team-modal-close:hover { background: var(--blue-soft); color: var(--blue-d); border-color: var(--blue-line); }
.team-modal-close svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) {
  .team-modal-backdrop, .team-modal-card { animation: none; }
}


/* propósito em destaque (Quem somos) */
.qs-highlight { border-top: 1px solid var(--line); margin-top: 32px; padding-top: 24px; }
.qs-highlight p { font-family: 'Playfair Display', Georgia, serif; font-weight: 800; font-size: clamp(22px, 3.8vw, 32px); line-height: 1.2; color: var(--ink); letter-spacing: -.01em; }
.qs-highlight em { color: var(--blue); font-style: italic; }

/* ── acabamento dos cards do time ── */
.tmember { position: relative; overflow: hidden; }
.tmember::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--blue-d), #6FB7E8); border-radius: 18px 0 0 18px; opacity: .7; transition: opacity .25s; }
.tmember:hover::before { opacity: 1; }
.tmember .tm-head, .tmember .tm-cv { position: relative; z-index: 1; }
.tm-photo { box-shadow: 0 4px 14px rgba(20,24,30,.1), 0 0 0 1px var(--blue-line); }

/* badge Liderança / Equipe (acima do cargo) */
.tm-cat { display: inline-flex; align-items: center; gap: 6px; font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 11px; border-radius: 100px; margin-bottom: 10px; }
.tm-cat::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.tm-cat.lead { color: #fff; background: linear-gradient(135deg, var(--blue-ink), var(--blue-d)); }
.tm-cat.team { color: var(--blue-d); background: var(--blue-soft); border: 1px solid var(--blue-line); }

/* ── Trajetória: fundo tela PRUMAI ── */
.fazemos-bg {
  position: relative;
  background: url('../img/bg-trajetoria.jpg') center center / cover no-repeat;
  isolation: isolate;
}
.fazemos-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: rgba(6,12,24,.72);
}
.fazemos-bg .wrap { position: relative; z-index: 1; }
.fazemos-bg .eyebrow { color: #6FB7E8; }

/* ── O que fazemos: fundo branco com tickers absolutos ── */
.svc-section {
  padding: 80px 0 92px;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  isolation: isolate;
}
/* faixas de texto ao fundo */
.svc-tickers {
  position: absolute;
  top: 64px; left: 0; right: 0; bottom: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
  pointer-events: none;
}
.tk-row {
  display: flex;
  overflow: hidden;
}
.tk-inner {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.tk-fwd .tk-inner { animation: tkFwd 50s linear infinite; }
.tk-rev .tk-inner { animation: tkRev 44s linear infinite; }
@keyframes tkFwd { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes tkRev { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .tk-fwd .tk-inner, .tk-rev .tk-inner { animation: none; }
}
.tk-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(62,110,158,.18);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
}
.tk-item::after {
  content: '·';
  margin-left: 32px;
  color: rgba(62,110,158,.08);
}
.svc-content {
  position: relative;
  z-index: 1;
}
.svc-intro {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.72;
  margin-top: 14px;
}

/* cards serviços */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 760px) { .svc-grid { grid-template-columns: 1fr; } }
@property --led-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}
.svc-card {
  position: relative;
  background: linear-gradient(160deg, rgba(30,58,87,.9) 0%, rgba(20,40,61,.9) 100%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(111,183,232,.22);
  border-radius: 20px;
  padding: 26px 32px 24px;
  box-shadow: 0 4px 14px rgba(20,40,61,.16), 0 18px 48px rgba(20,40,61,.2),
              0 0 22px rgba(111,183,232,.14), inset 0 0 24px rgba(111,183,232,.05);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s, background .25s;
}
/* anel de luz LED correndo pelo perímetro */
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: conic-gradient(from var(--led-angle),
              transparent 0%,
              rgba(111,183,232,.15) 45%,
              rgba(111,183,232,.95) 72%,
              #BFE3FA 80%,
              rgba(111,183,232,.95) 88%,
              transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: ledRun 5.5s linear infinite;
}
@keyframes ledRun { to { --led-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) {
  .svc-card::before { animation: none; }
}
.svc-card:hover {
  background: linear-gradient(160deg, rgba(30,58,87,.95) 0%, rgba(20,40,61,.95) 100%);
  transform: translateY(-7px);
  box-shadow: 0 6px 20px rgba(20,40,61,.24), 0 34px 72px rgba(20,40,61,.3),
              0 0 32px rgba(111,183,232,.28), inset 0 0 28px rgba(111,183,232,.08);
}
.svc-card:hover::before { animation-duration: 2.5s; }
.svc-cat {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6FB7E8;
  background: rgba(111,183,232,.12);
  border: 1px solid rgba(111,183,232,.28);
  border-radius: 100px;
  padding: 4px 11px;
  margin-bottom: 11px;
}
.svc-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-card p {
  font-size: 14.5px;
  color: rgba(232,240,248,.92);
  line-height: 1.62;
  margin: 0;
}

/* Metodologia · PRUMO — seção removida do site em jun/2026 (guardada
   em metodologia-prumo.html, na raiz do Site JCE). Reinserir de lá. */

/* ── Cards de parceiros (clicáveis → modal de detalhes) ── */
.parceiro {
  display: flex; flex-direction: column; width: 100%;
  text-align: left; font: inherit; color: inherit;
  background: var(--white);
  border: 1px solid rgba(62,110,158,.12);
  border-radius: 18px;
  overflow: hidden; cursor: pointer;
  box-shadow: 0 1px 2px rgba(20,24,30,.04), 0 12px 30px rgba(20,24,30,.06);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s, border-color .25s;
}
.parceiro:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 6px rgba(20,24,30,.05), 0 24px 54px rgba(62,110,158,.18);
  border-color: rgba(111,183,232,.45);
}
.parceiro-logo {
  position: relative; height: 150px;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; overflow: hidden;
}
.parceiro-logo img { max-height: 60px; max-width: 80%; width: auto; object-fit: contain; }
.parceiro-logo.light img { max-height: 76px; max-width: 86%; }
.parceiro-logo.farm img { max-height: 42px; max-width: 90%; }
.parceiro-logo.dark  { background: #0F2747; }
.parceiro-logo.light { background: #fff; border-bottom: 1px solid var(--line); }
.parceiro-logo.farm  { background: #1B4D2E; }
.parceiro-logo .ft-wm { font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 800; color: #5BC98A; letter-spacing: -1px; }
/* CTA "Ver detalhes" sobre a logo (sempre visível, igual ao "Ver currículo") */
.parceiro-cta {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 9px 0 10px;
  background: linear-gradient(to top, rgba(13,25,42,.85), rgba(13,25,42,0));
  font-family: 'IBM Plex Mono', monospace; font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.3px; text-transform: uppercase; color: #fff;
  transition: padding .25s;
}
.parceiro-cta svg { width: 14px; height: 14px; transition: transform .25s; }
.parceiro:hover .parceiro-cta svg { transform: translateX(4px); }
.parceiro-info { padding: 18px 20px 22px; }
.parceiro-name { display: block; font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.parceiro-desc { display: block; font-size: 14px; color: var(--ink2); line-height: 1.55; }

/* ══ modal de detalhes do parceiro — tela grande, idêntica à
   apresentação institucional (reaproveita .team-modal* para o chrome) ══ */
.partner-modal { padding: 20px; }
.partner-modal-card {
  position: relative; z-index: 1;
  width: min(1080px, 96vw);
  max-height: 92vh; overflow-y: auto;
  border-radius: 22px; overflow-x: hidden;
  background: var(--white);
  box-shadow: 0 40px 100px rgba(13,25,42,.45);
  animation: modalPop .3s cubic-bezier(.22,.68,0,1.2);
}
.partner-modal .team-modal-close { z-index: 6; }
@media (prefers-reduced-motion: reduce) { .partner-modal-card { animation: none; } }
.pm-loading { padding: 60px 40px; text-align: center; color: var(--muted); font-size: 14px; }

/* ── seção de detalhe (mesmas regras da apresentação, escopadas em .psec) ── */
.psec { --cyan: #4FC3F7; position: relative; overflow: hidden; border-radius: 22px; }
.psec .reveal { opacity: 1; transform: none; }
.psec-wrap { padding: 46px 48px 48px; }
.psec .sec-head { margin-bottom: 20px; }
.psec .sec-head .lab { font-size: 11.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; font-weight: 600; }
.psec .partner-logo-head { height: 46px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .92; }
.psec .partner-logo-head-light { height: 46px; width: auto; display: block; }
.psec .ft-title-wm { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 38px; color: #7FBF3F; letter-spacing: .02em; line-height: 1.1; display: block; }
.psec .sec-sub { color: var(--ink2); font-size: 17px; line-height: 1.6; max-width: none; margin-bottom: 30px; }

/* PH Advisory */
.psec.phsec { background: linear-gradient(160deg, #0D47A1 0%, #062A60 100%); }
.psec.phsec .lab { color: var(--cyan); }
.psec.phsec .sec-sub { color: rgba(240,244,248,.78); }
.psec .ph-team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 22px; margin-top: 22px; }
.psec .ph-person { text-align: center; }
.psec .ph-person .pic { width: 104px; height: 104px; border-radius: 18px; margin: 0 auto 10px; overflow: hidden; border: 3px solid rgba(255,255,255,.18); box-shadow: 0 10px 22px rgba(20,24,30,.16); background: #2b3038; }
.psec .ph-person .pic img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.psec .ph-person .pn { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; font-size: 15px; color: #F0F4F8; line-height: 1.16; }
.psec .ph-person .pc { font-size: 11px; color: rgba(240,244,248,.6); margin-top: 3px; line-height: 1.35; }

/* Machado Schütz */
.psec.mshsec { background: #fff; }
.psec .msh-areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.psec .msh-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 11px; }
.psec .msh-card .mi { width: 44px; height: 44px; color: #8C1A2B; }
.psec .msh-card .mi svg { width: 100%; height: 100%; }
.psec .msh-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.12; }
.psec .msh-card p { color: var(--ink2); font-size: 13.5px; line-height: 1.5; margin: 0; }
.psec .msh-bottom { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 26px; flex-wrap: wrap; }
.psec .msh-stats { display: flex; gap: 54px; }
.psec .msh-stats .ms .n { font-family: 'Playfair Display', Georgia, serif; font-size: 38px; font-weight: 800; color: #8C1A2B; line-height: 1; }
.psec .msh-stats .ms .l { font-size: 13px; color: var(--ink2); margin-top: 7px; }
.psec .msh-map { display: flex; align-items: center; gap: 16px; }
.psec .msh-map .brmap { width: 100px; height: 100px; flex-shrink: 0; }
.psec .msh-map .brmap path { fill: #8C1A2B; }
.psec .msh-map .mlbl { font-size: 13px; color: var(--ink2); line-height: 1.4; }
.psec .msh-map .mlbl b { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 18px; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.psec .msh-states { border-left: 1px solid var(--line); padding-left: 20px; margin-left: 4px; }
.psec .msh-states .st-tit { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 9px; }
.psec .msh-states .st { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink2); padding: 3px 0; }
.psec .msh-states .uf { display: inline-block; min-width: 28px; text-align: center; font-family: 'IBM Plex Mono', monospace; font-size: 10.5px; font-weight: 700; color: #8C1A2B; background: rgba(140,26,43,.08); border: 1px solid rgba(140,26,43,.22); border-radius: 5px; padding: 2px 5px; }

/* Farmtech */
.psec.ftsec { background: linear-gradient(160deg, #061A0C 0%, #134A1A 100%); }
.psec.ftsec .lab { color: #fff; }
.psec.ftsec .sec-sub { color: rgba(240,244,248,.78); }
.psec .ft-lines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.psec .ft-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 22px 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.psec .ft-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; font-weight: 700; color: #F0F4F8; margin-bottom: 9px; }
.psec .ft-card .sub { font-size: 13px; color: rgba(240,244,248,.65); line-height: 1.45; padding-bottom: 14px; margin-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.1); }
.psec .ft-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; }
.psec .ft-card li { position: relative; padding-left: 24px; font-size: 12.5px; color: rgba(240,244,248,.78); line-height: 1.4; }
.psec .ft-card li::before { content: ''; position: absolute; left: 0; top: 1px; width: 16px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.42); }
.psec .ft-card li::after { content: ''; position: absolute; left: 5px; top: 5px; width: 5px; height: 3px; border-left: 1.6px solid #fff; border-bottom: 1.6px solid #fff; transform: rotate(-45deg); }
.psec .ft-stats { display: flex; gap: 46px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.18); padding-top: 24px; flex-wrap: wrap; }
.psec .ft-stats .fs .n { font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 800; color: #fff; line-height: 1; }
.psec .ft-stats .fs .l { font-size: 12.5px; color: rgba(255,255,255,.7); margin-top: 6px; max-width: 175px; }

/* responsivo */
@media (max-width: 900px) { .psec .ft-lines { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) { .psec .msh-areas { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .psec-wrap { padding: 34px 22px 36px; }
  .psec .ph-team { grid-template-columns: repeat(3, 1fr); }
  .psec .msh-stats { gap: 30px; }
}
@media (max-width: 520px) {
  .psec .ph-team { grid-template-columns: repeat(2, 1fr); }
  .psec .ft-lines { grid-template-columns: 1fr; }
}

/* ══ Diagnóstico PRUMO ════════════════════════════════════════════ */
/* sem a textura de grade do fundo (deixa a seção mais limpa) */
#diagnostico::before { display: none; }
.diag-head { max-width: none; margin-bottom: 38px; }
.diag-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 880px) { .diag-grid { grid-template-columns: 1.05fr 1fr; gap: 38px; } }

/* card · o que analisamos a fundo */
.diag-report {
  position: relative; border-radius: 18px; padding: 26px 26px 24px;
  background: linear-gradient(158deg, rgba(30,58,87,.55) 0%, rgba(11,24,44,.62) 100%);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(111,183,232,.22);
  box-shadow: 0 20px 50px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden; isolation: isolate;
}
.diag-report::before {
  content: ''; position: absolute; top: -45%; left: -12%; width: 65%; height: 85%; z-index: -1;
  background: radial-gradient(ellipse, rgba(111,183,232,.09), transparent 72%); pointer-events: none;
}
.diag-report-role {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: #6FB7E8; margin-bottom: 10px;
}
.diag-report h3 {
  font-family: 'Playfair Display', Georgia, serif; font-size: clamp(19px, 2.5vw, 23px);
  font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 16px;
}
.diag-list { display: flex; flex-direction: column; }
.diag-list .it {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 11px 0; border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px; color: rgba(232,240,248,.9); line-height: 1.45;
}
.diag-list .it:first-child { border-top: 0; }
.diag-list .ic {
  flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%; margin-top: 1px;
  background: rgba(111,183,232,.14); border: 1px solid rgba(111,183,232,.42);
  display: flex; align-items: center; justify-content: center; color: #6FB7E8;
}
.diag-list .ic svg { width: 10px; height: 10px; }

/* coluna · o que você recebe */
.diag-receive-title {
  font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.diag-steps { display: flex; flex-direction: column; }
.diag-step {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1);
  transition: transform .25s ease;
}
.diag-step:first-child { border-top: 0; }
.diag-step:hover { transform: translateX(4px); }
.diag-step .sn {
  flex: 0 0 auto; width: 38px;
  font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 800; line-height: 1;
  -webkit-text-stroke: 1px rgba(111,183,232,.65); -webkit-text-fill-color: transparent;
  color: transparent;
}
.diag-step h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.25; }
.diag-step p { font-size: 12.5px; color: rgba(232,240,248,.62); line-height: 1.5; margin: 0; }
.diag-cta { margin-top: 26px; }

/* ══ Solicitar contato · proporção reduzida (escopado) ════════════ */
#contato .title { font-size: clamp(20px, 3.6vw, 26px); margin-bottom: 12px; }
/* título em uma linha só no desktop, em escala com o formulário */
@media (min-width: 880px) { #contato .title { white-space: nowrap; font-size: clamp(19px, 1.95vw, 25px); } }
#contato .lead { font-size: 15px; }
#contato .contact-card { padding: 13px 16px; gap: 13px; }
#contato .contact-ic { width: 38px; height: 38px; border-radius: 10px; }
#contato .contact-ic svg { width: 18px; height: 18px; }
#contato .contact-card .k { font-size: 10px; }
#contato .contact-card .v { font-size: 14.5px; }
#contato .card h3 { font-size: 19px; }
#contato .field { margin-bottom: 8px; }
#contato .field > span { font-size: 11.5px; margin-bottom: 3px; }
#contato .field input, #contato .field textarea, #contato .field select { padding: 8px 12px; font-size: 14px; border-radius: 9px; }
#contato .card .btn { padding: 11px 28px; }
#contato .form-note { margin-top: 9px; }
/* alinhar as duas colunas: os 4 cards preenchem o lado esquerdo na mesma altura do formulário */
@media (min-width: 880px) {
  #contato .split { align-items: stretch; }
  #contato .split > .card { transform: none; }
}

/* ── títulos de seção sempre à esquerda (hero permanece centralizado) ── */
.section .center { text-align: left; margin-left: 0 !important; margin-right: 0 !important; }
.section .center .eyebrow { justify-content: flex-start !important; }
.section .center .lead { margin-left: 0 !important; margin-right: 0 !important; }
