/* ============================================================
   BRAZILIAN BEEF â€” ESTILOS UNIFICADOS DO SITE
   ============================================================ */

/* ══════════════════════════════════════════════════════════════════════
   PAINEL-RECUO — Colored rectangle offset behind images (site-wide)
   ══════════════════════════════════════════════════════════════════════
   Default (22px, commitment-style): no inner div needed
     <div class=”painel-recuo painel-recuo--verde”> <img/> </div>

   Editorial (large, image grids):
     <div class=”painel-recuo painel-recuo--verde painel-recuo--editorial painel-recuo--bottom-left”>
       <div class=”painel-recuo__panel”> painel-recuo__num opcional </div>
       <img />
     </div>

   Cores:    --verde  --detalhes  --ponto-carne
   Posição:  --top-right  --top-left  --bottom-right  --bottom-left
   ══════════════════════════════════════════════════════════════════════ */

.painel-recuo {
  position: relative;
  display: block;
  padding-right: 22px;
  padding-bottom: 22px;
  background: var(--recuo-color, var(--boi-verde));
}

.painel-recuo--verde       { --recuo-color: var(--boi-verde); }
.painel-recuo--detalhes    { --recuo-color: var(--detalhes); }
.painel-recuo--ponto-carne { --recuo-color: var(--ponto-carne); }

.painel-recuo > *:not(.painel-recuo__panel) {
  position: relative;
  z-index: 1;
  display: block;
}

/* Variant editorial: painel grande via div interno */
.painel-recuo--editorial { padding: 0; background: transparent; }

.painel-recuo__panel {
  position: absolute;
  z-index: 0;
  background: var(--recuo-color, var(--boi-verde));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Posições do painel editorial */
.painel-recuo--top-right    .painel-recuo__panel { top: -10%;    right: -10%;  width: 85%; height: 85%; }
.painel-recuo--top-left     .painel-recuo__panel { top: -10%;    left: -10%;   width: 85%; height: 85%; }
.painel-recuo--bottom-right .painel-recuo__panel { bottom: -10%; right: -10%;  width: 75%; height: 75%; }
.painel-recuo--bottom-left  .painel-recuo__panel { bottom: -10%; left: -10%;   width: 75%; height: 75%; }

/* Custom panel override for the paradox banner */
.painel-recuo--banner-paradox .painel-recuo__panel {
  bottom: -40px !important;
  right: -42px !important;
  width: 66.3% !important;
  height: 75% !important;
}

/* Número/símbolo watermark dentro do painel */
.painel-recuo__num {
  display: none !important;
}

/* Imagem editorial — estilo base */
.editorial-img {
  position: relative;
  z-index: 2;
  width: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  border: none !important;
}

/* ============================================================
   GLOBAL ANIMATION SYSTEM (revelação, split-text, contador)
   Aplicado em todas as páginas, em qualquer viewport.
   Os blocos duplicados mais abaixo (em @media) ficam como
   fallback legado — a cascata CSS garante que estas regras
   ganham quando as condições não casam.
   ============================================================ */

/* ---- 1. Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-reveal, 800ms cubic-bezier(0.16, 1, 0.3, 1)),
              transform var(--motion-reveal, 800ms cubic-bezier(0.16, 1, 0.3, 1));
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- 2. Split text reveal (palavra por palavra) ---- */
/* Mantém display:block (default) — as word-spans internas já são inline-block
   via .word-span abaixo, então o texto flui normalmente sem quebrar
   alinhamento em containers flex ou elementos com max-width. */
.word-span {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.05em;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.word-inner.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* ---- 3. Counter (sem estilo próprio — JS anima o innerHTML) ---- */

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .word-inner { transform: translateY(0); opacity: 1; }
}

/* === ESTILOS HOME (index) === */
/* ============ DESIGN TOKENS (Brazilian Beef v1.2) ============ */
  :root {
    --bg: #F7F0DE;
    --surface: #FFF8E8;
    --boi-verde: #155125;
    --boi-verde-deep: #0A3215;
    --ponto-carne: #4D0500;
    --ponto-deep: #2E0300;
    --detalhes: #FE6100;
    --cta-dark: #C94700;
    --text-on-dark: #F4E8CC;
    --cream: #E8D9B0;

    --border-soft-dark: rgba(244, 232, 204, 0.14);
    --border-medium-dark: rgba(244, 232, 204, 0.28);
    --border-soft-light: rgba(21, 81, 37, 0.16);

    --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
    --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
    --space-9: 96px; --space-10: 128px;

    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;

    --motion-hover: 250ms cubic-bezier(0.25, 1, 0.5, 1);
    --motion-reveal: 800ms cubic-bezier(0.16, 1, 0.3, 1);
    --motion-slow: 1000ms cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-md: 0 6px 14px rgba(77, 5, 0, 0.10);
    --shadow-lg: 0 12px 28px rgba(77, 5, 0, 0.12);
  }

  /* ============ RESET ============ */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--boi-verde);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  body { line-height: 1.5; }
  ::selection { background: var(--detalhes); color: #000; }
  img, svg { display: block; max-width: 100%; }
  button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
  a { color: inherit; text-decoration: none; }

  /* ============ CUSTOM CURSOR (Awwwards Style) ============ */
  .custom-cursor {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
  }
  .custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: none;
  }
  @media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot { display: block; }
    html, body, a, button, select, textarea, input, [style*="cursor"] { cursor: none; }
    .hover-target, .hover-target-card, .report-card, .raw-module, .std-card, .infra-card, .number-cell, .bb-btn, .bb-card, .demo-btn, .demo-card-lift, .demo-reveal-trigger, .motion-play { cursor: none; }
  }
  .custom-cursor.hovered {
    width: 56px;
    height: 56px;
    background-color: rgba(254, 97, 0, 0.12);
    border-color: var(--detalhes);
  }
  .custom-cursor.hovered-card {
    width: 80px;
    height: 80px;
    border-color: rgba(254, 97, 0, 0.5);
    background-color: transparent;
  }

  /* ============ TYPOGRAPHY ============ */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
  }
  .display, h1.display {
    font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 0.92;
    text-transform: uppercase;
  }
  .h-mono {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
  }
  .h-mono::before {
    content: "—";
    margin-right: 8px;
  }

  /* ============ CONTAINER ============ */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  @media (min-width: 640px)  { .container { padding: 0 var(--space-7); } }
  @media (min-width: 1024px) { .container { padding: 0 var(--space-8); } }
  @media (min-width: 1440px) { .container { padding: 0 var(--space-9); } }

  /* ============ HEADER ============ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: var(--space-4) 0;
    transition: background var(--motion-hover), padding var(--motion-hover), border-color var(--motion-hover);
    background: transparent;
    border-bottom: 1px solid transparent;
  }
  body.page-home .header.is-scrolled {
    background: rgba(10, 50, 21, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border-soft-dark);
    padding: var(--space-3) 0;
  }
  .header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-7);
  }
  .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .brand .brand-logo {
    height: 60px;
    width: auto;
    display: block;
    transition: height var(--motion-hover);
  }
  .header.is-scrolled .brand .brand-logo {
    height: 36px;
  }
  .nav {
    display: none;
    flex: 1;
    gap: var(--space-6);
    align-items: center;
  }
  @media (min-width: 1024px) { .nav { display: flex; } }
  .nav a {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.78;
    transition: opacity var(--motion-hover), color var(--motion-hover);
    position: relative;
    padding: var(--space-2) 0;
  }
  .nav a:hover {
    opacity: 1;
    color: var(--detalhes);
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--detalhes);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--motion-hover);
  }
  .nav a:hover::after { transform: scaleX(1); }

  .lang {
    margin-left: auto;
    display: flex;
    gap: var(--space-1);
    align-items: center;
    border: 1px solid var(--border-soft-dark);
    border-radius: 4px;
    padding: 2px;
  }
  .lang button {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-on-dark);
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.55;
    border-radius: 3px;
    transition: var(--motion-hover);
  }
  .lang button.active {
    opacity: 1;
    background: var(--detalhes);
    color: #000;
  }
  .lang button:hover:not(.active) { opacity: 1; }

  .menu-toggle {
    display: flex; align-items: center; justify-content: center;
    margin-left: auto;
    width: 40px; height: 40px;
    color: var(--text-on-dark);
  }
  @media (min-width: 1024px) { .menu-toggle { display: none; } }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    min-height: 100vh;
    color: var(--text-on-dark);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--space-10) 0 var(--space-8);
  }
  .hero-bg {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .hero-bg .hero-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) saturate(1.05);
    animation: heroZoom 18s ease-out forwards;
  }
  @keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1.18); }
  }
  .hero-bg::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(10, 50, 21, 0.42) 0%, rgba(31, 17, 8, 0.72) 55%, rgba(10, 50, 21, 0.95) 100%),
      radial-gradient(ellipse at 25% 75%, rgba(254, 97, 0, 0.18), transparent 55%);
    pointer-events: none;
  }
  .hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.6) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(44px, 5.5vw, 80px);
    margin-bottom: var(--space-6);
    text-wrap: balance;
  }
  .hero h1 .accent { color: var(--detalhes); }
  .hero-sub {
    font-size: clamp(16px, 1.4vw, 22px);
    max-width: 720px;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: var(--space-7);
    text-wrap: pretty;
  }
  .hero-meta {
    display: flex;
    gap: var(--space-7);
    margin-bottom: var(--space-7);
    flex-wrap: wrap;
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft-dark);
  }
  .hero-meta div {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
  }
  .hero-meta div b {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text-on-dark);
    text-transform: none;
    letter-spacing: -0.01em;
    margin-top: var(--space-1);
    opacity: 1;  text-transform: uppercase;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--detalhes);
    color: #000;
    height: 56px;
    padding: 0 var(--space-6);
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    transition: var(--motion-hover);
  }
  .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  .hero-cta .arrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 18px;
  }
  .hero-scroll {
      transform-style: preserve-3d;
  perspective: 1000px;
    will-change: transform, opacity;
    position: absolute;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    opacity: 0.6;
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  .hero-scroll .line {
    will-change: transform, opacity;
    display: block;
    width: 1px; height: 32px;
    background: var(--cream);
    margin: var(--space-2) auto 0;
  }
  @keyframes scroll-pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
    50%      { opacity: 0.9; transform: translate(-50%, 4px); }
  }

  /* ============ SECTION 01 — NUMBERS ============ */
  .numbers {
    background: var(--boi-verde);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }
  .numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      rgba(244, 232, 204, 0.025) 0,
      rgba(244, 232, 204, 0.025) 1px,
      transparent 1px,
      transparent 80px
    );
    pointer-events: none;
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-9);
    align-items: end;
  }
  @media (min-width: 900px) {
    .section-head { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
    /* Layout pedido: eyebrow + H2 à esquerda (col 1), lead à direita (col 2). */
    .section-head .eyebrow { grid-column: 1; grid-row: 1; }
    .section-head h2      { grid-column: 1; grid-row: 2; }
    .section-head .lead   { grid-column: 2; grid-row: 1 / span 2; align-self: end; }
  }
  .section-head .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    display: flex; align-items: center; gap: var(--space-3);
  }
  .section-head .eyebrow::before {
    content: "";
    width: 32px; height: 1px;
    background: var(--detalhes);
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.8vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin-top: var(--space-4);
    text-wrap: balance;  text-transform: uppercase;
  }
  .section-head .lead {
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.55;
    opacity: 0.85;
    max-width: 56ch;
  }

  .number-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--border-soft-dark);
    border-top: 1px solid var(--border-soft-dark);
    border-bottom: 1px solid var(--border-soft-dark);
  }
  @media (min-width: 900px) { .number-grid { grid-template-columns: repeat(3, 1fr); } }

  .number-cell {
    background: var(--boi-verde);
    padding: var(--space-8) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    position: relative;
    transition: background var(--motion-hover);
  }
  .number-cell:hover { background: #18632C; }
  .number-cell .label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.7;
  }
  .number-cell .value {
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 84px);
    color: var(--detalhes);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.03em;  text-transform: uppercase;
  }
  .number-cell .value sup {
    font-size: 0.45em;
    margin-right: 4px;
    vertical-align: 0.6em;
    color: var(--text-on-dark);
    opacity: 0.6;
  }
  .number-cell .value sub {
    font-size: 0.32em;
    vertical-align: 0.7em;
    margin-left: 4px;
    color: var(--text-on-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: 500;
  }
  .number-cell .caption {
    font-size: 14px;
    line-height: 1.45;
    color: var(--cream);
    max-width: 32ch;
  }
  .number-cell .idx {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    font-family: var(--font-mono);
    font-size: 11px;
    opacity: 0.4;
  }

  .numbers-foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-8);
    align-items: center;
  }
  @media (min-width: 900px) { .numbers-foot { grid-template-columns: 1fr auto; gap: var(--space-8); } }
  .numbers-foot p {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.15;
    text-transform: none;
    letter-spacing: -0.01em;
    text-wrap: balance;  text-transform: uppercase;
  }
  .numbers-foot p span { color: var(--detalhes); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-on-dark);
    border: 1.5px solid var(--text-on-dark);
    height: 56px;
    padding: 0 var(--space-6);
    border-radius: 8px;
    transition: var(--motion-hover);
    white-space: nowrap;
  }
  .btn-outline:hover {
    background: var(--detalhes);
    color: #000;
    border-color: var(--detalhes);
  }
  .btn-outline .arrow { font-family: var(--font-mono); font-size: 18px; }

  /* ============ SECTION 02 — RAW AUTHENTICITY (BENTO GRID OVERHAUL) ============ */
  .raw {
    background: var(--ponto-carne);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .bento-card {
    background: var(--ponto-deep);
    border: 1px solid var(--border-soft-dark);
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--motion-hover), border-color var(--motion-hover), box-shadow var(--motion-hover);
  }

  .bento-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-medium-dark);
    box-shadow: var(--shadow-lg);
  }

  .bento-card--header {
    background: transparent;
    border: none;
    padding: 0;
  }
  .bento-card--header:hover {
    transform: none;
    box-shadow: none;
  }

  .bento-card--header h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.5vw, 68px);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    font-weight: 800; /* Bold style */
  }

  .bento-card--header h2 .accent {
    color: var(--detalhes);
  }

  .bento-card--header .lead-text {
    font-size: 17px;
    color: var(--cream);
    line-height: 1.55;
    max-width: 52ch;
  }

  .bento-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    display: block;
  }

  .bento-stat-val {
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 0.95;
    color: var(--text-on-dark);
    margin-bottom: var(--space-1);
    letter-spacing: -0.03em;
  }

  .bento-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
  }

  .bento-card h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800; /* Bold style */
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: var(--space-2);
    color: var(--text-on-dark);
  }

  .bento-card p {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.5;
    margin-bottom: var(--space-4);
  }

  .bento-specs {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--detalhes);
    border-top: 1px solid var(--border-soft-dark);
    padding-top: var(--space-3);
    margin-top: auto;
  }

  .bento-card--green {
    background: var(--boi-verde-deep);
    border-color: rgba(21, 81, 37, 0.3);
  }
  .bento-card--green:hover {
    border-color: var(--boi-verde);
  }

  .bento-card--image {
    padding: 0;
    aspect-ratio: 4 / 3;
  }
  .bento-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--motion-hover), filter var(--motion-hover);
    filter: saturate(0.9) contrast(1.05);
  }
  .bento-card--image:hover img {
    transform: scale(1.04);
    filter: saturate(1.05) contrast(1.1);
  }
  .bento-card--image .placeholder-tag {
    position: absolute;
    bottom: var(--space-3);
    left: var(--space-3);
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-on-dark);
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
  }

  .bento-wide-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    height: 100%;
    justify-content: space-between;
  }

  .bento-wide-meta {
    display: flex;
    gap: var(--space-6);
    border-top: 1px solid var(--border-soft-dark);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
  }

  .wide-stat {
    display: flex;
    flex-direction: column;
  }
  .wide-stat .num {
    font-family: var(--font-display);
    font-weight: 800; /* Bold style */
    font-size: clamp(36px, 4vw, 52px);
    color: var(--detalhes);
    line-height: 1;
  }
  .wide-stat .lbl {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    opacity: 0.8;
  }

  @media (min-width: 1024px) {
    .bento-grid {
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: auto;
      gap: var(--space-5);
    }

    /* Row 1: Header spans full width */
    .bento-card--header {
      grid-column: span 12;
      justify-content: center;
      margin-bottom: var(--space-4);
    }

    /* Row 2: Image 1 & Stat A (Green) */
    .bento-card--image-1 {
      grid-column: span 4;
      aspect-ratio: 1 / 1;
    }
    .bento-card--green {
      grid-column: span 8;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-8);
    }
    .bento-card--green .bento-stat-showcase {
      flex: 0.8;
    }
    .bento-card--green .bento-stat-details {
      flex: 1.2;
    }

    /* Row 3: Stat B (Dark) & Image 2 */
    .bento-card--dark {
      grid-column: span 8;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-8);
    }
    .bento-card--dark .bento-stat-showcase {
      flex: 0.8;
    }
    .bento-card--dark .bento-stat-details {
      flex: 1.2;
    }
    .bento-card--image-2 {
      grid-column: span 4;
      aspect-ratio: 1 / 1;
    }

    /* Row 4: Image 3 & Stat C (Wide) */
    .bento-card--image-3 {
      grid-column: span 4;
      aspect-ratio: 1 / 1;
    }
    .bento-card--wide {
      grid-column: span 8;
    }
    .bento-wide-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: var(--space-8);
      width: 100%;
      height: 100%;
    }
    .bento-wide-content .bento-stat-details {
      flex: 1.2;
    }
    .bento-wide-meta {
      flex: 0.8;
      border-top: none;
      border-left: 1px solid var(--border-soft-dark);
      padding-top: 0;
      padding-left: var(--space-6);
      margin-top: 0;
      justify-content: space-around;
    }
  }
  .raw-module:hover .body .specs {
    opacity: 1;
    max-height: 60px;
  }

  /* ============ SECTION 03 — PARADOX ============ */
  .paradox {
    background: var(--surface);
    color: var(--boi-verde);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }
  .paradox .section-head h2 { color: var(--boi-verde); }
  .paradox .section-head h2 .accent { color: var(--detalhes); }
  .paradox .section-head .eyebrow { color: var(--ponto-carne); }
  .paradox .section-head .eyebrow::before { background: var(--ponto-carne); }
  .paradox .section-head .lead { color: var(--ponto-carne); opacity: 1; }

  /* Paradox Chart CSS moved to component */

  .paradox-foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-7);
    align-items: end;
  }
  @media (min-width: 900px) { .paradox-foot { grid-template-columns: 1fr auto; gap: var(--space-8); } }
  .paradox-foot p {
    font-family: var(--font-display);
    font-size: clamp(20px, 1.6vw, 26px);
    line-height: 1.2;
    text-wrap: balance;  text-transform: uppercase;
  }
  .paradox-foot p .accent { color: var(--detalhes); }

  .paradox-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-5);
  }
  .paradox-tag {
    display: inline-flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border: 1px solid var(--boi-verde);
    color: var(--boi-verde);
    border-radius: 4px;
  }
  .paradox-tag::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--detalhes);
    border-radius: 50%;
  }

  /* ============ SECTION 04 — STANDARD ============ */
  .standard {
    background: var(--bg);
    color: var(--boi-verde);
    padding: var(--space-10) 0;
  }
  .standard .section-head h2 { color: var(--boi-verde); }
  .standard .section-head h2 .accent { color: var(--detalhes); }
  .standard .section-head .eyebrow { color: var(--ponto-carne); }
  .standard .section-head .eyebrow::before { background: var(--ponto-carne); }
  .standard .section-head .lead { color: var(--ponto-carne); opacity: 1; }

  .standard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
  @media (min-width: 700px)  { .standard-grid { grid-template-columns: 1fr 1fr; } }
  @media (min-width: 1024px) { .standard-grid { grid-template-columns: repeat(4, 1fr); } }

  .std-card {
    background: var(--surface);
    border: 1px solid var(--border-soft-light);
    border-radius: 0;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    min-height: 320px;
    transition: var(--motion-hover);
  }
  .std-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
  }
  .std-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .std-card.feature {
    background: var(--ponto-carne);
    color: var(--text-on-dark);
    border: 0;
    min-height: 360px;
    overflow: hidden;
    position: relative;
  }
  .std-card.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 70% 30%, rgba(254, 97, 0, 0.18), transparent 55%),
      repeating-linear-gradient(
        20deg,
        rgba(244, 232, 204, 0.025) 0,
        rgba(244, 232, 204, 0.025) 14px,
        transparent 14px,
        transparent 28px
      );
    pointer-events: none;
    z-index: 1;
  }
  .std-card.feature > * { position: relative; z-index: 2; }

  .std-card .num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--detalhes);
    letter-spacing: 0.04em;  text-transform: uppercase;
  }
  .std-card h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-top: auto;  text-transform: uppercase;
  }
  .std-card p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ponto-carne);
    margin-top: var(--space-2);
  }
  .std-card.feature p { color: var(--cream); }
  .std-card .badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    background: rgba(21, 81, 37, 0.08);
    color: var(--boi-verde);
    border-radius: 4px;
  }
  .std-card.feature .badge {
    background: var(--detalhes);
    color: #000;
  }
  .std-card .footnote {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ponto-carne);
    opacity: 0.6;
    margin-top: var(--space-4);
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-soft-light);
  }
  .std-card.feature .footnote {
    color: var(--cream);
    opacity: 0.7;
    border-top-color: var(--border-soft-dark);
  }

  /* ============ SECTION 05 — INTELLIGENCE & FOOTPRINT ============ */
  .footprint {
    background: var(--boi-verde-deep);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }
  .footprint .section-head h2 { color: var(--text-on-dark); }
  .footprint .section-head h2 .accent { color: var(--detalhes); }

  .footprint-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  @media (min-width: 900px) {
    .footprint-grid {
      grid-template-columns: 5fr 7fr;
      gap: var(--space-8);
      align-items: start;
    }
  }

  .reports {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
  }
  .report-card {
    background: rgba(244, 232, 204, 0.04);
    border: 1px solid var(--border-soft-dark);
    border-radius: 12px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    transition: var(--motion-hover);
    cursor: pointer;
  }
  .report-card:hover {
    background: rgba(244, 232, 204, 0.08);
    border-color: var(--detalhes);
    transform: translateY(-2px);
  }
  .report-card .meta {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.7;
  }
  .report-card .meta .file {
    color: var(--detalhes);
    opacity: 1;
  }
  .report-card h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-wrap: balance;  text-transform: uppercase;
  }
  .report-card .desc {
    font-size: 14px;
    color: var(--cream);
    opacity: 0.8;
    line-height: 1.5;
  }
  .report-card .cta-row {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft-dark);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Globe / Map */
  .globe-wrap {
    background: rgba(244, 232, 204, 0.03);
    border: 1px solid var(--border-soft-dark);
    border-radius: 12px;
    padding: var(--space-6);
    position: relative;
    overflow: hidden;
  }
  .globe-meta {
    display: flex; justify-content: space-between;
    margin-bottom: var(--space-5);
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .globe-meta .label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--detalhes);
  }
  .globe-meta .stat {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--text-on-dark);  text-transform: uppercase;
  }
  .globe-viz {
    aspect-ratio: 784 / 458;
    position: relative;
    margin-bottom: var(--space-5);
    background: rgba(244, 232, 204, 0.025);
    border-radius: 6px;
    overflow: hidden;
  }
  .globe-viz svg { width: 100%; height: 100%; display: block; }

  /* Illustrative Map styling (Home Page, Section 6) */
  .illustrative-map {
    background: transparent !important;
  }
  .illustrative-map #worldMapSVG {
    pointer-events: none !important;
  }
  .illustrative-map #worldMapSVG path:not(.arc-line) {
    fill: rgba(244, 232, 204, 0.05) !important;
    stroke: rgba(244, 232, 204, 0.12) !important;
    stroke-width: 0.65 !important;
    opacity: 1 !important;
    transition: none !important;
  }
  /* Highlight Brazil path a bit more */
  .illustrative-map #worldMapSVG #br,
  .illustrative-map #worldMapSVG g#br path {
    fill: rgba(244, 232, 204, 0.14) !important;
    stroke: rgba(254, 97, 0, 0.4) !important;
    stroke-width: 0.8 !important;
  }

  /* Show the connections only on the illustrative map */
  .illustrative-map .illustrative-arcs {
    display: block !important;
  }
  
  /* Arc line style and animation */
  .illustrative-map .illustrative-arcs .arc-line {
    fill: none !important;
    stroke: var(--detalhes) !important; /* orange */
    stroke-width: 1.2 !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.7;
    animation: drawArc 4s cubic-bezier(.4, 0, .2, 1) forwards infinite;
  }

  /* Stagger connection line animations */
  .illustrative-map .illustrative-arcs .arc-line:nth-child(1) { animation-delay: 0.0s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(2) { animation-delay: 0.3s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(3) { animation-delay: 0.6s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(4) { animation-delay: 0.9s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(5) { animation-delay: 1.2s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(6) { animation-delay: 1.5s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(7) { animation-delay: 1.8s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(8) { animation-delay: 2.1s; }

  @keyframes drawArc {
    0% {
      stroke-dashoffset: 1000;
      opacity: 0;
    }
    10% {
      opacity: 0.8;
    }
    70%, 100% {
      stroke-dashoffset: 0;
      opacity: 0.15;
    }
  }

  /* Origin dots */
  .illustrative-map .illustrative-arcs .origin-dot {
    fill: var(--detalhes);
  }
  .illustrative-map .illustrative-arcs .origin-pulse {
    fill: none;
    stroke: var(--detalhes);
    stroke-width: 1;
    transform-origin: 286px 580px;
    animation: mapPulse 2.5s ease-out infinite;
  }

  /* Destination dots */
  .illustrative-map .illustrative-arcs .dest-dot {
    fill: var(--detalhes);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    animation: fadeInDest 4s ease-out infinite;
  }
  
  .illustrative-map .illustrative-arcs .arc-line:nth-child(1) ~ .dest-dot:nth-of-type(1) { animation-delay: 0.8s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(2) ~ .dest-dot:nth-of-type(2) { animation-delay: 1.1s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(3) ~ .dest-dot:nth-of-type(3) { animation-delay: 1.4s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(4) ~ .dest-dot:nth-of-type(4) { animation-delay: 1.7s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(5) ~ .dest-dot:nth-of-type(5) { animation-delay: 2.0s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(6) ~ .dest-dot:nth-of-type(6) { animation-delay: 2.3s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(7) ~ .dest-dot:nth-of-type(7) { animation-delay: 2.6s; }
  .illustrative-map .illustrative-arcs .arc-line:nth-child(8) ~ .dest-dot:nth-of-type(8) { animation-delay: 2.9s; }

  @keyframes fadeInDest {
    0%, 25% { opacity: 0; transform: scale(0.5); }
    30%, 80% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(0.8); }
  }

  @keyframes mapPulse {
    0%   { opacity: 0.8; transform: scale(0.4); }
    100% { opacity: 0;   transform: scale(2.5); }
  }
  .globe-viz .grid-line {
    stroke: rgba(244, 232, 204, 0.06);
    stroke-width: 0.4;
    fill: none;
  }
  .globe-viz .equator {
    stroke: rgba(254, 97, 0, 0.18);
    stroke-width: 0.6;
    stroke-dasharray: 2 3;
    fill: none;
  }
  .globe-viz .dot {
    fill: var(--cream);
    opacity: 0.42;
  }
  .globe-viz .dot.active {
    fill: var(--detalhes);
    opacity: 0.95;
  }
  .globe-viz .dot.hub {
    fill: var(--text-on-dark);
    opacity: 1;
  }
  .globe-viz .pulse {
    fill: none;
    stroke: var(--detalhes);
    stroke-width: 0.5;
    opacity: 0;
    transform-origin: center;
    animation: pulse 3s ease-out infinite;
  }
  .globe-viz .conn {
    stroke: rgba(254, 97, 0, 0.28);
    stroke-width: 0.6;
    fill: none;
    stroke-dasharray: 2 2;
  }
  .globe-viz .region-label {
    font-family: var(--font-mono);
    font-size: 6px;
    fill: var(--cream);
    opacity: 0.45;
    text-transform: uppercase;
    letter-spacing: 0.2em;
  }
  .globe-viz .hub-label {
    font-family: var(--font-display);
    font-size: 7px;
    fill: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  @keyframes pulse {
    0%   { opacity: 0.7; transform: scale(0.5); }
    100% { opacity: 0;   transform: scale(3); }
  }

  .globe-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-soft-dark);
    border: 1px solid var(--border-soft-dark);
    border-radius: 8px;
    overflow: hidden;
  }
  .globe-stats > div {
    background: var(--boi-verde-deep);
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }
  .globe-stats .v {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 32px);
    line-height: 1;
    color: var(--detalhes);
    letter-spacing: -0.02em;  text-transform: uppercase;
  }
  .globe-stats .l {
    font-family: var(--font-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.8;
  }

  .offices {
    display: flex;
    gap: var(--space-2) var(--space-5);
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft-dark);
    flex-wrap: wrap;
  }
  .office {
    display: flex; align-items: center; gap: var(--space-2);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
  }
  .office::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--detalhes);
    border-radius: 50%;
  }

  /* ============ TRANSITION STRIPS ============ */
  .transition {
    position: relative;
    width: 100%;
    height: 56vh;
    min-height: 360px;
    max-height: 560px;
    overflow: hidden;
    background: #1F1108;
  }
  .transition img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
  }
  .transition::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.75) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 60%);
  }
  .transition .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: var(--space-8);
    padding-top: var(--space-8);
    color: var(--text-on-dark);
  }
  .transition .quote {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.025em;
    max-width: 22ch;
    text-wrap: balance;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  }
  .transition .quote .accent { color: var(--detalhes); }
  .transition .credit {
    margin-top: var(--space-4);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cream);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .transition .credit::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--detalhes);
  }

  /* ============ PARADOX FOREST BANNER ============ */
  .paradox-banner {
    margin-top: var(--space-8);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 7;
    background: var(--boi-verde);
    box-shadow: var(--shadow-md);
  }
  .paradox-banner img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .paradox-banner::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, rgba(10,50,21,0.55) 0%, rgba(10,50,21,0.15) 60%, transparent 90%);
    z-index: 1;
  }
  .paradox-banner .banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-7);
    color: var(--text-on-dark);
    max-width: 60%;
    z-index: 2;
  }
  .paradox-banner .banner-text .stat {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 104px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--detalhes);  text-transform: uppercase;
  }
  .paradox-banner .banner-text .stat sub {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.24em;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: var(--space-3);
    vertical-align: 0.35em;
    font-weight: 700;
  }
  .paradox-banner .banner-text p {
    font-family: var(--font-display);
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.2;
    margin-top: var(--space-3);
    text-wrap: balance;
    text-transform: none;
    letter-spacing: -0.01em;  text-transform: uppercase;
  }
  .paradox-banner .credit-tag {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
    z-index: 2;
  }

  /* ============ STANDARD FEATURE CARD BG ============ */
  .std-card.feature.has-image::before {
    background:
      linear-gradient(180deg, rgba(77, 5, 0, 0.58) 0%, rgba(77, 5, 0, 0.78) 55%, rgba(46, 3, 0, 0.92) 100%),
      radial-gradient(ellipse at 70% 20%, rgba(254, 97, 0, 0.18), transparent 55%);
  }
  .std-card.feature .feature-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(0.65) contrast(1.1);
  }

  /* ============ FOOTER ============ */
  .footer {
    background: #0A0805;
    color: var(--cream);
    padding: var(--space-9) 0 var(--space-7);
    border-top: 1px solid var(--border-soft-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  @media (min-width: 900px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-7); }
  }
  .footer-brand .brand-mono {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: -0.025em;
    color: var(--text-on-dark);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: var(--space-5);
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.7;
    max-width: 42ch;
  }
  .footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--detalhes);
    margin-bottom: var(--space-4);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
  .footer-col a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream);
    opacity: 0.78;
    transition: var(--motion-hover);
  }
  .footer-col a:hover { color: var(--detalhes); opacity: 1; }

  .footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft-dark);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-4);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.6;
  }

  /* ── painel-recuo: ver bloco global no topo do arquivo ── */

  /* ============ REVEAL ANIMATIONS ============ */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--motion-reveal), transform var(--motion-reveal);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
  }

/* === ESTILOS THE NUMBERS === */
/* ============ DESIGN TOKENS ============ */
  :root {
    --bg: #F7F0DE;
    --surface: #FFF8E8;
    --boi-verde: #155125;
    --boi-verde-deep: #0A3215;
    --ponto-carne: #4D0500;
    --ponto-deep: #2E0300;
    --detalhes: #FE6100;
    --cta-dark: #C94700;
    --text-on-dark: #F4E8CC;
    --cream: #E8D9B0;
    --heranca-blue: #0B1523;
    --absolute-black: #050505;

    --border-soft-dark: rgba(244, 232, 204, 0.10);
    --border-medium-dark: rgba(244, 232, 204, 0.20);
    --border-soft-light: rgba(21, 81, 37, 0.12);

    --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
    --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
    --space-9: 96px; --space-10: 128px;

    --motion-hover: 300ms cubic-bezier(0.25, 1, 0.5, 1);
    --motion-reveal: 1000ms cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-md: 0 6px 20px rgba(77, 5, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(77, 5, 0, 0.12);
  }

  /* ============ RESET ============ */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--absolute-black);
    color: var(--text-on-dark);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  body { line-height: 1.5; }
  ::selection { background: var(--detalhes); color: #000; }
  img, svg { display: block; max-width: 100%; }
  button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
  a { color: inherit; text-decoration: none; }

  /* ============ CUSTOM CURSOR ============ */
  .custom-cursor {
    width: 24px; height: 24px;
    border: 1.5px solid var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
  }
  .custom-cursor-dot {
    width: 6px; height: 6px;
    background-color: var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: none;
  }
  @media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot { display: block; }
    html, body, a, button, select, textarea, input { cursor: none; }
    .hover-target, .hover-target-card, .data-card { cursor: none; }
  }
  .custom-cursor.hovered {
    width: 56px; height: 56px;
    background-color: rgba(254, 97, 0, 0.12);
    border-color: var(--detalhes);
  }
  .custom-cursor.hovered-card {
    width: 80px; height: 80px;
    border-color: rgba(254, 97, 0, 0.5);
    background-color: transparent;
  }

  /* ============ CONTAINER ============ */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  @media (min-width: 640px)  { .container { padding: 0 var(--space-7); } }
  @media (min-width: 1024px) { .container { padding: 0 var(--space-8); } }
  @media (min-width: 1440px) { .container { padding: 0 var(--space-9); } }

  /* ============ TYPOGRAPHY ============ */
  .h-mono {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--detalhes);
  }
  .h-mono::before { content: "—"; margin-right: 8px; }

  /* Word-by-word reveal */
  .split-text-reveal { overflow: hidden; }
  .word-span { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.05em; }
  .word-inner {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    transition: transform 900ms var(--motion-reveal), opacity 900ms var(--motion-reveal);
  }
  .word-inner.revealed { transform: translateY(0); opacity: 1; }

  /* Number ticker reveal */
  .ticker-reveal {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
  }
  .ticker-inner {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 900ms var(--motion-reveal);
  }
  .ticker-inner.revealed { transform: translateY(0); }

  /* ============ HEADER ============ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: var(--space-5) 0;
    transition: background var(--motion-hover), padding var(--motion-hover), border-color var(--motion-hover);
    background: transparent;
    border-bottom: 1px solid transparent;
  }
  body.page-numbers .header.is-scrolled {
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(244, 232, 204, 0.08);
    padding: var(--space-4) 0;
  }
  .header-inner { display: flex; align-items: center; justify-content: space-between; }
  .brand { display: flex; align-items: center; }
  .brand .brand-logo { height: 52px; width: auto; transition: height var(--motion-hover); }
  .header.is-scrolled .brand .brand-logo { height: 34px; }
  .nav { display: none; gap: var(--space-6); align-items: center; }
  @media (min-width: 1024px) { .nav { display: flex; } }
  .nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    transition: opacity var(--motion-hover), color var(--motion-hover);
    position: relative;
    padding: var(--space-2) 0;
  }
  .nav a:hover { opacity: 1; color: var(--detalhes); }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1.5px;
    background: var(--detalhes);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--motion-hover);
  }
  .nav a:hover::after { transform: scaleX(1); }
  .lang {
    display: flex; gap: var(--space-1); align-items: center;
    border: 1px solid var(--border-soft-dark);
    border-radius: 4px; padding: 2px;
  }
  .lang button {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--text-on-dark);
    padding: 4px 8px; text-transform: uppercase;
    letter-spacing: 0.08em; opacity: 0.5;
    border-radius: 3px; transition: var(--motion-hover);
  }
  .lang button.active { opacity: 1; background: var(--detalhes); color: #000; font-weight: 600; }
  .menu-toggle {
    display: flex; align-items: center; justify-content: center;
    margin-left: auto; width: 40px; height: 40px;
    color: var(--text-on-dark);
  }
  @media (min-width: 1024px) { .menu-toggle { display: none; } }

  /* ============ SECTION 1: HERO (THE BRUTAL SCALE) ============ */
  .hero-numbers {
    position: relative;
    min-height: 100vh;
    background: var(--absolute-black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-10) 0 var(--space-8);
    overflow: hidden;
  }

  /* Satellite image — always visible, brightens on hover */
  .hero-numbers-bg {
    position: absolute; inset: 0;
    opacity: 1;
    transition: filter 600ms ease;
    pointer-events: none;
    z-index: 1;
    background: url('../../images/Abiec_7.jpeg') center/cover no-repeat;
    filter: grayscale(1) brightness(0.15);
  }
  .hero-numbers:hover .hero-numbers-bg { filter: grayscale(1) brightness(0.25); }

  /* Animated grid lines */
  .hero-numbers-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
      linear-gradient(rgba(254,97,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(254,97,0,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridShift 20s linear infinite;
  }
  @keyframes gridShift {
    0%   { background-position: 0 0; }
    100% { background-position: 80px 80px; }
  }

  /* Scanline overlay */
  .hero-numbers::after {
    content: "";
    position: absolute; inset: 0; z-index: 2;
    background: repeating-linear-gradient(
      0deg, transparent, transparent 2px,
      rgba(0,0,0,0.08) 2px, rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
  }

  .hero-numbers .container { position: relative; z-index: 3; }

  /* Slot machine ticker */
  .hero-slot {
    display: flex;
    align-items: baseline;
    gap: 0.04em;
    margin-bottom: var(--space-6);
    overflow: hidden;
    line-height: 1;
  }
  .hero-slot-number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(72px, 12vw, 180px);
    color: var(--detalhes);
    line-height: 0.88;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    display: inline-block;
    will-change: transform;
  }
  .hero-slot-unit {
    font-family: var(--font-mono);
    font-size: clamp(18px, 2.5vw, 36px);
    color: rgba(244,232,204,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: var(--space-3);
    align-self: flex-end;
    padding-bottom: 0.12em;
  }

  .hero-numbers h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 80px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    color: var(--text-on-dark);
    margin-bottom: var(--space-6);
    max-width: 16ch;
  }

  .hero-numbers h1 .accent { color: var(--detalhes); }

  .hero-numbers-sub {
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--cream);
    opacity: 0.7;
    line-height: 1.55;
    max-width: 70ch;
    margin-bottom: var(--space-8);
  }

  .hero-scroll-indicator {
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    animation: scrollPulse 2.2s ease-in-out infinite;
  }
  .hero-scroll-indicator .line {
    width: 40px; height: 1px;
    background: var(--detalhes);
    transform-origin: left;
    animation: lineGrow 2.2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 0.5; }
    50% { opacity: 0; }
  }
  @keyframes lineGrow {
    0%,100% { transform: scaleX(0.3); }
    50% { transform: scaleX(1); }
  }

  /* Bottom line decoration */
  .hero-numbers-footer {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-7);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(244,232,204,0.08);
    flex-wrap: wrap;
  }
  .hero-numbers-footer .stat {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.55;
  }
  .hero-numbers-footer .stat b {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    color: var(--text-on-dark);
    opacity: 1;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
  }

  /* ============ SECTION 2: EXPORTOMETER ============ */
  .exportometer {
    background: var(--ponto-carne);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }

  /* Noise texture */
  .exportometer::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
  }

  .exportometer .container { position: relative; z-index: 2; }

  .exportometer-kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--detalhes);
    margin-bottom: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .exportometer-kicker::before {
    content: "";
    width: 32px; height: 1px;
    background: var(--detalhes);
    flex-shrink: 0;
  }

  .exportometer h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.92;
    margin-bottom: var(--space-9);
    max-width: 20ch;
  }

  /* Dashboard layout */
  .expo-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(244,232,204,0.08);
    border-top: 1px solid rgba(244,232,204,0.08);
  }
  @media (min-width: 900px) {
    .expo-dashboard { grid-template-columns: 1.4fr 1fr 1fr; }
  }

  .expo-cell {
    background: var(--ponto-carne);
    padding: var(--space-8) var(--space-7);
    position: relative;
  }
  .expo-cell:first-child {
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .expo-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cream);
    opacity: 0.6;
    margin-bottom: var(--space-3);
  }

  .expo-big-number {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 108px);
    font-weight: 800;
    color: var(--detalhes);
    line-height: 0.88;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }

  .expo-big-unit {
    font-family: var(--font-mono);
    font-size: clamp(14px, 1.2vw, 20px);
    color: rgba(244,232,204,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: var(--space-3);
    display: block;
  }

  /* Live counter dot */
  .expo-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--space-5);
  }
  .expo-live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--detalhes);
    box-shadow: 0 0 8px var(--detalhes);
    animation: livePulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes livePulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
  }

  /* Per-second digital counter */
  .expo-persecond {
    font-family: var(--font-mono);
    font-size: clamp(13px, 1.1vw, 16px);
    color: var(--cream);
    opacity: 0.65;
    margin-top: var(--space-5);
    border-top: 1px solid rgba(244,232,204,0.08);
    padding-top: var(--space-4);
  }
  .expo-persecond strong {
    color: var(--detalhes);
    opacity: 1;
    font-weight: 600;
  }

  .expo-secondary-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 72px);
    font-weight: 800;
    color: var(--text-on-dark);
    line-height: 0.88;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }

  .expo-body {
    grid-column: 1 / -1;
    background: var(--ponto-deep);
    padding: var(--space-7);
  }
  @media (min-width: 900px) {
    .expo-body { grid-column: 1 / -1; }
  }

  .expo-body p {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.8;
    max-width: 90ch;
  }

  /* ============ SECTION 3: INTERNAL ENGINE ============ */
  .internal-engine {
    background: #fff;
    color: #050505;
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }

  .engine-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: start;
  }
  @media (min-width: 900px) {
    .engine-grid { grid-template-columns: 1fr 1fr; gap: var(--space-9); align-items: center; }
  }

  .engine-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--ponto-carne);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }
  .engine-eyebrow::before {
    content: "";
    width: 32px; height: 1px;
    background: var(--ponto-carne);
    flex-shrink: 0;
  }

  .internal-engine h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.92;
    color: #050505;
    margin-bottom: var(--space-6);
  }

  .engine-big-number {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 800;
    color: #050505;
    line-height: 0.84;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-5);
  }
  .engine-big-number .accent { color: var(--detalhes); }

  .engine-body {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.6;
    color: #333;
    max-width: 52ch;
    margin-bottom: var(--space-6);
  }

  .engine-microcopy {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    padding: var(--space-5) var(--space-6);
    background: #050505;
    color: var(--text-on-dark);
  }
  .engine-microcopy .micro-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
  }
  .engine-microcopy .micro-value {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.2vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--detalhes);
  }
  .engine-microcopy .micro-desc {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.6;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Editorial shape */
  .engine-photo-wrap {
    position: relative;
    display: block;
  }
  .engine-shape {
    position: absolute;
    top: -8%;
    right: -6%;
    width: 70%;
    height: 70%;
    background: #050505;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .engine-shape .giant-number {
    font-family: var(--font-display);
    font-size: clamp(80px, 12vw, 200px);
    font-weight: 800;
    color: rgba(254,97,0,0.12);
    line-height: 0.8;
    user-select: none;
  }
  .engine-img {
    position: relative;
    z-index: 2;
    width: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.85) contrast(1.15);
  }
  .engine-img-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    background: var(--detalhes);
    color: #000;
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 12px;
  }

  /* ============ SECTION 4: BORDERS ARE JUST LINES ============ */
  /* World Map CSS moved to component */

  /* Markets marquee */
  .marquee-wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(244,232,204,0.08);
    padding: var(--space-4) 0;
    position: relative;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--heranca-blue), transparent);
  }
  .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--heranca-blue), transparent);
  }

  .marquee-track {
    display: flex;
    gap: var(--space-6);
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
  }
  @keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .marquee-item {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.5;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .marquee-item .country-name { color: var(--detalhes); opacity: 1; }
  .marquee-item .separator {
    color: rgba(244,232,204,0.2);
    margin: 0 var(--space-3);
  }

  /* Country stats grid */
  .country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(244,232,204,0.06);
    border: 1px solid rgba(244,232,204,0.06);
    margin-top: var(--space-7);
  }
  @media (min-width: 768px) {
    .country-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 1100px) {
    .country-grid { grid-template-columns: repeat(6, 1fr); }
  }
  .country-cell {
    background: var(--heranca-blue);
    padding: var(--space-6) var(--space-5);
    transition: background var(--motion-hover);
    cursor: default;
  }
  .country-cell:hover { background: rgba(244,232,204,0.04); }
  .country-cell .country-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.5;
    margin-bottom: var(--space-2);
  }
  .country-cell .country-value {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 800;
    color: var(--detalhes);
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
  }
  .country-cell .country-share {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    opacity: 0.4;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* ============ SECTION 5: BACKBONE OF AN ECONOMY ============ */
  .backbone {
    background: var(--boi-verde);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  /* Grid watermark */
  .backbone::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      rgba(244, 232, 204, 0.025) 0,
      rgba(244, 232, 204, 0.025) 1px,
      transparent 1px,
      transparent 80px
    );
    pointer-events: none;
  }

  /* Massive BG typography */
  .backbone-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(120px, 20vw, 400px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: rgba(244,232,204,0.03);
    line-height: 0.85;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
  }

  .backbone .container { position: relative; z-index: 2; }

  .backbone-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .backbone-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--detalhes);
    margin-bottom: var(--space-7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
  }
  .backbone-eyebrow::before,
  .backbone-eyebrow::after {
    content: ""; flex: 1; max-width: 60px;
    height: 1px; background: var(--detalhes); opacity: 0.5;
  }

  .backbone h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 54px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 0.94;
    margin-bottom: var(--space-8);
  }

  .backbone-number {
    font-family: var(--font-display);
    font-size: clamp(72px, 12vw, 200px);
    font-weight: 800;
    color: var(--detalhes);
    letter-spacing: -0.05em;
    line-height: 0.84;
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--space-6);
  }

  .backbone-body {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.8;
    max-width: 64ch;
    margin: 0 auto var(--space-8);
    text-wrap: balance;
  }

  .backbone-gdp-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    background: rgba(244,232,204,0.06);
    border: 1px solid rgba(244,232,204,0.10);
    padding: var(--space-5) var(--space-7);
    margin-bottom: var(--space-8);
  }
  .backbone-gdp-badge .gdp-label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cream);
    opacity: 0.5;
  }
  .backbone-gdp-badge .gdp-number {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 48px);
    font-weight: 800;
    color: var(--text-on-dark);
    letter-spacing: -0.025em;
    text-transform: uppercase;
  }

  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--detalhes);
    color: #000;
    height: 60px;
    padding: 0 var(--space-7);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0;
    transition: transform var(--motion-hover), box-shadow var(--motion-hover), background-color var(--motion-hover);
  }
  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(254,97,0,0.4);
    background-color: #ff7420;
  }
  .btn-cta .arrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 18px;
  }

  /* ============ NUMBER HIERARCHY SYSTEM ============
   * Rule: The NUMBER is always the hero.
   * Currency, units, and labels are always subordinate.
   * ============================================= */

  /* Big clean number inside expo-secondary-number */
  .num-secondary {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(72px, 9vw, 140px);
    font-weight: 800;
    color: var(--text-on-dark);
    letter-spacing: -0.05em;
    line-height: 0.84;
    text-transform: uppercase;
  }

  /* Unit/complement row below the number */
  .num-complement {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(11px, 1vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream);
    opacity: 0.45;
    margin-top: var(--space-3);
  }

  /* Currency label inline inside complement */
  .num-currency {
    color: var(--detalhes);
    opacity: 0.85;
  }

  /* Percent sign: stays big but slightly smaller than number */
  .num-pct {
    font-family: var(--font-mono);
    font-size: 0.35em;
    vertical-align: 0.5em;
    letter-spacing: 0.04em;
    opacity: 0.55;
  }

  /* Small % for GDP badge */
  .num-pct-sm {
    font-family: var(--font-mono);
    font-size: 0.45em;
    vertical-align: 0.35em;
    opacity: 0.6;
  }

  /* Small currency prefix for backbone number */
  .num-currency-sm {
    font-family: var(--font-mono);
    font-size: 0.22em;
    vertical-align: 0.75em;
    letter-spacing: 0.06em;
    color: rgba(244,232,204,0.45);
    margin-right: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
  }

  /* Small unit suffix for backbone number */
  .num-unit-sm {
    font-family: var(--font-mono);
    font-size: 0.2em;
    vertical-align: 0.9em;
    letter-spacing: 0.08em;
    color: rgba(244,232,204,0.35);
    margin-left: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
  }

  /* ============ FOOTER ============ */
  .footer {
    background: #0A0805;
    color: var(--cream);
    padding: var(--space-9) 0 var(--space-7);
    border-top: 1px solid var(--border-soft-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  @media (min-width: 900px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-7); }
  }
  .footer-brand p { font-size: 14px; line-height: 1.55; color: var(--cream); opacity: 0.7; max-width: 42ch; }
  .footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--detalhes);
    margin-bottom: var(--space-4);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
  .footer-col a { font-size: 14px; color: var(--cream); opacity: 0.78; transition: var(--motion-hover); }
  .footer-col a:hover { color: var(--detalhes); opacity: 1; }
  .footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft-dark);
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-4);
    font-family: var(--font-mono);
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--cream); opacity: 0.6;
  }

  /* ============ REVEAL ANIMATION ============ */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--motion-reveal), transform var(--motion-reveal);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .word-inner { transform: translateY(0); opacity: 1; }
    .ticker-inner { transform: translateY(0); }
  }

/* === ESTILOS THE ORIGIN === */
/* ============ DESIGN TOKENS (Brazilian Beef v1.2) ============ */
  :root {
    --bg: #F7F0DE;
    --surface: #FFF8E8;
    --boi-verde: #155125;
    --boi-verde-deep: #0A3215;
    --ponto-carne: #4D0500;
    --ponto-deep: #2E0300;
    --detalhes: #FE6100;
    --cta-dark: #C94700;
    --text-on-dark: #F4E8CC;
    --cream: #E8D9B0;
    --heranca-blue: #0B1523; /* Deep Blue / Fundo Herança */

    --border-soft-dark: rgba(244, 232, 204, 0.10);
    --border-medium-dark: rgba(244, 232, 204, 0.20);
    --border-soft-light: rgba(21, 81, 37, 0.12);

    --space-1: 4px; --space-2: 8px; --space-3: 12px; --space-4: 16px;
    --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
    --space-9: 96px; --space-10: 128px;

    --motion-hover: 300ms cubic-bezier(0.25, 1, 0.5, 1);
    --motion-reveal: 1000ms cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-md: 0 6px 20px rgba(77, 5, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(77, 5, 0, 0.12);
  }

  /* ============ RESET ============ */
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--boi-verde);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  body { line-height: 1.5; }
  ::selection { background: var(--detalhes); color: #000; }
  img, svg { display: block; max-width: 100%; }
  button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
  a { color: inherit; text-decoration: none; }

  /* ============ CUSTOM CURSOR (Awwwards Style) ============ */
  .custom-cursor {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
  }
  .custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--detalhes);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    display: none;
  }
  @media (pointer: fine) {
    .custom-cursor, .custom-cursor-dot { display: block; }
    html, body, a, button, select, textarea, input, [style*="cursor"] { cursor: none; }
    .hover-target, .hover-target-card, .report-card, .raw-module, .std-card, .infra-card, .number-cell, .bb-btn, .bb-card, .demo-btn, .demo-card-lift, .demo-reveal-trigger, .motion-play { cursor: none; }
  }
  .custom-cursor.hovered {
    width: 56px;
    height: 56px;
    background-color: rgba(254, 97, 0, 0.12);
    border-color: var(--detalhes);
  }
  .custom-cursor.hovered-card {
    width: 80px;
    height: 80px;
    border-color: rgba(254, 97, 0, 0.5);
    background-color: transparent;
  }

  /* ============ TYPOGRAPHY & TEXT REVEAL ============ */
  .display, h1.display {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.90;
    text-transform: uppercase;
  }
  .h-mono {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--detalhes);
  }
  .h-mono::before {
    content: "—";
    margin-right: 8px;
  }

  /* Word-by-word reveal style */
  .split-text-reveal {
    overflow: hidden;
  }
  .word-span {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 0.05em;
  }
  .word-inner {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    transition: transform 900ms var(--motion-reveal), opacity 900ms var(--motion-reveal);
  }
  .word-inner.revealed {
    transform: translateY(0);
    opacity: 1;
  }

  /* ============ CONTAINER ============ */
  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-5);
  }
  @media (min-width: 640px)  { .container { padding: 0 var(--space-7); } }
  @media (min-width: 1024px) { .container { padding: 0 var(--space-8); } }
  @media (min-width: 1440px) { .container { padding: 0 var(--space-9); } }

  /* ============ HEADER ============ */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: var(--space-5) 0;
    transition: background var(--motion-hover), padding var(--motion-hover), border-color var(--motion-hover);
    background: transparent;
    border-bottom: 1px solid transparent;
  }
  body.page-origin .header.is-scrolled {
    background: rgba(11, 21, 35, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border-soft-dark);
    padding: var(--space-4) 0;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    display: flex;
    align-items: center;
  }
  .brand .brand-logo {
    height: 52px;
    width: auto;
    transition: height var(--motion-hover);
  }
  .header.is-scrolled .brand .brand-logo {
    height: 34px;
  }
  .nav {
    display: none;
    gap: var(--space-6);
    align-items: center;
  }
  @media (min-width: 1024px) { .nav { display: flex; } }
  .nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.7;
    transition: opacity var(--motion-hover), color var(--motion-hover);
    position: relative;
    padding: var(--space-2) 0;
  }
  .nav a:hover {
    opacity: 1;
    color: var(--detalhes);
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1.5px;
    background: var(--detalhes);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--motion-hover);
  }
  .nav a:hover::after { transform: scaleX(1); }

  .lang {
    display: flex;
    gap: var(--space-1);
    align-items: center;
    border: 1px solid var(--border-soft-dark);
    border-radius: 4px;
    padding: 2px;
  }
  .lang button {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-on-dark);
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.5;
    border-radius: 3px;
    transition: var(--motion-hover);
  }
  .lang button.active {
    opacity: 1;
    background: var(--detalhes);
    color: #000;
    font-weight: 600;
  }

  /* ============ HERO: CIRCULAR PORTAL REVEAL ============ */
  .hero-portal-section {
    position: relative;
    min-height: 100vh;
    background-color: var(--boi-verde-deep);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: var(--space-10) 0 var(--space-8);
  }
  .hero-portal-section h1 {
    font-family: var(--font-display);
    font-size: clamp(50px, 8vw, 104px);
    font-weight: 900;
    line-height: 0.90;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
  }
  /* Cinematic Dissolve elements */
  .hero-bg-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: var(--boi-verde-deep);
  }
  .hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity;
  }
  .hero-zoom-img {
    z-index: 2;
    filter: brightness(0.55) contrast(1.05) saturate(0.9);
    opacity: 0;
    animation: heroFadeZoom 14s infinite;
    animation-delay: -7s;
  }
  .hero-close-img {
    z-index: 1;
    filter: brightness(0.6) contrast(1.1) saturate(0.9);
    opacity: 0;
    animation: heroFadeZoom 14s infinite;
    animation-delay: 0s;
  }
  @keyframes heroFadeZoom {
    0%   { opacity: 0; transform: scale(1.05); }
    15%  { opacity: 1; }
    50%  { opacity: 1; transform: scale(1.12); }
    65%  { opacity: 0; }
    100% { opacity: 0; transform: scale(1.20); }
  }
  .hero-fade-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--boi-verde-deep);
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    will-change: opacity;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: var(--text-on-dark);
  }
  .hero h1 {
    font-size: clamp(48px, 6.5vw, 92px);
    margin-bottom: var(--space-5);
    text-wrap: balance;
  }
  .hero h1 .accent { color: var(--detalhes); }
  .hero-sub {
    font-size: clamp(16px, 1.4vw, 22px);
    max-width: 720px;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: var(--space-6);
    text-wrap: pretty;
  }
  .hero-microcopy {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-7);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft-dark);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream);
    opacity: 0.8;
  }
  .hero-scroll {
    position: absolute;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    text-align: center;
    opacity: 0.8;
    animation: scroll-pulse 2.2s ease-in-out infinite;
  }
  .hero-scroll .line {
    display: block;
    width: 1px; height: 32px;
    background: var(--cream);
    margin: var(--space-2) auto 0;
  }

  /* ============ SECTION 2: NATURE'S INFRASTRUCTURE ============ */
  .infrastructure {
    background: var(--heranca-blue);
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }
  /* Dot Grid Canvas CSS moved to component */
  .infrastructure .container {
    position: relative;
    z-index: 2;
  }
  .infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
  }
  @media (min-width: 768px) {
    .infra-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .infra-card {
    background: rgba(244, 232, 204, 0.02);
    border: none;
    border-radius: 0;
    padding: var(--space-7) var(--space-6);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--motion-hover), background-color var(--motion-hover);
  }
  .infra-card:hover {
    transform: translateY(-6px);
    background: rgba(244, 232, 204, 0.05);
  }
  /* Styled background photos inside cards */
  .infra-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    transition: opacity var(--motion-hover), transform 1.2s var(--motion-reveal);
    transform: scale(1.03);
    pointer-events: none;
  }
  .infra-card:hover .infra-card-bg {
    opacity: 0.35;
    transform: scale(1.08);
  }
  .infra-card-content {
    position: relative;
    z-index: 2;
  }
  .infra-card .tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: var(--space-4);
    display: block;
  }
  .infra-card h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2vw, 32px);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    line-height: 1.05;
  }
  .infra-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.85;
  }

  /* ============ SECTION 3: THE ZEBU PHENOMENON (Split-Screen Slideshow) ============ */
  /* ============ SECTION 3: THE ZEBU PHENOMENON (Horizontal Scroll Overhaul) ============ */
  .zebu-scroll-container {
    position: relative;
    height: 300vh; /* scroll height */
    background: var(--surface);
  }
  .zebu-sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .zebu-horizontal-track {
    display: flex;
    width: 300vw;
    height: 100%;
    will-change: transform;
  }
  .zebu-slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 var(--space-5);
  }
  @media (min-width: 1024px) {
    .zebu-slide {
      padding: 0 var(--space-9);
    }
  }
  
  .zebu-slide-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  @media (min-width: 900px) {
    .zebu-slide-inner {
      grid-template-columns: 1.15fr 0.85fr;
      gap: var(--space-9);
    }
  }
  
  .zebu-slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .zebu-slide-watermark {
    position: absolute;
    top: 5%;
    left: -5%;
    font-family: var(--font-display);
    font-size: 30vw;
    font-weight: 900;
    color: var(--boi-verde);
    opacity: 0.03;
    pointer-events: none;
    line-height: 0.8;
    z-index: 1;
    user-select: none;
  }
  .zebu-slide-content .eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ponto-carne);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-4);
    display: inline-block;
  }
  .zebu-slide-content h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 68px);
    line-height: 0.90;
    letter-spacing: -0.03em;
    color: var(--boi-verde);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
  }
  .zebu-slide-content p {
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.6;
    color: var(--ponto-carne);
    opacity: 0.9;
    max-width: 48ch;
  }
  
  .zebu-slide-media {
    position: relative;
    border-radius: 0;
    border: none;
    overflow: visible;
    aspect-ratio: 4/5;
    background: transparent;
    margin-top: 30px;
  }
  .zebu-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.05);
    transition: transform 1s var(--motion-hover);
  }
  .zebu-slide-media:hover img {
    transform: scale(1.03);
  }
  
  /* Horizontal scroll progress bar */
  .zebu-scroll-progress-container {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-5);
    right: var(--space-5);
    height: 2px;
    background: rgba(77, 5, 0, 0.1);
    z-index: 10;
  }
  @media (min-width: 1024px) {
    .zebu-scroll-progress-container {
      left: var(--space-9);
      right: var(--space-9);
    }
  }
  .zebu-scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--detalhes);
    transition: width 0.1s ease-out;
  }

  /* Mobile Fallback: Stack Vertically */
  @media (max-width: 899px) {
    .zebu-scroll-container {
      height: auto !important; /* disable sticky scroll height */
    }
    .zebu-sticky-viewport {
      position: relative !important;
      height: auto !important;
      width: 100% !important;
      overflow: visible !important;
    }
    .zebu-horizontal-track {
      flex-direction: column !important;
      width: 100% !important;
      height: auto !important;
      transform: none !important;
    }
    .zebu-slide {
      width: 100% !important;
      height: auto !important;
      padding: var(--space-8) var(--space-5) !important;
    }
    .zebu-slide-inner {
      grid-template-columns: 1fr !important;
    }
    .zebu-scroll-progress-container {
      display: none !important; /* hide progress bar on mobile */
    }
    .zebu-slide-watermark {
      font-size: 50vw !important;
      top: 10% !important;
    }
  }

  /* ============ SECTION 4: THE CRAFT (Awwwards Overhaul) ============ */
  .craft {
    background: #000000;
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
  }
  /* Subtle massive background outline typography */
  .craft-backdrop-text {
    position: absolute;
    top: 15%;
    left: -5%;
    font-family: var(--font-display);
    font-size: 22vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(244, 232, 204, 0.03);
    line-height: 0.8;
    text-transform: uppercase;
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    letter-spacing: -0.04em;
    user-select: none;
  }
  /* Floating orange flashlight glow following cursor */
  .craft-flashlight-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 320px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(254, 97, 0, 0.12), transparent 80%);
    pointer-events: none;
    z-index: 1;
  }
  .craft .container {
    position: relative;
    z-index: 2;
  }
  .craft-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  @media (min-width: 1024px) {
    .craft-grid {
      grid-template-columns: 1.15fr 0.85fr;
      gap: var(--space-9);
      align-items: center;
    }
  }
  .craft-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .craft-content h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: 0.90;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: var(--space-5);
  }
  .craft-content p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: var(--space-6);
    max-width: 58ch;
  }
  
  /* Technical Metrics Grid */
  .craft-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-5);
    width: 100%;
    border-top: 1px solid var(--border-soft-dark);
    padding-top: var(--space-5);
  }
  .metric-box {
    border-left: 1px solid var(--border-medium-dark);
    padding-left: var(--space-4);
    position: relative;
  }
  .metric-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -2.5px;
    width: 5px;
    height: 5px;
    background-color: var(--detalhes);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--detalhes);
  }
  .metric-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    opacity: 0.55;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: var(--space-2);
  }
  .metric-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--text-on-dark);
    line-height: 1;
    display: block;
    margin-bottom: var(--space-2);
  }
  .metric-suffix {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
    margin-bottom: var(--space-2);
  }
  .metric-desc {
    font-size: 13px;
    color: var(--cream);
    opacity: 0.75;
    line-height: 1.45;
  }

  /* High-Tech Viewfinder Image Container */
  .craft-media-container {
    position: relative;
    padding: var(--space-3);
    border-radius: 20px;
    background: transparent;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
  }
  .craft-frame-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(254, 97, 0, 0.6);
    pointer-events: none;
    z-index: 3;
  }
  .corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
  .corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
  .corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
  .corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

  .craft-media {
    position: relative;
    border-radius: 0;
    border: none;
    overflow: visible;
    aspect-ratio: 4/5;
    background: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(254, 97, 0, 0.1);
  }
  .craft-media img {
    width: 100%;
    height: 110%; /* Extra height to accommodate parallax translateY */
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.08);
    transition: filter var(--motion-hover);
    will-change: transform;
  }
  .craft-media:hover img {
    filter: brightness(0.95) contrast(1.15);
  }
  .craft-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
  }

  .craft-media-status {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
    z-index: 3;
    background: rgba(10, 8, 5, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(254, 97, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
  }
  .status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--detalhes);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--detalhes);
    animation: status-pulse 1.6s infinite alternate;
  }
  @keyframes status-pulse {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
  }

  .craft-media-coords {
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    z-index: 3;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* Massive Typographic Poster Climax at the bottom */
  .craft-statement {
    margin-top: var(--space-9);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-soft-dark);
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .craft-statement-line-1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 76px);
    font-weight: 800;
    color: var(--text-on-dark);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: var(--space-3);
  }
  .craft-statement-line-2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 76px);
    font-weight: 800;
    color: var(--detalhes);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.95;
  }

  /* ============ SECTION 5: THE NEXT STEP (Parallax Image Overhaul) ============ */
  .next-step {
    background: #000; /* dark fallback */
    color: var(--text-on-dark);
    padding: var(--space-10) 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  .next-step-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  .next-step-bg-img {
    width: 100%;
    height: 130%; /* extra height for translation */
    object-fit: cover;
    position: absolute;
    top: -15%; /* start offset for center */
    left: 0;
    filter: brightness(0.35) contrast(1.1) saturate(0.9);
    transition: filter 0.5s var(--motion-hover);
    will-change: transform;
  }
  .next-step:hover .next-step-bg-img {
    filter: brightness(0.45) contrast(1.15) saturate(1.0);
  }
  /* Overlay dark green screen gradient for brand cohesion */
  .next-step-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
      rgba(0, 0, 0, 0.8) 0%, 
      rgba(77, 5, 0, 0.52) 50%, 
      rgba(10, 8, 5, 0.95) 100%
    );
    z-index: 2;
    pointer-events: none;
  }
  .next-step-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.85;
    pointer-events: none;
  }
  .next-step-bg-svg path {
    fill: none;
    stroke: var(--detalhes); /* Orange glowing line */
    stroke-width: 2.5;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2200ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .next-step.chart-visible .next-step-bg-svg path {
    stroke-dashoffset: 0;
  }
  .next-content {
    position: relative;
    z-index: 4;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .next-content h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 0.90;
    letter-spacing: -0.03em;
    color: var(--text-on-dark);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  .next-content p {
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1.55;
    color: var(--cream);
    margin-bottom: var(--space-8);
    text-wrap: balance;
    max-width: 48ch;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--detalhes);
    color: #000;
    height: 60px;
    padding: 0 var(--space-7);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 8px;
    transition: transform var(--motion-hover), box-shadow var(--motion-hover), background-color var(--motion-hover);
    box-shadow: var(--shadow-md);
  }
  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: #ff7420;
  }
  .btn-cta .arrow {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 18px;
  }

  /* ============ FOOTER ============ */
  .footer {
    background: #0A0805;
    color: var(--cream);
    padding: var(--space-9) 0 var(--space-7);
    border-top: 1px solid var(--border-soft-dark);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  @media (min-width: 900px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-7); }
  }
  .footer-brand .brand-mono {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: -0.025em;
    color: var(--text-on-dark);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: var(--space-5);
  }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--cream);
    opacity: 0.7;
    max-width: 42ch;
  }
  .footer-col h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--detalhes);
    margin-bottom: var(--space-4);
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
  .footer-col a {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream);
    opacity: 0.78;
    transition: var(--motion-hover);
  }
  .footer-col a:hover { color: var(--detalhes); opacity: 1; }
  .footer-bottom {
    margin-top: var(--space-8);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft-dark);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-4);
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream);
    opacity: 0.6;
  }
  /* ── painel-recuo: ver bloco global no topo do arquivo ── */
/* ============================================================
   RESPONSIVE HANDOFF SAFETY PATCH
   Conservative overrides for mobile/tablet handoff. Keep this
   block at the end so it wins over legacy duplicated rules.
   ============================================================ */

@media (max-width: 1023px) {
  .header {
    background: rgba(10, 50, 21, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border-soft-dark);
  }

  .header-inner {
    position: relative;
    gap: var(--space-3);
  }

  .brand .brand-logo,
  .header.is-scrolled .brand .brand-logo {
    height: clamp(36px, 11vw, 48px);
  }

  .nav {
    position: absolute;
    top: calc(100% + var(--space-3));
    left: var(--space-5);
    right: var(--space-5);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-3);
    background: rgba(10, 50, 21, 0.98);
    border: 1px solid var(--border-soft-dark);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--motion-hover), transform var(--motion-hover), visibility var(--motion-hover);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid rgba(244, 232, 204, 0.12);
    font-size: 12px;
    color: var(--text-on-dark);
    opacity: 1;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: var(--space-5);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    margin-left: 0;
    color: var(--detalhes);
    border: 1px solid rgba(254, 97, 0, 0.75);
    border-radius: 6px;
    background: rgba(254, 97, 0, 0.12);
    transform: translateY(-50%);
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .hero,
  .knowledge-hero {
    min-height: 100dvh;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-meta div {
    min-width: 0;
  }

  .btn-cta,
  .btn-outline,
  .hero-cta,
  .btn-solid-orange {
    max-width: 100%;
    min-height: 48px;
    height: auto;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-5) !important;
  }

  .footer-bottom-row {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-links {
    gap: var(--space-2) !important;
  }

  .footer-seals img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 520px) {
  .lang {
    display: none;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .display,
  h1.display {
    font-size: clamp(40px, 14vw, 64px);
  }
}
