/* ============================================
   CONVEX LTDA — Design system (editorial/humanizado)
   ============================================ */

:root {
  /* ── PALETA CONVEX: ciano · azul · verde · vermelho ── */

  /* Brand */
  --brand-cyan:    #0FB6E4;
  --brand-cyan-2:  #0596C0;
  --brand-cyan-soft:#D8F1FB;
  --brand-blue:    #1E2D88;
  --brand-blue-2:  #14215E;
  --brand-blue-3:  #0E1740;
  --brand-green:   #7CB342;
  --brand-green-2: #5C9931;
  --brand-red:     #0FB6E4;
  --brand-red-2:   #0596C0;

  /* Aliases dark — mantidos pra compatibilidade interna; tudo aponta pro azul Convex */
  --teal-900:  #1E2D88;
  --teal-800:  #14215E;
  --teal-700:  #1E2D88;
  --teal-600:  #1E2D88;
  --teal-500:  #1E2D88;
  --ink:       #0F1729;

  /* Ícones em fundo claro */
  --teal-100:  #D8F1FB;
  --teal-50:   #EAF7FC;

  /* Aliases âmbar/cool — apontam pro accent vermelho da Convex (CTAs/números) */
  --amber-500: #0FB6E4;
  --amber-400: #0FB6E4;
  --amber-700: #0596C0;
  --amber-600: #0596C0;
  --amber-100: #D8F1FB;
  --cool-200:  #D8F1FB;
  --cool-400:  #6EC6E1;
  --cool-600:  #0596C0;

  /* Superfícies claras */
  --cream:     #FFFFFF;
  --cream-2:   #F5F7FA;
  --paper:     #FFFFFF;
  --white:     #FFFFFF;
  --off-white: #F8FAFC;

  /* Texto */
  --ink-soft:  #3A4259;
  --muted:     #6E7689;

  /* Linhas — cinza neutro */
  --line:      #E5E7EB;
  --line-soft: #F1F3F5;

  /* Estados — sem verde-sucesso destoante; tudo no âmbar */
  --success:   #E8A33D;
  --danger:    #B0322E;

  /* Tipografia — Instrument Serif (display, com itálicos) + DM Sans (sans humano) */
  --font-display: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', 'Söhne', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    ui-monospace, 'JetBrains Mono', SFMono-Regular, Menlo, monospace;

  /* Espaçamento */
  --container:   1200px;
  --container-w: 1340px;

  /* Border-radius — propositalmente variados */
  --r-xs:      6px;
  --r-sm:      12px;
  --r:         18px;
  --r-lg:      28px;
  --r-xl:      40px;
  --r-pill:    999px;
  --r-blob-a:  36px 8px 36px 8px;   /* asimétrico em pixels (seguro) */
  --r-blob-b:  8px 36px 8px 36px;   /* espelho */
  --r-cut-tl:  4px 32px 32px 32px;  /* canto cortado top-left */
  --r-cut-br:  32px 32px 4px 32px;  /* canto cortado bottom-right */

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(8, 42, 43, 0.06);
  --shadow:    0 14px 38px rgba(8, 42, 43, 0.10), 0 3px 8px rgba(8, 42, 43, 0.05);
  --shadow-lg: 0 28px 60px rgba(8, 42, 43, 0.18), 0 10px 22px rgba(8, 42, 43, 0.08);

  /* Transições */
  --t-fast: 160ms cubic-bezier(.2,.7,.3,1);
  --t:      280ms cubic-bezier(.2,.7,.3,1);
  --t-slow: 520ms cubic-bezier(.2,.7,.3,1);

  --header-h: 78px;
}

/* ============================================
   Reset & Base
   ============================================ */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--amber-700); }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 0 0 .4em 0;
}

h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 5rem); }
h2 { font-size: clamp(2rem, 3.4vw + 1rem, 3.4rem); }
h3 { font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem); }

p { margin: 0 0 1em 0; color: var(--ink-soft); }

em, .ital {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 700;
  color: var(--brand-cyan-2);
}

::selection { background: var(--brand-cyan); color: var(--white); }

/* ============================================
   Layout
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 26px;
}
.container--wide { max-width: var(--container-w); }
.container--narrow { max-width: 920px; }

.section {
  padding: clamp(72px, 9vw, 140px) 0;
  position: relative;
}
.section--dark {
  background: var(--teal-900);
  color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p { color: rgba(242, 237, 226, 0.78); }
.section--paper { background: #FFFFFF; }
.section--cream2 { background: #FFFFFF; }

/* Etiqueta editorial */
.eyebrow {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-cyan-2);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '— ';
  letter-spacing: 0;
}
.section--dark .eyebrow { color: var(--amber-400); }

/* Marca: numeração editorial */
.numtag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--amber-700);
}

/* "Underline" desenhado à mão sobre uma palavra */
.handline {
  display: inline-block;
  position: relative;
  font-style: italic;
  color: var(--brand-cyan-2);
  font-weight: 700;
}
.handline::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 40 1 80 6 T 160 5 T 238 9' stroke='%230FB6E4' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.6s cubic-bezier(.4, 0, .2, 1) 0.3s;
}
.handline::before {
  content: '';
  position: absolute;
  left: -4%;
  bottom: -16px;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12 L2 3 L10 12 L2 21 Z' fill='%230FB6E4'/%3E%3Cpath d='M10 12 L2 3 L6 12 Z' fill='%230596C0'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: 0;
  z-index: 2;
  transition: left 1.6s cubic-bezier(.4, 0, .2, 1) 0.3s, opacity 0.25s ease 0.3s;
  pointer-events: none;
}

/* dispara animação quando a seção vira visível */
.reveal.is-visible .handline::after { clip-path: inset(0 0% 0 0); }
.reveal.is-visible .handline::before { left: 104%; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .handline::after { clip-path: none; transition: none; }
  .handline::before { display: none; }
}

/* Pequena estampa decorativa */
.stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}
.stamp .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.22);
}

/* Section header */
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head--center { margin: 0 auto 64px; text-align: center; }
.section-head--side {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  max-width: none;
  margin-bottom: 64px;
}
.section-head--side .section-side-note {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  padding-bottom: 14px;
}
.section--dark .section-side-note,
.section-side-note--dark {
  color: rgba(255, 255, 255, 0.65) !important;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}
.lead--display {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.2rem, 1vw + 1rem, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t);
  text-decoration: none;
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-cyan);
  color: var(--brand-blue);
  border-color: var(--brand-cyan);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--white);
  color: var(--brand-blue);
  border-color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 182, 228, 0.30);
}
.btn--primary .arrow { font-family: var(--font-sans); font-style: normal; }

.btn--amber {
  background: var(--amber-500);
  color: var(--teal-900);
  border-color: var(--amber-500);
}
.btn--amber:hover {
  background: var(--amber-400);
  color: var(--teal-900);
  border-color: var(--amber-400);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(242, 237, 226, 0.35);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--teal-900);
  border-color: var(--cream);
}

.btn--link {
  padding: 0;
  background: transparent;
  border: none;
  color: var(--teal-800);
  font-weight: 500;
  position: relative;
}
.btn--link::after {
  content: '→';
  margin-left: 6px;
  display: inline-block;
  transition: transform var(--t-fast);
}
.btn--link:hover::after { transform: translateX(4px); }

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 6px 24px rgba(14, 23, 64, 0.08);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  will-change: backdrop-filter;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}
.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(30, 45, 136, 0.55) 0%, rgba(14, 23, 64, 0.40) 100%);
  border-bottom-color: rgba(15, 182, 228, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 32px rgba(14, 23, 64, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 26px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1;
}
.nav-logo img {
  display: block;
  height: 36px;
  width: auto;
  transition: opacity var(--t);
}
.nav-logo:hover img { opacity: 0.85; }
.nav-logo:hover { color: var(--brand-cyan); }
.nav-logo .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-cyan);
  display: inline-block;
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  padding: 9px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: var(--r-sm);
}
.nav-links a:hover { color: var(--brand-cyan); }
.nav-links a.is-active { color: var(--white); }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--brand-cyan);
  border-radius: 2px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}
.nav-phone:hover { color: var(--brand-cyan); }
.nav-phone svg { width: 14px; height: 14px; color: var(--brand-cyan); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent;
  padding: 0;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero — cover full-bleed (sans + accent frio)
   ============================================ */

.hero.hero--cover {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--brand-blue);
  color: var(--cream);
}

/* Slider — wrapper de slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Cada slide ocupa toda a área e fica posicionado absoluto */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 200px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 700ms cubic-bezier(.2,.7,.3,1);
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}
.hero-slide.is-active .hero-cover {
  animation: hero-slide-in 800ms cubic-bezier(.2,.7,.3,1) both;
}
@keyframes hero-slide-in {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Background layer — gradient + SVG skyline (substituir por foto real em cada slide) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 18%, rgba(15, 182, 228, 0.16), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(14, 23, 64, 0.5), transparent 60%),
    linear-gradient(180deg, #1E2D88 0%, #0E1740 100%);
}
.hero-bg--02 {
  background:
    radial-gradient(ellipse at 20% 25%, rgba(15, 182, 228, 0.20), transparent 55%),
    linear-gradient(190deg, #1E2D88 0%, #0E1740 100%);
}
.hero-bg--03 {
  background:
    radial-gradient(ellipse at 85% 70%, rgba(124, 179, 66, 0.18), transparent 55%),
    linear-gradient(175deg, #1E2D88 0%, #0E1740 100%);
}
.hero-bg--04 {
  background:
    radial-gradient(circle at 50% 50%, rgba(15, 182, 228, 0.22), transparent 55%),
    linear-gradient(180deg, #1E2D88 0%, #0E1740 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero-bg-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  display: block;
}
.hero-slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-slide-photo + .hero-bg-skyline { opacity: 0; }

/* Overlay escuro pra legibilidade do texto quando há foto de fundo */
.hero-bg--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 23, 64, 0.78) 0%, rgba(14, 23, 64, 0.55) 55%, rgba(14, 23, 64, 0.35) 100%),
    linear-gradient(180deg, transparent 40%, rgba(14, 23, 64, 0.55) 100%);
  pointer-events: none;
}

/* Cover content */
.hero-cover {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(15, 182, 228, 0.40);
  border-radius: var(--r-pill);
  background: rgba(15, 182, 228, 0.10);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-mark-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(15, 182, 228, 0.25);
  animation: cool-pulse 2.4s ease-in-out infinite;
}
@keyframes cool-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(15, 182, 228, 0.25); }
  50%      { box-shadow: 0 0 0 10px rgba(15, 182, 228, 0); }
}

.hero-cover-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.2vw + 1rem, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--cream);
  margin: 0 0 28px;
  text-transform: none;
}
.hero-cover-title .hero-cover-accent {
  color: var(--brand-cyan);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-cover-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 0.6vw + 1rem, 1.25rem);
  line-height: 1.55;
  color: rgba(242, 237, 226, 0.78);
  max-width: 56ch;
  margin: 0 0 44px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Botões do cover */
.btn--cover-primary {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  font-weight: 600;
  padding: 15px 28px;
}
.btn--cover-primary:hover {
  background: var(--brand-red-2);
  color: var(--white);
  border-color: var(--brand-red-2);
  transform: translateY(-1px);
}
.btn--cover-primary .arrow {
  font-family: var(--font-sans);
  font-style: normal;
  transition: transform var(--t-fast);
}
.btn--cover-primary:hover .arrow { transform: translateX(3px); }

.btn--cover-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  padding: 15px 28px;
}
.btn--cover-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-cyan);
  border-color: var(--brand-cyan);
}

/* ============================================
   Slider — controles (dots + arrows)
   ============================================ */
.hero-controls {
  position: absolute;
  bottom: 130px;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 26px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 42, 43, 0.4);
  border: 1px solid rgba(214, 228, 234, 0.28);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-arrow:hover {
  background: var(--cool-200);
  border-color: var(--cool-200);
  color: var(--teal-900);
  transform: scale(1.04);
}
.hero-arrow svg { width: 18px; height: 18px; }

.hero-dots {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(8, 42, 43, 0.35);
  border: 1px solid rgba(214, 228, 234, 0.18);
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  color: rgba(214, 228, 234, 0.5);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  border-radius: var(--r-pill);
  transition: color var(--t-fast);
}
.hero-dot:hover { color: var(--cool-200); }
.hero-dot.is-active { color: var(--cream); }
.hero-dot-num { line-height: 1; }
.hero-dot-track {
  position: relative;
  display: inline-block;
  width: 0;
  height: 2px;
  background: rgba(214, 228, 234, 0.22);
  border-radius: 2px;
  transition: width var(--t);
  overflow: hidden;
}
.hero-dot.is-active .hero-dot-track {
  width: 48px;
}
.hero-dot-track i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--cool-200);
  display: block;
}
.hero-dot.is-active .hero-dot-track i {
  animation: hero-dot-fill 6500ms linear forwards;
}
.hero--paused .hero-dot.is-active .hero-dot-track i {
  animation-play-state: paused;
}
@keyframes hero-dot-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active .hero-cover { animation: none; }
  .hero-dot.is-active .hero-dot-track i { animation: none; width: 100%; }
}

/* Mantém pulse antigo para outros componentes que ainda usam */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 163, 61, 0.25); }
  50%      { box-shadow: 0 0 0 10px rgba(232, 163, 61, 0); }
}

/* ============================================
   Notice strip — comunicado abaixo do hero
   ============================================ */
.notice-strip {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(214, 228, 234, 0.10);
  border-bottom: 1px solid rgba(214, 228, 234, 0.10);
  padding: 14px 0;
}
.notice-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.notice-strip-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool-200);
  padding: 4px 10px;
  border: 1px solid rgba(214, 228, 234, 0.32);
  border-radius: 4px;
  flex-shrink: 0;
}
.notice-strip-inner p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(242, 237, 226, 0.82);
  flex: 1;
  min-width: 280px;
}
.notice-strip-inner strong {
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   Unit clocks — horários por unidade
   ============================================ */
.unit-clocks {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.unit-clocks-head {
  padding: 0 0 14px;
}
.unit-clocks-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.unit-clocks-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.unit-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 22px;
  border-right: 1px dashed var(--line);
  position: relative;
}
.unit-clock:last-child { border-right: none; }
.unit-clock::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 12px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--cool-600);
  opacity: 0.55;
}
.unit-clock-time {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  padding-left: 14px;
}
.unit-clock span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  padding-left: 14px;
  letter-spacing: 0.02em;
}

/* ============================================
   Marquee (cliente strip orgânica)
   ============================================ */

.logos-band {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0 40px;
}
.logos-band-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-cyan-2);
  display: block;
  margin-bottom: 22px;
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-logo {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  transition: transform var(--t);
}
.marquee-logo:hover {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Soluções completas — cards visuais com imagens
   ============================================ */

/* Bento grid 3×3 — 6 cards de tamanhos diferentes em um único bloco */
.service-cards {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 12px;
  grid-template-areas:
    "c6 c1 c1"
    "c6 c2 c3"
    "c4 c4 c5";
}
.service-card:nth-child(1) { grid-area: c1; }
.service-card:nth-child(2) { grid-area: c2; }
.service-card:nth-child(3) { grid-area: c3; }
.service-card:nth-child(4) { grid-area: c4; }
.service-card:nth-child(5) { grid-area: c5; }
.service-card:nth-child(6) { grid-area: c6; }

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  min-height: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--cool-400);
  box-shadow: var(--shadow);
}
.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-indent: -9999px;
  overflow: hidden;
}

.service-card-img {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
  z-index: 1;
  background:
    radial-gradient(circle at 75% 25%, rgba(214, 228, 234, 0.18), transparent 55%),
    linear-gradient(160deg, #0F4344, #082A2B);
}
.service-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.service-card-img img + .service-card-icon,
.service-card-img:has(img) .service-card-icon { opacity: 0.0; }
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 2;
  pointer-events: none;
}
.service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 42, 43, 0.55) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Variações de paleta por serviço */
.service-card-img--01 {
  background:
    radial-gradient(circle at 80% 20%, rgba(15, 182, 228, 0.32), transparent 55%),
    linear-gradient(160deg, #1E2D88, #0E1740);
}
.service-card-img--02 {
  background:
    radial-gradient(circle at 20% 80%, rgba(15, 182, 228, 0.26), transparent 55%),
    linear-gradient(200deg, #1E2D88, #14215E);
}
.service-card-img--03 {
  background:
    radial-gradient(circle at 50% 30%, rgba(15, 182, 228, 0.30), transparent 55%),
    linear-gradient(180deg, #1E2D88, #0E1740);
}
.service-card-img--04 {
  background:
    radial-gradient(circle at 70% 70%, rgba(124, 179, 66, 0.26), transparent 55%),
    linear-gradient(165deg, #1E2D88, #14215E);
}
.service-card-img--05 {
  background:
    radial-gradient(circle at 30% 30%, rgba(15, 182, 228, 0.30), transparent 60%),
    linear-gradient(195deg, #1E2D88, #0E1740);
}
.service-card-img--06 {
  background:
    radial-gradient(circle at 80% 20%, rgba(15, 182, 228, 0.40), transparent 55%),
    linear-gradient(160deg, #0FB6E4 0%, #1E2D88 60%, #0E1740 100%);
}

.service-card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 88px; height: 88px;
  color: rgba(214, 228, 234, 0.5);
  z-index: 2;
  transition: transform var(--t), color var(--t);
}
.service-card-icon--multi {
  width: 200px;
  height: 80px;
  color: rgba(214, 228, 234, 0.55);
}
.service-card:hover .service-card-icon {
  transform: translate(-50%, -56%) scale(1.04);
  color: rgba(214, 228, 234, 0.7);
}

.service-card-num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(242, 237, 226, 0.88);
  z-index: 4;
}
.service-card-num--featured {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--cool-200);
}

.service-card-tag {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cool-200);
  padding: 4px 10px;
  border: 1px solid rgba(214, 228, 234, 0.32);
  border-radius: 4px;
  background: rgba(8, 42, 43, 0.45);
  z-index: 4;
}

.service-card-body {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 60px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 16, 40, 0.6) 35%, rgba(8, 16, 40, 0.92) 100%);
}
.service-card-body h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.service-card-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-cta {
  margin-top: 8px;
  padding-top: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-top: none;
}
.service-card-cta span {
  transition: transform var(--t-fast);
  display: inline-block;
}
.service-card:hover .service-card-cta span { transform: translateX(4px); }

/* Card destaque (06 — Despacho 3 modais) — ocupa coluna esquerda alta no bento */
.service-card--feat .service-card-body h4 {
  font-size: 1.4rem;
  line-height: 1.15;
}
.service-card--feat .service-card-body p {
  -webkit-line-clamp: 3;
}
.service-card--feat .service-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.20), rgba(15, 23, 41, 0.55));
  z-index: 2;
}

/* Estilos legados mantidos no fim do bloco — só pra service-featured ainda usado em outras páginas */
.services-layout-legacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.service-featured {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px 24px 24px 24px;
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 540px;
}
.service-featured::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.16), transparent 65%);
  pointer-events: none;
}
.service-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.service-featured > * { position: relative; z-index: 1; }

.service-featured-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.service-featured-tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--amber-500);
}

.service-featured-mark {
  position: absolute;
  bottom: 36px;
  right: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 7rem;
  line-height: 1;
  color: rgba(232, 163, 61, 0.08);
  z-index: 0;
  pointer-events: none;
}

.service-featured h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 2.6vw + 1rem, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
  color: var(--cream);
  margin: 32px 0 20px;
  max-width: 14ch;
}
.service-featured h3 em { color: var(--amber-500); font-style: italic; }

.service-featured p {
  color: rgba(242, 237, 226, 0.78);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 36px;
  max-width: 38ch;
}

.service-featured-meta {
  display: flex;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 237, 226, 0.12);
  margin-top: 28px;
}
.service-featured-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-featured-meta-item strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-500);
  font-size: 1.4rem;
  line-height: 1;
}
.service-featured-meta-item span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.5);
}

/* Lista de serviços (direita) — cartão paper espelhando o featured */
.service-list {
  list-style: none;
  margin: 0;
  padding: 14px 32px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 24px 4px 24px 24px;
  position: relative;
  overflow: hidden;
}
.service-list::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 42, 43, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  padding: 24px 12px 24px 14px;
  border-bottom: 1px solid var(--line-soft);
  align-items: flex-start;
  transition: padding var(--t), background var(--t);
  cursor: pointer;
  border-radius: 10px;
  z-index: 1;
}
.service-row:last-child { border-bottom: none; }
.service-row::before {
  content: '';
  position: absolute;
  left: -8px; top: 50%;
  width: 3px;
  height: 0;
  background: var(--amber-500);
  transition: height var(--t);
  transform: translateY(-50%);
  border-radius: 3px;
}
.service-row:hover {
  background: var(--cream);
  padding-left: 20px;
}
.service-row:hover::before { height: 56%; }

.service-row-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-700);
  letter-spacing: 0.06em;
  padding-top: 6px;
}

.service-row-body h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.service-row-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 44ch;
}

.service-row-arrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--amber-700);
  align-self: center;
  transition: transform var(--t-fast), opacity var(--t-fast);
  opacity: 0.4;
}
.service-row:hover .service-row-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================
   Pillars — lista editorial vertical
   ============================================ */

.pillars-editorial {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.pillars-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillars-list li {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 30px 30px 34px;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.pillars-list li:nth-child(1) { border-radius: 24px 4px 24px 24px; }
.pillars-list li:nth-child(2) { border-radius: 4px 24px 24px 24px; background: var(--cream-2); }
.pillars-list li:nth-child(3) { border-radius: 24px 24px 24px 4px; background: var(--cream-2); }
.pillars-list li:nth-child(4) { border-radius: 24px 24px 4px 24px; }
.pillars-list li:hover {
  transform: translateY(-3px);
  border-color: var(--amber-500);
  box-shadow: var(--shadow);
}
.pillars-list .num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--amber-700);
  z-index: 1;
  pointer-events: none;
}
.pillars-list .num::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--amber-500);
  vertical-align: middle;
  margin-right: 8px;
  transform: translateY(-1px);
}
.pillars-list h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.1;
  max-width: 78%;
  position: relative;
  z-index: 1;
}
.pillars-list h4::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--amber-500);
  margin-bottom: 18px;
  border-radius: 2px;
}
.pillars-list p {
  font-size: 0.97rem;
  margin: 0;
  position: relative;
  z-index: 1;
  max-width: 38ch;
  color: var(--ink-soft);
}

.pillars-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--teal-900);
  color: var(--cream);
  padding: 44px 38px 38px;
  border-radius: var(--r-cut-br);
  overflow: hidden;
}
.pillars-aside::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 64px; height: 64px;
  background:
    linear-gradient(135deg, transparent 49.5%, var(--amber-500) 50%);
  pointer-events: none;
}
.pillars-aside::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.pillars-aside > * { position: relative; z-index: 1; }
.pillars-aside h3 {
  color: var(--cream);
  font-size: 2.1rem;
  margin: 0 0 14px;
  line-height: 1.1;
}
.pillars-aside h3 em { color: var(--amber-400); }
.pillars-aside p { color: rgba(242, 237, 226, 0.78); font-size: 1rem; margin: 0; }
.pillars-aside .stamp {
  margin-top: 28px;
  background: rgba(242, 237, 226, 0.06);
  color: var(--amber-400);
  border-color: rgba(242, 237, 226, 0.14);
}
.pillars-aside .aside-mark {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232, 163, 61, 0.18);
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   Sectors — chips orgânicas em fluxo
   ============================================ */

/* Setores — faixa horizontal de stats acima do grid */
.sectors-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 8px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.sectors-strip-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 26px;
  border-right: 1px dashed var(--line);
}
.sectors-strip-item:last-child { border-right: none; }
.sectors-strip-item strong {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brand-cyan);
  letter-spacing: -0.04em;
}
.sectors-strip-item strong em {
  font-style: normal;
  color: var(--brand-blue);
  font-weight: 700;
}
.sectors-strip-item span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.sectors-wrap { display: block; }
.sector-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
}
.sector-chip {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--brand-blue-3);
  border: 1px solid var(--line);
  cursor: default;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: block;
  text-decoration: none;
}
.sector-chip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 600ms cubic-bezier(.2,.7,.3,1), filter var(--t);
}
.sector-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 23, 41, 0.10) 0%, rgba(15, 23, 41, 0.85) 100%);
  pointer-events: none;
  transition: opacity var(--t);
}
.sector-chip figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 3;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.sector-chip:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 14px 28px rgba(15, 23, 41, 0.18);
}
.sector-chip:hover img { transform: scale(1.06); }

/* CTA card (último — "Não vê seu setor?") */
.sector-chip--cta {
  background: var(--brand-cyan-soft);
  border-color: var(--brand-cyan);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px;
  cursor: pointer;
  text-decoration: none;
}
.sector-chip--cta::after { display: none; }
.sector-chip--cta svg {
  width: 28px; height: 28px;
  color: var(--brand-cyan);
  position: static;
  transition: transform var(--t);
}
.sector-chip--cta span {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brand-blue);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.sector-chip--cta strong {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-cyan-2);
  margin-top: 6px;
}
.sector-chip--cta:hover {
  background: var(--brand-cyan);
  border-color: var(--brand-cyan);
}
.sector-chip--cta:hover svg { color: var(--white); transform: rotate(90deg); }
.sector-chip--cta:hover span { color: var(--white); }
.sector-chip--cta:hover strong { color: rgba(255, 255, 255, 0.85); }

/* Legacy modifiers — não usados mais, mas mantidos pra não quebrar */
.sector-chip--lg,
.sector-chip--amber,
.sector-chip--ital,
.sector-chip--ghost { /* sem override — comportam como sector-chip base */ }

/* ============================================
   Testimonials — uma destaque + complementos
   ============================================ */

.testimonials { position: relative; overflow: hidden; }
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.testimonials-bg svg { width: 100%; height: 100%; display: block; }
.testimonials > .container { position: relative; z-index: 1; }

.tm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: stretch;
}

.tm-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.tm-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(15, 182, 228, 0.45);
  transform: translateY(-3px);
}
.tm-card--feat {
  grid-row: span 2;
  background: linear-gradient(155deg, rgba(15, 182, 228, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(15, 182, 228, 0.30);
}

.tm-quote {
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 4rem;
  line-height: 0.6;
  color: rgba(15, 182, 228, 0.40);
  pointer-events: none;
}
.tm-card--feat .tm-quote {
  font-size: 6.5rem;
  color: rgba(15, 182, 228, 0.55);
}

.tm-card blockquote {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.005em;
  flex: 1;
}
.tm-card--feat blockquote {
  font-size: clamp(1.3rem, 1.4vw + 0.8rem, 1.9rem);
  line-height: 1.3;
  max-width: 30ch;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.tm-card blockquote em {
  color: var(--brand-cyan);
  font-style: italic;
  font-weight: 700;
}

.tm-cite {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.tm-cite-logo {
  width: 76px;
  height: 52px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 8px;
  background: var(--white);
  padding: 8px 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(14, 23, 64, 0.18);
}
.tm-cite-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.tm-card--feat .tm-cite-logo {
  width: 92px;
  height: 60px;
  padding: 10px 14px;
}
.tm-cite strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.tm-cite span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ============================================
   CTA Band
   ============================================ */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-cut-tl);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232, 163, 61, 0.18), transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3.6rem);
  margin-bottom: 16px;
  max-width: 18ch;
  line-height: 1.05;
}
.cta-band h2 em { color: var(--amber-400); }
.cta-band p {
  color: rgba(242, 237, 226, 0.72);
  margin: 0;
  max-width: 48ch;
  font-size: 1.05rem;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.cta-band-mark {
  position: absolute;
  bottom: 24px;
  right: 36px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.35);
  z-index: 1;
}

/* ============================================
   Forms / Contact
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--teal-800);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 6px;
}
.contact-item p, .contact-item a {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
}
.contact-item a:hover { color: var(--amber-700); }

.form {
  background: var(--paper);
  padding: 44px;
  border-radius: var(--r-blob-a);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 6px;
  font-style: italic;
}
.form .form-intro {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--line);
  border-radius: 0;
  transition: all var(--t-fast);
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover { border-bottom-color: var(--teal-700); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: var(--amber-600);
  background: rgba(255, 255, 255, 0.5);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 14px 16px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5l5 5 5-5' stroke='%230F3D3E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}

.form .btn {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}

.form-feedback {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  display: none;
}
.form-feedback.is-success {
  display: block;
  background: rgba(232, 163, 61, 0.12);
  color: var(--amber-700);
  border: 1px solid rgba(232, 163, 61, 0.3);
}

/* ============================================
   Page header (interna)
   ============================================ */

.page-header {
  padding: calc(var(--header-h) + 56px) 0 72px;
  background-color: #1E2D88;
  background-image: linear-gradient(135deg, #1E2D88 0%, #0E1740 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 60px solid rgba(15, 182, 228, 0.18);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 60px solid rgba(124, 179, 66, 0.14);
  pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.page-header h1 em {
  color: var(--brand-cyan);
  font-style: italic;
  font-weight: 700;
}
.page-header p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.6;
  margin-top: 8px;
}
.page-header .eyebrow { color: var(--brand-cyan); }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.78); }
.breadcrumb a:hover { color: var(--brand-cyan); }
.breadcrumb span { opacity: 0.4; }

/* ============================================
   Service detail (servicos.html)
   ============================================ */

.service-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.is-reversed > :first-child { order: 2; }

.sd-body .num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-cyan-2);
  margin-bottom: 14px;
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--brand-cyan);
  border-radius: 999px;
  background: var(--brand-cyan-soft);
}
.sd-body .num--feat {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--white);
}
.sd-body h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sd-body h2 em {
  color: var(--brand-cyan-2);
  font-style: italic;
  font-weight: 700;
}
.sd-body p { font-size: 1rem; max-width: 58ch; line-height: 1.6; }
.sd-body ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.sd-body li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.sd-body li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background:
    linear-gradient(135deg, var(--brand-cyan) 50%, transparent 50%);
  border-radius: 4px;
  position: relative;
}

.sd-visual {
  position: relative;
  margin: 0;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, var(--brand-blue), var(--brand-blue-3));
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.10);
  color: var(--white);
}
.service-detail:nth-child(even) .sd-visual { border-radius: 12px; }
.sd-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 41, 0.45) 100%);
  pointer-events: none;
}
.sd-visual .badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(15, 23, 41, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  border-radius: 4px;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}

/* Service detail featured (último item — carro-chefe) */
.service-detail--feat {
  background: var(--brand-blue-3);
  color: var(--white);
  border-radius: 16px;
  margin-top: 32px;
  padding: 48px;
  border: none;
  align-items: stretch;
  gap: 48px;
}
.service-detail--feat .sd-body h2 { color: var(--white); }
.service-detail--feat .sd-body h2 em { color: var(--brand-cyan); }
.service-detail--feat .sd-body p { color: rgba(255, 255, 255, 0.78); }
.service-detail--feat .sd-visual { aspect-ratio: 4/3; align-self: stretch; }
.service-detail--feat .btn--cover-primary { align-self: flex-start; margin-top: 8px; }

.sd-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.sd-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sd-meta strong {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--brand-cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sd-meta span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   Team — formato editorial
   ============================================ */

.team {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-card--main   { grid-column: span 7; }
.team-card--side   { grid-column: span 5; }
.team-card--small  { grid-column: span 4; }

.team-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--r-blob-a);
}
.team-card--side .team-photo { border-radius: var(--r-blob-b); aspect-ratio: 5/6; }
.team-card--small .team-photo { border-radius: var(--r-cut-tl); aspect-ratio: 1/1; }
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(232, 163, 61, 0.20), transparent 60%);
}
.team-initial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8rem;
  color: var(--amber-400);
  z-index: 1;
  line-height: 1;
}
.team-card--small .team-initial { font-size: 5rem; }
.team-body { padding: 0 4px; }
.team-role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--amber-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-body h3 {
  font-size: 1.7rem;
  font-style: italic;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.team-body p { font-size: 0.98rem; margin: 0; max-width: 48ch; }

/* ============================================
   Map
   ============================================ */

.map-wrap {
  border-radius: var(--r-blob-a);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--teal-100);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
  filter: saturate(0.9) contrast(0.95);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--brand-blue-3);
  color: var(--white);
  padding: 88px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 340px; }
.footer-brand .nav-logo { color: var(--white) !important; }
.footer-brand .nav-logo:hover { color: var(--brand-cyan) !important; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 16px 0 22px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-cyan);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--brand-cyan); }
.footer-col .footer-line {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 10px;
}
.footer-line--hours {
  color: var(--brand-cyan) !important;
  font-family: var(--font-mono);
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid; place-items: center;
  color: var(--white);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  background: var(--brand-cyan);
  color: var(--brand-blue);
  transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }

.footer-mega {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.045);
  letter-spacing: -0.05em;
  margin: 32px 0 16px;
  pointer-events: none;
  user-select: none;
  text-align: center;
}

/* ============================================
   WhatsApp FAB
   ============================================ */

.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--t);
}
.whatsapp-fab:hover { transform: scale(1.08); color: var(--white); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ============================================
   Reveal on scroll
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"].is-visible { transition-delay: 100ms; }
.reveal[data-delay="200"].is-visible { transition-delay: 200ms; }
.reveal[data-delay="300"].is-visible { transition-delay: 300ms; }
.reveal[data-delay="400"].is-visible { transition-delay: 400ms; }

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

/* ============================================
   TECH LAYER — componentes de instrumentação
   ============================================ */

/* ---- Hero: variações de stamp + título thin ---- */
.stamp--mono {
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  background: var(--ink);
  color: var(--amber-400);
  border-color: var(--ink);
}
.stamp--mono .dot {
  background: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.stamp-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-title-thin {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* ---- Hero console (substitui o antigo hero-poster) ---- */
.hero-console {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 163, 61, 0.14), transparent 55%),
    linear-gradient(170deg, var(--teal-700), var(--teal-900));
  color: var(--cream);
  border-radius: 4px 24px 4px 24px;
  padding: 22px 24px 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 420px;
}
.hero-console::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}
.hero-console > * { position: relative; z-index: 1; }

.hc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 237, 226, 0.10);
}
.hc-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-400);
}
.hc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
.hc-ts {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(242, 237, 226, 0.6);
  letter-spacing: 0.08em;
}

.hc-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hc-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 4px;
  border-bottom: 1px dashed rgba(242, 237, 226, 0.08);
}
.hc-row-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--amber-400);
  border: 1px solid rgba(232, 163, 61, 0.4);
  border-radius: 4px;
  padding: 4px 6px;
  text-align: center;
}
.hc-row-body strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.hc-row-body span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(242, 237, 226, 0.55);
  letter-spacing: 0.04em;
}
.hc-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.hc-status--ok {
  background: rgba(232, 163, 61, 0.15);
  color: var(--amber-400);
  border: 1px solid rgba(232, 163, 61, 0.35);
}
.hc-status--wait {
  background: rgba(242, 237, 226, 0.06);
  color: rgba(242, 237, 226, 0.6);
  border: 1px solid rgba(242, 237, 226, 0.18);
}

.hc-progress {
  padding: 14px 4px 4px;
  margin-top: 4px;
}
.hc-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(242, 237, 226, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.hc-pct {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--amber-400);
}
.hc-pct em { font-size: 0.85rem; font-style: italic; opacity: 0.7; }
.hc-bar {
  height: 6px;
  background: rgba(242, 237, 226, 0.08);
  border-radius: var(--r-pill);
  overflow: hidden;
  position: relative;
}
.hc-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--amber-700), var(--amber-500));
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(.2,.7,.3,1);
}
.hc-steps {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.4);
}
.hc-steps .is-done { color: rgba(232, 163, 61, 0.7); }
.hc-steps .is-active {
  color: var(--amber-400);
  position: relative;
}
.hc-steps .is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 1.5px;
  background: var(--amber-500);
}

.hc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 237, 226, 0.10);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(242, 237, 226, 0.45);
  letter-spacing: 0.08em;
}
.hc-foot em { font-style: normal; color: var(--amber-400); }

.hc-stamp {
  position: absolute;
  bottom: -22px;
  right: -18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--amber-500);
  color: var(--teal-900);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.1;
  padding: 6px;
  transform: rotate(8deg);
  box-shadow: var(--shadow);
  z-index: 2;
}
.hc-stamp em { color: var(--teal-900); }

/* ---- OPS BAR — substitui hero-meta com vibe live ---- */
.ops-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  padding: 22px 6px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(8,42,43,0.015), transparent),
    var(--cream);
}
.ops-bar-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px 22px;
  border-right: 1px dashed var(--line);
  position: relative;
}
.ops-bar-cell:last-child { border-right: none; }
.ops-bar-cell--status .ops-bar-key { padding-left: 16px; }
.ops-bar-cell--status .ops-bar-dot {
  position: absolute;
  left: 22px;
  top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.22);
  animation: pulse 2.4s ease-in-out infinite;
}
.ops-bar-key {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.ops-bar-val {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.ops-bar-val strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--amber-700);
}
.ops-bar-val em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================
   PIPELINE — fluxo operacional
   ============================================ */
.pipeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px 24px 4px 24px;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.pipeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 42, 43, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.pipeline-step {
  position: relative;
  padding: 32px 28px 32px;
  border-right: 1px dashed var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1;
  transition: background var(--t);
}
.pipeline-step:last-child { border-right: none; }
.pipeline-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--amber-700);
  background: var(--paper);
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  z-index: 2;
}
.pipeline-step:last-child::after { display: none; }
.pipeline-step header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pipeline-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--amber-700);
  line-height: 1;
}
.pipeline-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
}
.pipeline-step h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
.pipeline-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.pipeline-meter {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px dashed var(--line);
}
.pipeline-meter-key {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pipeline-meter-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
}
.pipeline-meter-val em {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.pipeline-step--active {
  background:
    radial-gradient(circle at 80% 0%, rgba(232, 163, 61, 0.10), transparent 60%),
    rgba(232, 163, 61, 0.04);
}
.pipeline-step--active .pipeline-tag {
  color: var(--amber-700);
  border-color: var(--amber-500);
  background: rgba(232, 163, 61, 0.08);
}
.pipeline-step--active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--amber-500);
}
.pipeline-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  padding: 14px 22px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--cream-2);
  border-radius: var(--r-sm);
  max-width: 720px;
}
.pipeline-foot .ops-bar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.22);
  flex-shrink: 0;
}

/* ============================================
   LOG — diário operacional
   ============================================ */
.log-frame {
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px 24px 4px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.log-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(242, 237, 226, 0.025) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.log-frame > * { position: relative; z-index: 1; }
.log-frame-head,
.log-frame-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 226, 0.65);
}
.log-frame-head {
  border-bottom: 1px solid rgba(242, 237, 226, 0.10);
  background: rgba(242, 237, 226, 0.02);
}
.log-frame-foot {
  border-top: 1px solid rgba(242, 237, 226, 0.10);
  background: rgba(242, 237, 226, 0.02);
}
.log-frame-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber-400);
  text-transform: uppercase;
}
.log-frame-meta {
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.45);
}
.log-viewport {
  position: relative;
  height: 320px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.log-stream {
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: log-scroll 26s linear infinite;
}
.log-stream li {
  display: grid;
  grid-template-columns: 92px 90px 1fr;
  gap: 18px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: rgba(242, 237, 226, 0.82);
  letter-spacing: 0.02em;
}
.log-ts {
  color: rgba(242, 237, 226, 0.45);
  font-size: 0.78rem;
}
.log-tag {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid rgba(242, 237, 226, 0.18);
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.7);
  text-align: center;
  justify-self: start;
}
.log-tag--ok {
  background: rgba(232, 163, 61, 0.10);
  color: var(--amber-400);
  border-color: rgba(232, 163, 61, 0.4);
}
.log-tag--wait {
  background: rgba(176, 123, 26, 0.10);
  color: #D9A05A;
  border-color: rgba(232, 163, 61, 0.25);
}
.log-msg {
  color: rgba(242, 237, 226, 0.86);
}

@keyframes log-scroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .log-stream { animation: none; }
}

/* ============================================
   NETMAP — rede de cobertura
   ============================================ */
.netmap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.netmap-canvas {
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  border-radius: 4px 24px 4px 24px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 22px;
  box-shadow: var(--shadow);
}
.netmap-canvas::before {
  content: 'REDE · OPERAÇÃO';
  position: absolute;
  top: 18px; left: 22px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-400);
  z-index: 2;
}
.netmap-canvas::after {
  content: '06 NÓS · MERCOSUL';
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: rgba(242, 237, 226, 0.45);
  z-index: 2;
}
.netmap-canvas svg {
  width: 100%;
  height: auto;
  max-height: 380px;
  position: relative;
  z-index: 1;
}
.netmap-node circle:first-child { transition: r var(--t-fast); }
.netmap-node--hub circle:first-child {
  animation: pulse-node 2.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes pulse-node {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

.netmap-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}
.netmap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.netmap-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 4px;
  border-bottom: 1px dashed var(--line);
}
.netmap-list li:last-child { border-bottom: none; }
.netmap-key {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--amber-700);
  text-align: center;
  padding: 6px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}
.netmap-list strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.netmap-list span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}
.netmap-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 24px;
  border-radius: 24px 4px 24px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.netmap-cta-key {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--amber-400);
  line-height: 1;
  flex-shrink: 0;
}
.netmap-cta p {
  margin: 0;
  color: rgba(242, 237, 226, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================================
   CONVEX REDESIGN — blocos do site original
   ============================================ */

/* ---- 4 cards numerados — dentro do hero, colados no rodapé do banner ---- */
.hero-cards {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0;
  background: transparent;
}
.feature-numbers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-num-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 18px 40px rgba(14, 23, 64, 0.22);
  transition: border-color var(--t), transform var(--t), background var(--t);
}
.feature-num-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.40);
  transform: translateY(-4px);
}
.feature-num {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--brand-cyan);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.feature-num-card p {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.feature-num-card p strong {
  font-weight: 600;
  color: var(--white);
}

/* ---- Bloco ciano "Logística Aduaneira" ---- */
.logistic-banner {
  position: relative;
  background: var(--brand-cyan);
  color: var(--white);
  margin-top: 0;
  padding: clamp(130px, 14vw, 180px) 0 clamp(70px, 9vw, 130px);
  overflow: hidden;
}
.logistic-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.8;
}
.logistic-banner-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Layout split: texto à esquerda + 2 feature cards à direita */
.logistic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.logistic-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.logistic-tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.logistic-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw + 1rem, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0;
}
.logistic-title em {
  font-style: italic;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logistic-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
  margin: 4px 0 8px;
}
.logistic-lead strong {
  color: var(--white);
  font-weight: 600;
}

.logistic-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(14, 23, 64, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  margin-top: 8px;
}
.logistic-stamp svg {
  width: 32px; height: 32px;
  color: var(--white);
  flex-shrink: 0;
}
.logistic-stamp strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logistic-stamp span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
  margin-top: 2px;
}

/* Feature cards (lado direito) */
.logistic-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.logistic-feature {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(6px);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.logistic-feature:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
}
.logistic-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 4px;
}
.logistic-feature-icon svg { width: 28px; height: 28px; }
.logistic-feature h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}
.logistic-feature p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* ---- Bloco Equipe ---- */
.team-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.team-block-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team-block-content h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.team-block-title-ital {
  color: var(--brand-cyan);
  font-style: italic;
}
.team-block-content p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 4px 0 14px;
}
.team-block-img {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--brand-blue);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.10);
}
.team-block-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.team-block-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.team-block-img-tag {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 12px;
  background: rgba(15, 23, 41, 0.5);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.team-block-img::after {
  content: '';
  position: absolute;
  inset: auto -14px -14px auto;
  width: 60%;
  height: 60%;
  background-image: repeating-linear-gradient(45deg, var(--brand-red) 0 6px, transparent 6px 14px);
  opacity: 0.85;
  z-index: 0;
  border-radius: 4px;
}

.btn--saber-mais {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--brand-green);
  font-weight: 600;
  padding: 13px 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.btn--saber-mais:hover {
  background: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
  transform: translateY(-1px);
}

/* ---- Contato split (verde/azul) ---- */
.contact-split {
  display: block;
  background: var(--white);
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 520px;
}
.contact-split-left {
  position: relative;
  background: var(--brand-blue);
  color: var(--white);
  overflow: hidden;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 64px);
}
.contact-split-left-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.contact-split-left-bg svg { width: 100%; height: 100%; display: block; }
.contact-split-left-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 460px;
}
.contact-split-eyebrow {
  color: var(--brand-cyan);
  margin-bottom: 0;
}
.contact-split-eyebrow::before { content: ''; }
.contact-split-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.5vw + 1rem, 3.6rem);
  letter-spacing: -0.03em;
  color: var(--brand-cyan);
  font-style: italic;
  margin: -10px 0 18px;
  line-height: 1;
}
.contact-split-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-split-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-split-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}
.contact-split-icon svg { width: 18px; height: 18px; }
.contact-split-info strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-split-info span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--white);
}
.contact-split-info a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.contact-split-info a:hover {
  color: var(--brand-cyan);
  border-bottom-color: var(--brand-cyan);
}

.contact-split-right {
  position: relative;
  background: var(--brand-green);
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 64px);
  overflow: hidden;
}
.contact-split-right-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
}
.contact-split-right-bg svg { width: 100%; height: 100%; display: block; }
.contact-split-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.contact-split-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-split-form .form-group {
  margin: 0;
}
.contact-split-form .form-label {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 4px;
}
.contact-split-input {
  background: transparent;
  color: var(--white);
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  padding: 8px 0 10px;
  font-size: 1rem;
  width: 100%;
  transition: border-color var(--t-fast);
}
.contact-split-input::placeholder { color: rgba(255, 255, 255, 0.55); }
.contact-split-input:hover { border-bottom-color: rgba(255, 255, 255, 0.65); }
.contact-split-input:focus {
  outline: none;
  border-bottom-color: var(--white);
  background: transparent;
}
.contact-split-form textarea.contact-split-input {
  resize: vertical;
  min-height: 80px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.42);
}

.btn-enviar {
  margin-top: 12px;
  align-self: flex-start;
  padding: 14px 36px;
  background: var(--white);
  color: var(--brand-green-2);
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--t), color var(--t), transform var(--t-fast);
}
.btn-enviar:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-enviar:disabled { opacity: 0.7; cursor: wait; }
.contact-split-form .form-feedback {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  display: none;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.contact-split-form .form-feedback.is-success { display: block; }

/* ============================================
   IMPRENSA — cards de notícias (auto Google News)
   ============================================ */
.news { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.news-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.10);
}
.news-card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-indent: -9999px;
  overflow: hidden;
}

.news-card-img {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--cream-2);
  overflow: hidden;
}
.news-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.news-card-img-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 0;
  color: rgba(214, 228, 234, 0.45);
}
.news-card-img-fallback svg { width: 48px; height: 48px; }

.news-card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.news-card-source {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-cyan-2);
  font-weight: 500;
}
.news-card h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.015em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-date {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-top: 1px dashed var(--line);
}

.news-footnote {
  text-align: center;
  margin-top: 32px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.news-footnote em {
  color: var(--brand-cyan-2);
  font-style: normal;
  font-weight: 500;
}

/* Skeleton (loading) */
.news-card--skeleton { pointer-events: none; }
.news-card--skeleton .news-card-img {
  background: linear-gradient(90deg, #E8ECF1 0%, #F2F4F7 50%, #E8ECF1 100%);
  background-size: 200% 100%;
  animation: news-skeleton 1.4s ease-in-out infinite;
}
.news-card--skeleton .news-card-source,
.news-card--skeleton h4,
.news-card--skeleton .news-card-date {
  display: block;
  background: linear-gradient(90deg, #E8ECF1 0%, #F2F4F7 50%, #E8ECF1 100%);
  background-size: 200% 100%;
  animation: news-skeleton 1.4s ease-in-out infinite;
  border-radius: 4px;
  color: transparent;
}
.news-card--skeleton .news-card-source { width: 40%; height: 10px; }
.news-card--skeleton h4 { height: 14px; width: 100%; margin-bottom: 6px; }
.news-card--skeleton h4::after { content: ''; display: block; height: 14px; margin-top: 4px; background: inherit; border-radius: 4px; width: 80%; }
.news-card--skeleton .news-card-date { width: 30%; height: 10px; border: none; }

@keyframes news-skeleton {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.news.is-empty { display: none; }

/* ============================================
   EMPRESA — Value cards (4 valores) + People grid
   ============================================ */
.value-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 14px 32px rgba(15, 182, 228, 0.10);
}
.value-card-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 0.9;
  color: var(--brand-cyan);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.value-card h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.value-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* Foto grande da equipe — destaque no topo da seção Equipe */
.team-hero {
  position: relative;
  margin: 0 0 32px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.10);
  background: var(--brand-blue-3);
}
.team-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 23, 41, 0.60) 100%);
  pointer-events: none;
}
.team-hero figcaption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--white);
}
.team-hero-tag {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.team-hero-meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
}

/* People (equipe) */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.people-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.people-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 14px 32px rgba(15, 23, 41, 0.08);
}
.people-avatar {
  margin: 0;
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 25%, rgba(15, 182, 228, 0.30), transparent 55%),
    linear-gradient(160deg, var(--brand-blue), var(--brand-blue-3));
  color: var(--brand-cyan);
  position: relative;
}
.people-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}
.people-avatar span {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brand-cyan);
  z-index: 1;
  letter-spacing: -0.04em;
}
.people-card--lead .people-avatar { aspect-ratio: 16/12; }
.people-card--lead .people-avatar span { font-size: 6rem; }

/* Variante com foto real */
.people-avatar--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.people-avatar--photo span { display: none; }
.people-avatar--photo::after { z-index: 3; opacity: 0.4; }

.people-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.people-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-cyan-2);
  font-weight: 500;
}
.people-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
}
.people-card--lead h3 { font-size: 1.5rem; }
.people-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 4px 0 0;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 640px) {
  .pillars-list { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .hero.hero--cover { min-height: 95vh; }
  .hero-slide { padding: calc(var(--header-h) + 32px) 0 220px; }
  .hero-cover { max-width: 100%; }
  .hero-controls { bottom: 150px; gap: 12px; }
  .hero-arrow { width: 40px; height: 40px; }
  .logistic-banner { padding-top: clamp(60px, 8vw, 100px); }
  .unit-clocks-grid { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .unit-clock:nth-child(3n) { border-right: none; }
  .unit-clock:nth-child(-n+3) { border-bottom: 1px dashed var(--line); padding-bottom: 14px; }
  .ops-bar { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .ops-bar-cell { padding: 10px 18px; border-right: 1px dashed var(--line); }
  .ops-bar-cell:nth-child(2n) { border-right: none; }
  .ops-bar-cell:nth-child(-n+3) { border-bottom: 1px dashed var(--line); padding-bottom: 18px; }
  .pipeline { grid-template-columns: repeat(2, 1fr); }
  .pipeline-step { border-right: 1px dashed var(--line-soft); border-bottom: 1px dashed var(--line-soft); }
  .pipeline-step:nth-child(2n) { border-right: none; }
  .pipeline-step:nth-last-child(-n+2) { border-bottom: none; }
  .pipeline-step::after { display: none; }
  .netmap { grid-template-columns: 1fr; gap: 24px; }
  .netmap-canvas { min-height: 360px; }
  .pillars-editorial { grid-template-columns: 1fr; gap: 40px; }
  .pillars-aside { position: static; }
  .tm-grid { grid-template-columns: 1fr; }
  .tm-card--feat { grid-row: auto; }
  .tm-card--feat blockquote { font-size: clamp(1.3rem, 1.4vw + 0.8rem, 1.7rem); max-width: none; }
  .feature-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .value-cards { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: 1fr; gap: 18px; }
  .logistic-grid { grid-template-columns: 1fr; gap: 40px; }
  .logistic-features { grid-template-columns: 1fr 1fr; }
  .team-block { grid-template-columns: 1fr; gap: 32px; }
  .team-block-img { aspect-ratio: 16/10; }
  .contact-split-grid { grid-template-columns: 1fr; }
  .contact-split-left, .contact-split-right { padding: clamp(40px, 6vw, 64px); }
  .sectors-strip { grid-template-columns: repeat(2, 1fr); padding: 16px; row-gap: 14px; }
  .sectors-strip-item { padding: 6px 18px; }
  .sectors-strip-item:nth-child(2n) { border-right: none; }
  .sectors-strip-item:nth-child(-n+2) { border-bottom: 1px dashed var(--line); padding-bottom: 14px; }
  .sectors-strip-item strong { font-size: 2rem; }
  .sector-cloud { grid-template-columns: repeat(3, 1fr); }
  .service-cards {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    grid-template-areas:
      "c6 c1"
      "c6 c2"
      "c3 c4"
      "c5 c5";
  }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.is-reversed > :first-child { order: 0; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-actions { justify-content: flex-start; }
  .team { grid-template-columns: repeat(6, 1fr); }
  .team-card--main { grid-column: span 6; }
  .team-card--side { grid-column: span 6; }
  .team-card--small { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .section-head--side { grid-template-columns: 1fr; gap: 12px; }
  .services-layout { grid-template-columns: 1fr; gap: 16px; }
  .service-featured { min-height: auto; padding: 40px 32px; }
  .service-featured h3 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-cta .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 2;
    color: var(--white);
  }
  .nav-toggle span { background: currentColor; }

  /* Quando o menu está aberto, removemos o backdrop-filter do header
     pra liberar o containing block dos descendentes position: fixed.
     Sem isso, .nav-links inset: 0 fica restrito ao tamanho do header. */
  body.nav-open .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    will-change: auto !important;
  }
  body.nav-open .site-header::before { display: none; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #1E2D88 0%, #0E1740 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 24px) 28px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
    z-index: 90;
    overflow-y: auto;
    margin: 0;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; }
  .nav-links li {
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-links a {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-style: normal;
    color: var(--white);
    padding: 22px 4px;
    letter-spacing: -0.01em;
  }
  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--brand-cyan);
  }
  .nav-links a.is-active::after { display: none; }

  .hero-slide {
    padding: calc(var(--header-h) + 56px) 0 200px;
    align-items: flex-start;
  }
  .hero-slide-photo { object-position: 50% 100%; }
  .hero-mark { font-size: 0.66rem; padding: 6px 12px; margin-bottom: 24px; }
  .hero-cover { text-align: center; margin-inline: auto; }
  .hero-cover-title { text-align: center; }
  .hero-cover-lead { margin: 0 auto 32px; text-align: center; }
  .hero-actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 14px;
    white-space: nowrap;
    font-size: 0.95rem;
  }
  .hero-controls { bottom: 200px; gap: 8px; }

  /* ==========================================================
     HERO + CARDS no mobile — banner pinned + cards deck stack
     - Hero é ALTO (250vh) pra dar runway de scroll
     - hero-slides sticky no topo (banner stays)
     - hero-cards sticky no rodapé do viewport (container fixo)
     - Cards são absolute na MESMA posição (deck), JS anima translateY
     ========================================================== */
  .hero.hero--cover {
    overflow: visible;
    isolation: isolate;
    min-height: 280vh; /* runway pra todo o stacking + folga */
  }
  .hero-slides {
    position: sticky;
    top: 0;
    height: 100vh;
  }
  .hero-cards {
    position: fixed;
    bottom: 80px;
    left: 16px;
    right: 16px;
    top: auto;
    z-index: 80; /* acima do logistic-banner */
    margin: 0;
    padding: 0;
    height: 110px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(.2,.7,.3,1), opacity 0.25s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
  }
  /* Exit animado nativamente via CSS transition — sem JS durante scroll,
     evita o lag de momentum scroll no iOS Safari. */
  .hero-cards.is-exit {
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
  }
  .hero-cards.is-out {
    opacity: 0;
    pointer-events: none;
  }
  .hero-cards .container { position: relative; height: 100%; padding: 0; max-width: none; margin: 0; }
  .feature-numbers-grid {
    position: relative;
    display: block;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .feature-num-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: rgba(15, 23, 41, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(15, 182, 228, 0.45);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25),
      0 10px 24px -4px rgba(14, 23, 64, 0.55);
    will-change: transform;
    /* JS controla translateY conforme scroll progress */
  }
  .feature-num-card:nth-child(1) { z-index: 1; transform: translateY(0); }
  .feature-num-card:nth-child(2) { z-index: 2; transform: translateY(120vh); }
  .feature-num-card:nth-child(3) { z-index: 3; transform: translateY(120vh); }
  .feature-num-card:nth-child(4) { z-index: 4; transform: translateY(120vh); }
  .feature-num-card:hover { transform: none; }

  .logistic-banner { margin-top: 0; padding-top: clamp(40px, 6vw, 64px); }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow svg { width: 16px; height: 16px; }
  .hero-dots { padding: 6px 10px; gap: 2px; }
  .hero-dot { padding: 6px 8px; font-size: 0.65rem; }
  .hero-dot.is-active .hero-dot-track { width: 28px; }
  .unit-clocks-grid { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .unit-clock { padding: 8px 14px; }
  .unit-clock::before { left: 14px; }
  .unit-clock:nth-child(2n) { border-right: none; }
  .unit-clock:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 8px; }
  .unit-clock:not(:nth-last-child(-n+2)) { border-bottom: 1px dashed var(--line); padding-bottom: 14px; }
  .notice-strip-inner { gap: 12px; }
  .notice-strip-inner p { font-size: 0.85rem; }

  .form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .service-row { grid-template-columns: 50px 1fr auto; gap: 16px; padding: 22px 8px; }
  .service-row:hover { padding-left: 16px; }
  .service-row-body h4 { font-size: 1.3rem; }

  .service-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
    grid-template-areas:
      "c6"
      "c1"
      "c2"
      "c3"
      "c4"
      "c5";
    gap: 10px;
  }
  .service-card-icon { width: 64px; height: 64px; }
  .service-card-icon--multi { width: 140px; }

  .feature-numbers-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-num-card { padding: 16px 18px; gap: 14px; }
  .feature-num { font-size: 2.4rem; }
  .feature-num-card p { font-size: 0.9rem; }
  .news-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-cards { grid-template-columns: 1fr; gap: 12px; }
  .value-card { padding: 22px; }
  .value-card-num { font-size: 2rem; }
  .service-detail--feat { padding: 28px; gap: 28px; }
  .team-hero { aspect-ratio: 4 / 3; margin-bottom: 22px; }
  .team-hero figcaption { bottom: 14px; left: 16px; gap: 10px; flex-direction: column; align-items: flex-start; }
  .team-hero-tag { font-size: 1.1rem; }

  .logistic-banner { padding: 56px 0 64px; }
  .logistic-grid { gap: 32px; }
  .logistic-features { grid-template-columns: 1fr; gap: 12px; }
  .logistic-feature { padding: 20px; }
  .logistic-stamp { padding: 14px 16px; gap: 12px; }
  .logistic-stamp svg { width: 28px; height: 28px; }

  .sector-cloud { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sector-chip figcaption { font-size: 0.85rem; bottom: 10px; left: 10px; right: 10px; }
  .sector-chip--cta { padding: 14px; }
  .sectors-strip-item strong { font-size: 1.7rem; }
  .sectors-strip-item { padding: 6px 14px; }

  .contact-split-form .form-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-split-title { font-size: 2rem; }

  .ops-bar { grid-template-columns: 1fr; row-gap: 14px; }
  .ops-bar-cell { border-right: none !important; border-bottom: 1px dashed var(--line); padding: 12px 6px; }
  .ops-bar-cell:last-child { border-bottom: none; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline-step { border-right: none; border-bottom: 1px dashed var(--line-soft); padding: 24px 22px; }
  .pipeline-step:last-child { border-bottom: none; }
  .log-stream li { grid-template-columns: 70px 70px 1fr; gap: 10px; font-size: 0.78rem; }
  .log-frame-head, .log-frame-foot { padding: 14px 18px; font-size: 0.68rem; }
  .log-viewport { height: 280px; }
  .hero-console { padding: 18px 18px 16px; min-height: auto; }
  .hc-stamp { width: 70px; height: 70px; font-size: 0.78rem; }
  .netmap-cta { flex-direction: column; align-items: flex-start; text-align: left; gap: 10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .section-head { margin-bottom: 40px; }
  .whatsapp-fab { right: 16px; bottom: 16px; }
  .hero-title { font-size: 3rem; }
}
