/* ══════════════════════════════════════════════════════════
       DESIGN TOKENS — Nítido (faithful to design_system2)
    ══════════════════════════════════════════════════════════ */
    :root {
      --bg-primary:            #080808;
      --bg-secondary:          #111111;
      --bg-card:               #141414;
      --bg-glass:              rgba(255,255,255,0.04);
      --color-white:           #ffffff;
      --color-orange:          #ff6501;
      --color-blue:            #104385;
      --color-neutral:         #808080;
      --color-neutral-light:   #bbbbbb;
      --border-primary:        rgba(255,255,255,0.08);
      --border-secondary:      rgba(255,255,255,0.18);
      --gradient-hero:         linear-gradient(135deg, #104385, #ff6501);
      --font-primary:          "Inter Tight", Arial, sans-serif;
      --font-mono:             "JetBrains Mono", monospace;

      /* Prism geometry */
      --prism-size:   28rem;
      --prism-height: 10rem;   /* smaller than arc-spacing → gap between faces */
      --prism-radius: 15rem;   /* apothem — same as original cube depth */
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    html, body { width: 100%; height: 100%; overflow-x: hidden; background: #f8f7f3; }
    body {
      font-family: var(--font-primary);
      color: var(--color-white);
      cursor: none;
    }

    /* ── Custom Cursor ─────────────────────────────────────── */
    .cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--color-orange);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      transition: width .3s ease, height .3s ease, opacity .3s ease;
      will-change: left, top;
    }
    .cursor-follower {
      position: fixed;
      width: 34px; height: 34px;
      border: 1.5px solid rgba(255,101,1,.45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99998;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      will-change: left, top;
    }
    body.cursor-link .cursor        { width: 18px; height: 18px; opacity: .5; }
    body.cursor-link .cursor-follower { width: 52px; height: 52px; border-color: rgba(255,101,1,.3); }

    /* ── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      width: 100vw;
      height: 100vh;
      background: var(--bg-primary);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      border-radius: 0 0 2.5rem 2.5rem;
      padding-top: 3.25rem; /* offset for fixed site-nav */
    }
    /* Old in-hero nav — hidden, replaced by fixed site-nav */
    .hero-nav { display: none !important; }

    /* Background grid */
    .hero-grid {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    /* Ambient glow */
    .hero-glow {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 45%, rgba(16,67,133,.14) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 65% 65%, rgba(255,101,1,.07) 0%, transparent 55%);
      pointer-events: none;
    }

    /* SVG noise texture overlay (same as aspekto .background intent) */
    .hero-noise {
      position: absolute; inset: 0; z-index: 0;
      opacity: .35;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.08'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
      pointer-events: none;
    }

    /* Decorative vertical lines */
    .hero-lines {
      position: absolute; inset: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 4rem;
      pointer-events: none;
      z-index: 1;
    }
    .hero-line {
      width: 1px;
      background: rgba(255,255,255,.035);
      height: 100%;
      transform: scaleY(0);
      transform-origin: top;
      animation: hero-line-in 1.5s cubic-bezier(.16,1,.3,1) both;
    }
    .hero-line:nth-child(1) { animation-delay: .05s; }
    .hero-line:nth-child(2) { animation-delay: .15s; }
    .hero-line:nth-child(3) { animation-delay: .25s; }
    .hero-line:nth-child(4) { animation-delay: .35s; }
    .hero-line:nth-child(5) { animation-delay: .45s; }
    .hero-line:nth-child(6) { animation-delay: .55s; }
    @keyframes hero-line-in {
      from { transform: scaleY(0); opacity: 0; }
      to   { transform: scaleY(1); opacity: 1; }
    }

    /* ── NAV ────────────────────────────────────────────────── */
    .hero-nav {
      position: relative;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 3.25rem;
      border-bottom: 1px solid var(--border-primary);
      background: rgba(8,8,8,.75);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      flex-shrink: 0;
    }
    .nav-brand {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo {
      height: 1.75rem;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .nav-badge {
      font-family: var(--font-mono);
      font-size: .55rem;
      font-weight: 600;
      letter-spacing: .12rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.25);
      border: 1px solid rgba(255,255,255,.1);
      padding: .28rem .7rem;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .nav-badge-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--color-orange);
      animation: pulse-dot 2s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .45; transform: scale(.7); }
    }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .5rem 1.25rem;
      border-radius: 999px;
      background: var(--gradient-hero);
      color: #fff;
      font-family: var(--font-primary);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: filter .3s ease, transform .3s ease, box-shadow .3s ease;
    }
    .nav-cta:hover {
      filter: brightness(1.18);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255,101,1,.3);
    }

    /* ── STAGE ──────────────────────────────────────────────── */
    .hero-stage {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      padding: 0 2rem;
      padding-bottom: 4.5rem; /* space for bottom bar */
    }

    /* ── BACKGROUND NÍTIDO TEXT ─────────────────────────────── */
    .nitido-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--font-primary);
      font-size: clamp(7rem, 20vw, 20rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.05em;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,.05);
      text-transform: uppercase;
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
      filter: blur(3px);
      z-index: 1;
      opacity: 0; /* animated in by GSAP */
    }

    /* ══════════════════════════════════════════════════════════
       3D HEPTAEDRO — EXATO CLONE DO CUBO DO DESIGN SYSTEM
       com 7 faces em vez de 4, mantendo linguagem visual idêntica
    ══════════════════════════════════════════════════════════ */

    .header-3d-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 3;
      transform-style: preserve-3d;
    }

    /* Entrance animation — identical to design system */
    @keyframes hero-cube-in {
      from { opacity: 0; filter: blur(1.5rem); transform: scale(.9); }
      to   { opacity: 1; filter: blur(0);      transform: scale(1); }
    }
    .header-cube-wrapper {
      transform-style: preserve-3d;
      animation: hero-cube-in 1.4s cubic-bezier(.16,1,.3,1) .3s both;
    }

    /* Container — same perspective as original (2000px) */
    .header-cube-block {
      width: var(--prism-size);
      height: var(--prism-size);
      perspective: 2000px;
      position: relative;
      transform-style: preserve-3d;
    }

    /*
      PRISM WHEEL SPIN — exact replica of cube-wheel from design system:
      rotateY(-14deg) keeps the slight diagonal tilt.
      rotateX(0→-360deg) is the wheel roll on X axis (like a tire).
      Duration 9s linear infinite — identical to original.
    */
    @keyframes prism-wheel {
      from { transform: rotateY(-14deg) rotateX(0deg); }
      to   { transform: rotateY(-14deg) rotateX(-360deg); }
    }
    ._3d-cube-block {
      transform-origin: 50%;
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      animation: prism-wheel 18s linear infinite;
      will-change: transform;
    }

    /* Each of the 7 faces — identical framing to original .cube-block wrapper */
    .prism-face {
      position: absolute;
      width: var(--prism-size);
      height: var(--prism-height);
      /* Center on the prism pivot */
      top: 50%;
      left: 50%;
      margin-top: calc(var(--prism-height) / -2);
      margin-left: calc(var(--prism-size) / -2);
      transform-style: preserve-3d;
    }

    /*
      .frame-item — identical styles to original aspekto CSS:
      border-radius: 2rem, overflow: hidden, flex centered.
      Added: glass border, shadow, backface-visibility: hidden.
    */
    .frame-item {
      width: 100%;
      height: 100%;
      border-radius: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;

      /* Glass edge — leve, como no design system */
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(8,8,8,.55); /* dark glass base — visible on backside */
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1),
        inset 0 -1px 0 rgba(0,0,0,.3),
        0 0 0 1px rgba(255,101,1,.04),
        0 24px 60px rgba(0,0,0,.5),
        0 4px 12px rgba(0,0,0,.4);
      /* NO backface-visibility here — frame shows as dark glass when reversed */
    }

    /* Light shimmer — same glass feel as original */
    .frame-item::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(
        135deg,
        rgba(255,255,255,.09) 0%,
        transparent 38%,
        transparent 62%,
        rgba(255,101,1,.04) 100%
      );
      z-index: 2;
      pointer-events: none;
    }

    /* Video fill — replicates .w-background-video > video from aspekto */
    .frame-item video {
      object-fit: cover;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      z-index: 0;
      /* Hide video when face is pointing away — frame glass remains visible */
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    /* Gradient overlay on video (bottom → top: dark → transparent) */
    .face-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        0deg,
        rgba(8,8,8,.65) 0%,
        rgba(8,8,8,.15) 45%,
        rgba(8,8,8,.0) 100%
      );
      z-index: 1;
      pointer-events: none;
      /* Hide overlay on backface too — keeps the dark-glass look clean */
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    /*
      .cube-text — identical to original aspekto CSS:
      color: #fff, mix-blend-mode: difference, text-transform: uppercase.
    */
    .cube-text {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      color: #fff;
      font-family: var(--font-primary);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: .12rem;
      text-align: center;
      text-transform: uppercase;
      mix-blend-mode: difference;
      white-space: nowrap;
      text-shadow: 0 2px 12px rgba(0,0,0,.5);
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    /*
      TITLE COUNTER-ROTATION — exact inverse of prism-wheel.
      prism-wheel = Ry(-14) * Rx(0 → -360)
      inverse     = Rx(0 → +360) * Ry(+14)
      This keeps the title stationary in world space.
    */
    @keyframes prism-title-counter {
      from { transform: rotateX(0deg) rotateY(14deg); }
      to   { transform: rotateX(360deg) rotateY(14deg); }
    }
    .cube-title-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      inset: 0;
      animation: prism-title-counter 18s linear infinite;
      transform-style: preserve-3d;
      pointer-events: none;
    }
    .cube-title-block { position: relative; text-align: center; }

    /* .cube-title — identical to original aspekto, font-size 16vw */
    .cube-title {
      color: var(--color-white);
      text-transform: uppercase;
      font-family: var(--font-primary);
      font-size: 16vw;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.04em;
      text-shadow:
        0 0 60px rgba(255,101,1,.25),
        0 0 120px rgba(16,67,133,.2);
    }
    .cube-copyright {
      color: var(--color-white);
      font-family: var(--font-primary);
      font-size: 2rem;
      font-weight: 900;
      line-height: 1;
      text-align: center;
      opacity: .6;
    }

    /* ── BOTTOM FADE ─────────────────────────────────────────── */
    .header-opacity {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 10rem;
      background: linear-gradient(180deg, transparent, var(--bg-primary));
      z-index: 5;
      pointer-events: none;
    }

    /* ── LEFT HERO INFO ──────────────────────────────────────── */
    .hero-info {
      position: absolute;
      left: 2.5rem;
      bottom: 6rem;
      z-index: 10;
      max-width: 17rem;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-mono);
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .16rem;
      text-transform: uppercase;
      color: var(--color-orange);
      margin-bottom: .875rem;
    }
    .hero-tag-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--color-orange);
      flex-shrink: 0;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    .hero-headline {
      font-family: var(--font-primary);
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -.03em;
      color: var(--color-white);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .hero-headline em {
      font-style: normal;
      background: var(--gradient-hero);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-family: var(--font-primary);
      font-size: .8rem;
      line-height: 1.65;
      color: rgba(255,255,255,.38);
      margin-bottom: 1.5rem;
    }
    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .75rem 1.5rem;
      border-radius: 999px;
      background: var(--gradient-hero);
      color: #fff;
      font-family: var(--font-primary);
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .04rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: filter .3s ease, transform .3s ease, box-shadow .3s ease;
    }
    .hero-btn:hover {
      filter: brightness(1.15);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(255,101,1,.3);
    }
    .hero-btn-arrow {
      display: inline-block;
      transition: transform .3s ease;
    }
    .hero-btn:hover .hero-btn-arrow { transform: translateX(3px); }

    /* ── RIGHT MENU ──────────────────────────────────────────── */
    .hero-menu {
      position: absolute;
      right: 2.5rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: .125rem;
    }
    .menu-label {
      font-family: var(--font-mono);
      font-size: .48rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .18rem;
      color: rgba(255,255,255,.18);
      margin-bottom: .75rem;
      padding-left: .75rem;
    }
    .menu-item {
      display: flex;
      align-items: center;
      gap: .625rem;
      padding: .5rem .75rem;
      border-radius: .5rem;
      text-decoration: none;
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
      transition: background .3s ease, border-color .3s ease;
    }
    .menu-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      width: 2px;
      height: 0;
      background: var(--gradient-hero);
      border-radius: 1px;
      transform: translateY(-50%);
      transition: height .3s cubic-bezier(.16,1,.3,1);
    }
    .menu-item:hover::before { height: 60%; }
    .menu-item:hover {
      background: rgba(255,255,255,.04);
      border-color: rgba(255,255,255,.07);
    }
    .menu-num {
      font-family: var(--font-mono);
      font-size: .5rem;
      font-weight: 700;
      color: rgba(255,255,255,.18);
      min-width: 1.2rem;
      transition: color .3s ease;
    }
    .menu-text {
      font-family: var(--font-primary);
      font-size: .68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .045rem;
      color: rgba(255,255,255,.32);
      transition: color .3s ease;
      white-space: nowrap;
    }
    .menu-item:hover .menu-num  { color: var(--color-orange); }
    .menu-item:hover .menu-text { color: rgba(255,255,255,.9); }

    /* ── BOTTOM BAR ──────────────────────────────────────────── */
    .hero-bottom-bar {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 10;
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 1.25rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      animation: hero-bar-in 1s cubic-bezier(.16,1,.3,1) 1s both;
    }
    @keyframes hero-bar-in {
      from { opacity: 0; transform: translateY(1rem); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .bottom-meta {
      font-family: var(--font-mono);
      font-size: .58rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .15rem;
      color: rgba(255,255,255,.22);
    }
    .scroll-indicator {
      display: flex;
      align-items: center;
      gap: .75rem;
      cursor: pointer;
      text-decoration: none;
      transition: opacity .3s ease;
    }
    .scroll-indicator:hover { opacity: .55; }
    .scroll-indicator span {
      font-family: var(--font-mono);
      font-size: .58rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .15rem;
      color: rgba(255,255,255,.22);
    }
    .scroll-mouse {
      width: 1.25rem; height: 2rem;
      border: 1.5px solid rgba(255,255,255,.2);
      border-radius: 999px;
      display: flex;
      justify-content: center;
    }
    .scroll-wheel {
      width: 3px; height: 6px;
      background: rgba(255,255,255,.4);
      border-radius: 999px;
      margin-top: 5px;
      animation: scroll-bounce 1.5s ease-in-out infinite;
    }
    @keyframes scroll-bounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50%       { transform: translateY(5px); opacity: .3; }
    }

    /* ══════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════ */
    @media (max-width: 1200px) {
      .hero-info { display: none; }
    }
    @media (max-width: 900px) {
      :root {
        --prism-size:   20rem;
        --prism-height: 8rem;
        --prism-radius: 12rem;
      }
      .header-cube-block { width: var(--prism-size) !important; height: var(--prism-size) !important; }
      .hero-menu { display: none; }
      .cube-title { font-size: 18vw; }
      .hero-bottom-bar { padding: 1rem 1.5rem; flex-wrap: wrap; gap: .75rem; }
    }
    @media (max-width: 600px) {
      :root {
        --prism-size:   14rem;
        --prism-height: 6rem;
        --prism-radius: 8rem;
      }
      .hero-nav { padding: 0 1rem; }
      .nav-badge { display: none; }
      .header-cube-block { width: var(--prism-size) !important; height: var(--prism-size) !important; }
      .cube-title { font-size: 22vw; }
      .frame-item { border-radius: 1.25rem; }
      .hero-bottom-bar { padding: .875rem 1rem; flex-direction: column; align-items: flex-start; gap: .5rem; }
    }
    @media (max-width: 380px) {
      :root {
        --prism-size:   11rem;
        --prism-height: 4.5rem;
        --prism-radius: 6rem;
      }
      .frame-item { border-radius: 1rem; }
    }

    /* ══════════════════════════════════════════════════════════
       PORTFOLIO SECTION — Light Mode (Ivory Mist)
    ══════════════════════════════════════════════════════════ */
    .portfolio {
      position: relative;
      background: #f8f7f3;
      padding: 6rem 3.5rem 7rem;
      overflow: hidden;
    }

    /* Subtle warm texture / grain */
    .portfolio::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      pointer-events: none;
      z-index: 0;
    }

    /* Ambient warm glow — very subtle on light bg */
    .portfolio-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse 60% 40% at 10% 60%, rgba(255,101,1,.04) 0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 90% 20%, rgba(16,67,133,.04) 0%, transparent 60%);
    }

    /* ── Section Header ─────────────────────────────────────── */
    .portfolio-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 3rem;
      margin-bottom: 3.5rem;
      position: relative;
      z-index: 2;
    }

    .portfolio-header-left { flex: 1; }

    .portfolio-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: var(--font-mono);
      font-size: .56rem;
      font-weight: 700;
      letter-spacing: .2rem;
      text-transform: uppercase;
      color: var(--color-orange);
      margin-bottom: 1.5rem;
    }
    .portfolio-tag-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--color-orange);
      flex-shrink: 0;
      animation: pulse-dot 2s ease-in-out infinite;
    }

    .portfolio-title {
      font-family: var(--font-primary);
      font-size: clamp(3.5rem, 7vw, 6.5rem);
      font-weight: 900;
      line-height: .93;
      letter-spacing: -.04em;
      color: #000000;
      text-transform: uppercase;
    }
    .portfolio-title em {
      font-style: normal;
      background: var(--gradient-hero);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .portfolio-header-right {
      flex: 0 0 auto;
      max-width: 21rem;
      padding-bottom: .625rem;
    }
    .portfolio-desc {
      font-family: var(--font-primary);
      font-size: .88rem;
      line-height: 1.72;
      color: #4d4d4d;
    }

    /* ── Counter strip ──────────────────────────────────────── */
    .portfolio-count-strip {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .count-num {
      font-family: var(--font-mono);
      font-size: .52rem;
      font-weight: 700;
      letter-spacing: .14rem;
      text-transform: uppercase;
      color: #c8c8c8;
    }
    .count-line {
      flex: 1;
      height: 1px;
      background: #e8e8e8;
      position: relative;
      overflow: hidden;
    }
    .count-line-fill {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 0%;
      background: var(--gradient-hero);
      transition: width 1.2s cubic-bezier(.16,1,.3,1);
    }

    /* ── Grid ───────────────────────────────────────────────── */
    .portfolio-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
    }

    /* ── Card ───────────────────────────────────────────────── */
    .portfolio-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      background: #e8e8e8;
      aspect-ratio: 4 / 3;
      cursor: pointer;
      text-decoration: none;
      display: block;
      will-change: transform, filter, opacity;
      transition:
        box-shadow .55s cubic-bezier(.16,1,.3,1),
        border-color .55s ease;
      border: 1px solid rgba(0,0,0,.06);
    }
    .portfolio-card:hover {
      box-shadow:
        0 40px 80px rgba(0,0,0,.18),
        0 8px 24px rgba(0,0,0,.1);
      border-color: rgba(0,0,0,.1);
    }

    /* Video fill */
    .portfolio-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transition: transform .75s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-card:hover video { transform: scale(1.065); }

    /* Dark gradient overlay — keeps text readable over any video */
    .card-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        165deg,
        rgba(8,8,8,.1) 0%,
        rgba(8,8,8,.18) 35%,
        rgba(8,8,8,.7) 75%,
        rgba(8,8,8,.93) 100%
      );
      transition: background .55s ease;
    }
    .portfolio-card:hover .card-overlay {
      background: linear-gradient(
        165deg,
        rgba(8,8,8,.04) 0%,
        rgba(8,8,8,.1) 35%,
        rgba(8,8,8,.6) 75%,
        rgba(8,8,8,.88) 100%
      );
    }

    /* Orange glow line at card bottom */
    .card-glow-line {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gradient-hero);
      z-index: 4;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .65s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-card:hover .card-glow-line { transform: scaleX(1); }

    /* Card inner content */
    .card-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.75rem 2rem;
    }

    /* Category badge */
    .card-category {
      align-self: flex-start;
      font-family: var(--font-mono);
      font-size: .48rem;
      font-weight: 700;
      letter-spacing: .16rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      padding: .35rem .9rem;
      border-radius: 999px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;
    }
    .portfolio-card:hover .card-category {
      background: rgba(255,101,1,.2);
      color: #ff8533;
      border-color: rgba(255,101,1,.35);
    }

    /* Card bottom row */
    .card-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
    }
    .card-title {
      font-family: var(--font-primary);
      font-size: clamp(1rem, 1.8vw, 1.45rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -.025em;
      color: var(--color-white);
      text-transform: uppercase;
    }
    .card-year {
      font-family: var(--font-mono);
      font-size: .55rem;
      font-weight: 700;
      color: rgba(255,255,255,.32);
      letter-spacing: .1rem;
      white-space: nowrap;
      flex-shrink: 0;
      padding-bottom: .15rem;
    }

    /* Arrow icon — top-right corner */
    .card-arrow {
      position: absolute;
      top: 1.75rem;
      right: 2rem;
      width: 2.25rem;
      height: 2.25rem;
      border: 1.5px solid rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      color: rgba(255,255,255,.4);
      z-index: 3;
      transition:
        background .4s cubic-bezier(.16,1,.3,1),
        border-color .4s ease,
        color .4s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-card:hover .card-arrow {
      background: var(--gradient-hero);
      border-color: transparent;
      color: #fff;
      transform: rotate(45deg);
    }

    /* Card index number — decorative */
    .card-index-num {
      position: absolute;
      top: 1.75rem;
      left: 2rem;
      font-family: var(--font-mono);
      font-size: .42rem;
      font-weight: 700;
      letter-spacing: .1rem;
      color: rgba(255,255,255,.18);
      z-index: 3;
    }

    /* ── CTA Button ─────────────────────────────────────────── */
    .portfolio-cta-wrap {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      padding-top: 1rem;
    }

    .portfolio-cta {
      display: inline-flex;
      align-items: center;
      gap: .875rem;
      padding: 1.1rem 2.75rem;
      border: 1.5px solid #c8c8c8;
      border-radius: 999px;
      color: #4d4d4d;
      font-family: var(--font-primary);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .07rem;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      background: transparent;
      transition:
        border-color .45s ease,
        color .45s ease,
        box-shadow .45s ease,
        transform .45s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-hero);
      opacity: 0;
      transition: opacity .45s ease;
    }
    .portfolio-cta-text, .portfolio-cta-arrow {
      position: relative;
      z-index: 1;
    }
    .portfolio-cta-arrow {
      display: inline-block;
      transition: transform .45s cubic-bezier(.16,1,.3,1);
    }
    .portfolio-cta:hover {
      border-color: transparent;
      color: #fff;
      box-shadow: 0 18px 52px rgba(255,101,1,.25);
      transform: translateY(-2px);
    }
    .portfolio-cta:hover::before { opacity: 1; }
    .portfolio-cta:hover .portfolio-cta-arrow { transform: translateX(5px); }

    /* ── Portfolio Responsive ───────────────────────────────── */
    @media (max-width: 1100px) {
      .portfolio { padding: 5rem 2.5rem 5.5rem; }
    }
    @media (max-width: 900px) {
      .portfolio { padding: 4.5rem 2rem 4.5rem; }
      .hero { border-radius: 0 0 1.75rem 1.75rem; }
      .portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
        margin-bottom: 3rem;
      }
      .portfolio-header-right { max-width: 100%; }
      .portfolio-grid { gap: 1rem; }
      .card-content { padding: 1.25rem 1.5rem; }
      .card-arrow { top: 1.25rem; right: 1.5rem; }
      .card-index-num { top: 1.25rem; left: 1.5rem; }
    }
    @media (max-width: 600px) {
      .portfolio { padding: 3.5rem 1rem 3.5rem; }
      .hero { border-radius: 0 0 1.25rem 1.25rem; }
      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: .875rem;
      }
      .portfolio-card { aspect-ratio: 16 / 10; }
      .portfolio-title { font-size: clamp(2.75rem, 13vw, 4rem); }
      .portfolio-header { margin-bottom: 2.5rem; }
      .portfolio-cta { padding: .9rem 2rem; font-size: .7rem; }
    }

    /* ══════════════════════════════════════════════════════════
       SERVICES SECTION — 3D Scroll (Vertora pattern)
    ══════════════════════════════════════════════════════════ */
    .services {
      position: relative;
      background: #f8f7f3;
      padding: 9rem 0 11rem;
      overflow: hidden;
    }

    /* Subtle top divider */
    .services::before {
      content: '';
      position: absolute;
      top: 0; left: 5%; right: 5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,.1), transparent);
    }

    /* ── Header ─────────────────────────────────────────────── */
    .services-header {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 4rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 5rem;
    }

    .services-header-left { flex: 1; }

    .services-tag {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      font-family: var(--font-mono);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .18rem;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 1.25rem;
    }

    .services-tag-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--color-orange);
      display: inline-block;
    }

    .services-title {
      font-family: var(--font-primary);
      font-size: clamp(2.5rem, 4.5vw, 3.75rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -.035em;
      color: #111;
    }

    .services-title em {
      font-style: italic;
      color: var(--color-orange);
    }

    .services-desc {
      font-family: var(--font-primary);
      font-size: .9rem;
      line-height: 1.75;
      color: #777;
      max-width: 340px;
      text-align: right;
      padding-bottom: .25rem;
    }

    /* ── 3D List (Desktop) ──────────────────────────────────── */
    /* perspective() is embedded directly in each item's transform —
       the most reliable cross-browser 3D technique (no shared
       perspective container needed, no flex/preserve-3d conflicts) */
    .services-3d-scene { position: relative; }

    .services-list {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 4rem;
      display: flex;
      flex-direction: column;
    }

    .services-item {
      position: relative;
      display: flex;
      align-items: center;
      padding: 1.6rem 0;
      text-decoration: none;
      color: #111;
      width: 100%;
      text-align: left;
      will-change: transform, opacity;
      /* Initial state matches what GSAP will set — prevents FOUC */
      opacity: 0.15;
      border-top: 1px solid rgba(0,0,0,.07);
    }

    .services-item:last-child { border-bottom: 1px solid rgba(0,0,0,.07); }

    /* Sibling dimming on hover */
    .services-list:hover .services-item:not(:hover) {
      opacity: .08 !important;
      filter: blur(4px) !important;
    }

    /* Row layout: num · name · arrow */
    .services-text-wrap {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      width: 100%;
    }

    .services-num {
      font-family: var(--font-mono);
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: .14rem;
      color: var(--color-orange);
      flex-shrink: 0;
      line-height: 1;
      user-select: none;
    }

    /* Animated strikethrough via ::after — no extra HTML needed */
    .services-name {
      position: relative;
      font-size: clamp(2.4rem, 5.5vw, 5.25rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -.03em;
      white-space: nowrap;
      flex: 1;
      transition: color .4s ease;
    }

    .services-name::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      width: 0;
      height: .38rem;
      background: #111;
      border-radius: 2px;
      transform: translateY(-50%);
      transition: width .55s cubic-bezier(.19, 1, .22, 1);
      pointer-events: none;
    }

    .services-item:hover .services-name::after { width: 100%; }

    /* Arrow — pushed to right edge */
    .services-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      flex-shrink: 0;
      border: 1.5px solid rgba(0,0,0,.16);
      border-radius: 50%;
      font-size: .82rem;
      color: rgba(0,0,0,.28);
      user-select: none;
      transition:
        background  .4s ease,
        border-color .4s ease,
        color        .4s ease,
        transform    .45s cubic-bezier(.16,1,.3,1);
    }

    .services-item:hover .services-arrow {
      background: #111;
      border-color: #111;
      color: #fff;
      transform: rotate(45deg);
    }

    /* ── Global Floating Image (truly position:fixed, outside 3D ctx) ── */
    /* Must NOT be a child of any transformed/preserve-3d element */
    .svc-float {
      position: fixed;
      top: 0; left: 0;
      width: 340px;
      height: 340px;
      border-radius: 20px;
      overflow: hidden;
      pointer-events: none;
      z-index: 9990;
      opacity: 0;
      box-shadow: 0 28px 64px rgba(0,0,0,.16), 0 4px 16px rgba(0,0,0,.06);
      transition: opacity .4s cubic-bezier(.19, 1, .22, 1);
      will-change: transform, opacity;
    }

    .svc-float.is-visible { opacity: 1; }

    .svc-float img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Mobile Grid ────────────────────────────────────────── */
    .services-mobile-grid {
      display: none;
    }

    /* ── Responsive ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .services { padding: 5.5rem 0 7rem; }

      .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 1.5rem;
        margin-bottom: 3rem;
      }

      .services-desc { text-align: left; max-width: 100%; }

      /* Hide desktop list */
      .services-3d-scene { display: none; }
      /* Also hide global float on mobile */
      .svc-float { display: none; }

      /* Show mobile grid */
      .services-mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 0 1.25rem;
      }

      .services-mobile-card {
        display: flex;
        flex-direction: column;
        gap: .6rem;
        text-decoration: none;
        color: #111;
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s ease, transform .6s ease;
      }

      .services-mobile-card.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      .services-mobile-img {
        width: 100%;
        aspect-ratio: 3 / 4;
        border-radius: 14px;
        overflow: hidden;
        background: #e5e3db;
        transition: transform .4s cubic-bezier(.16,1,.3,1);
      }

      .services-mobile-img img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .55s cubic-bezier(.16,1,.3,1);
      }

      .services-mobile-card:active .services-mobile-img { transform: scale(1.025); }
      .services-mobile-card:active .services-mobile-img img { transform: scale(1.06); }

      .services-mobile-meta {
        padding: 0 .25rem;
      }

      .services-mobile-num {
        font-family: var(--font-mono);
        font-size: .48rem;
        font-weight: 700;
        letter-spacing: .12rem;
        color: var(--color-orange);
        text-transform: uppercase;
        display: block;
        margin-bottom: .3rem;
      }

      .services-mobile-title {
        font-family: var(--font-primary);
        font-size: clamp(.8rem, 3.5vw, .95rem);
        font-weight: 800;
        line-height: 1.25;
        color: #111;
        letter-spacing: -.015em;
      }
    }

    @media (max-width: 480px) {
      .services-mobile-grid { gap: .75rem; padding: 0 1rem; }
      .services-mobile-img { border-radius: 12px; }
    }

    @media (min-width: 901px) and (max-width: 1200px) {
      .services-header,
      .services-list { padding: 0 2.5rem; }
      .services-name { font-size: clamp(2rem, 4.5vw, 4.5rem); }
    }

    /* ══════════════════════════════════════════════════════════
       SITE NAV — fixed, glass, from design_system3
    ══════════════════════════════════════════════════════════ */
    .site-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      background: rgba(8,8,8,.88);
      border-bottom: 1px solid var(--border-primary);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 3.25rem;
      gap: 1.5rem;
      transition: background .4s ease;
    }
    .site-nav.scrolled {
      background: rgba(8,8,8,.96);
    }

    .site-nav-brand {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .site-nav-logo {
      height: 1.75rem;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .site-nav-links {
      display: flex;
      align-items: center;
      gap: .125rem;
    }
    .site-nav-links a {
      font-family: var(--font-primary);
      font-size: .7rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: .05rem;
      color: rgba(255,255,255,.5);
      padding: .4rem .7rem;
      border-radius: .5rem;
      border: 1px solid transparent;
      transition: all .25s ease;
      white-space: nowrap;
      text-decoration: none;
    }
    .site-nav-links a:hover,
    .site-nav-links a.active {
      color: var(--color-white);
      border-color: var(--border-secondary);
      background: rgba(255,255,255,.06);
    }

    .site-nav-cta {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .5rem 1.25rem;
      border-radius: 999px;
      background: var(--gradient-hero);
      color: #fff;
      font-family: var(--font-primary);
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .04rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: filter .3s ease, transform .3s ease, box-shadow .3s ease;
    }
    .site-nav-cta:hover {
      filter: brightness(1.18);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255,101,1,.3);
    }

    /* Mobile burger */
    .site-nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: .5rem;
      background: none;
      border: none;
    }
    .site-nav-burger span {
      display: block;
      width: 22px; height: 1.5px;
      background: rgba(255,255,255,.7);
      border-radius: 999px;
      transition: all .3s ease;
    }
    .site-nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .site-nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .site-nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile overlay */
    .site-nav-mobile {
      position: fixed;
      top: 3.25rem; left: 0; right: 0; bottom: 0;
      background: rgba(8,8,8,.97);
      backdrop-filter: blur(24px);
      z-index: 9998;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .site-nav-mobile.open {
      opacity: 1;
      pointer-events: auto;
    }
    .site-nav-mobile a {
      font-family: var(--font-primary);
      font-size: 1.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: -.03em;
      color: rgba(255,255,255,.5);
      text-decoration: none;
      padding: .5rem 1rem;
      transition: color .25s ease;
    }
    .site-nav-mobile a:hover { color: var(--color-white); }
    .site-nav-mobile .site-nav-mobile-cta {
      margin-top: 1rem;
      font-size: .85rem !important;
      font-weight: 700 !important;
      letter-spacing: .06rem !important;
      padding: .875rem 2.5rem !important;
      border-radius: 999px !important;
      background: var(--gradient-hero) !important;
      color: #fff !important;
    }

    @media (max-width: 900px) {
      .site-nav-links { display: none; }
      .site-nav-burger { display: flex; }
    }
    @media (max-width: 600px) {
      .site-nav-cta { display: none; }
      .site-nav { padding: 0 1.25rem; }
    }

/* ================================================ */

/* ── DEPOIMENTOS SECTION ──────────────────────────────────── */
  .dep-section {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 7rem 0 8rem;
  }

  /* ── HEADER ───────────────────────────────────────────────── */
  .dep-header {
    max-width: 82.5rem;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }

  .dep-tag {
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
  }

  .dep-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .dep-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
  }

  .dep-title em {
    font-style: normal;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .dep-desc {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-neutral-light);
    max-width: 28rem;
    text-align: right;
  }

  /* ── TRACKS ───────────────────────────────────────────────── */
  .dep-tracks-wrap {
    position: relative;
    overflow: hidden;
    /* Height set via JS after item measurement */
  }

  .dep-track {
    display: flex;
    align-items: flex-start; /* required so translateY on items works correctly */
    gap: 1.25rem;
    will-change: transform;
  }

  /* ── ITEM WRAPPER — flex child that carries card + mobile caption ── */
  .dep-item-wrap {
    flex-shrink: 0;
    width: clamp(160px, 17vw, 250px);
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* ── ITEM ─────────────────────────────────────────────────── */
  .dep-item {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    cursor: none;
    background: #111;
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
    transition: box-shadow .5s ease, filter .5s ease, opacity .5s ease;
  }

  /* ── MOBILE CAPTION — shown below the card on small screens ─ */
  .dep-item-caption {
    display: none; /* hidden on desktop — info lives in the hover overlay */
  }

  /* Non-hovered wraps blur out when one is active */
  .dep-tracks-wrap.has-hovered .dep-item-wrap:not(.is-hovered) .dep-item {
    filter: blur(4px);
    opacity: 0.35;
  }

  .dep-item-wrap.is-hovered .dep-item {
    box-shadow: 0 20px 64px rgba(0,0,0,.8);
  }

  .dep-item video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    /* Default: paused at frame 1, black & white */
    filter: grayscale(1);
    transition: transform .65s cubic-bezier(.16,1,.3,1), filter .5s ease;
  }

  /* Hovered wrap: color reveals on video, slight zoom */
  .dep-item-wrap.is-hovered video {
    filter: grayscale(0);
    transform: scale(1.04);
  }

  /* ── OVERLAY ──────────────────────────────────────────────── */
  .dep-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.38);
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    border-radius: inherit;
  }

  .dep-item-wrap.is-hovered .dep-item-overlay { opacity: 1; }

  .dep-play-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s cubic-bezier(.16,1,.3,1), background .25s ease;
    flex-shrink: 0;
  }

  .dep-item:hover .dep-play-btn { transform: scale(1.1); }

  .dep-play-btn svg {
    width: 18px; height: 18px;
    fill: #111;
    margin-left: 3px;
    transition: fill .25s ease;
  }

  .dep-item-meta {
    text-align: center;
    padding: 0 .85rem;
    width: 100%;
  }

  .dep-item-name {
    font-family: var(--font-primary);
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.3;
    /* Long names wrap gracefully */
    word-break: break-word;
  }

  .dep-item-role {
    font-family: var(--font-mono);
    font-size: .5rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .06em;
    margin-top: .35rem;
    line-height: 1.45;
    /* Role can be multi-word — wraps cleanly */
    word-break: break-word;
  }

  /* ── SIDE FADES — scoped inside dep-tracks-wrap ──────────── */
  .dep-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: clamp(5rem, 10vw, 14rem);
    pointer-events: none;
    z-index: 10;
  }

  .dep-fade--left {
    left: 0;
    background: linear-gradient(90deg, #000 15%, transparent 100%);
  }

  .dep-fade--right {
    right: 0;
    background: linear-gradient(270deg, #000 15%, transparent 100%);
  }

  /* ── LIGHTBOX ─────────────────────────────────────────────── */
  .dep-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
  }

  .dep-lightbox.is-open {
    opacity: 1;
    visibility: visible;
  }

  .dep-lightbox-bg {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .dep-lightbox-video {
    position: relative;
    z-index: 1;
    max-height: 88vh;
    max-width: min(90vw, 480px);
    aspect-ratio: 9 / 16;
    border-radius: 1.5rem;
    object-fit: cover;
    box-shadow: 0 40px 120px rgba(0,0,0,.85);
    transform: scale(.9);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
  }

  .dep-lightbox.is-open .dep-lightbox-video { transform: scale(1); }

  .dep-lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    z-index: 2;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    font-size: .9rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    line-height: 1;
  }

  .dep-lightbox-close:hover {
    background: rgba(255,255,255,.22);
    transform: scale(1.1);
  }

  /* Track 2 is unused — zigzag lives entirely in track 1 */
  #dep-track-2 { display: none; }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .dep-section { padding: 5rem 0 4rem; }

    .dep-header {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 2.5rem;
    }

    .dep-desc { text-align: left; }

    .dep-fade { width: 4rem; }

    .dep-item-wrap { width: clamp(140px, 40vw, 210px); }

    /* Caption appears below the card on mobile */
    .dep-item-caption {
      display: block;
      padding: .55rem .35rem 0;
    }

    .dep-item-caption .dep-item-name {
      font-family: var(--font-primary);
      font-size: .65rem;
      font-weight: 700;
      color: rgba(255,255,255,.9);
      letter-spacing: .04em;
      text-transform: uppercase;
      line-height: 1.3;
    }

    .dep-item-caption .dep-item-role {
      font-family: var(--font-mono);
      font-size: .48rem;
      color: rgba(255,255,255,.45);
      letter-spacing: .06em;
      margin-top: .25rem;
      line-height: 1.45;
    }
  }

  @media (max-width: 480px) {
    .dep-item-wrap { width: 140px; }
    .dep-title { font-size: 2.25rem; }
  }

/* ================================================ */

/* ── SECTION ──────────────────────────────────────────────── */
  .brd-section {
    position: relative;
    background: #f8f7f3;
    overflow: hidden;
    padding: 8rem 0 7rem;
    /* Lifts from the black depoimentos section with a rounded top */
    border-radius: 2.5rem 2.5rem 0 0;
    margin-top: -2.5rem;
    z-index: 2;
  }

  /* Dot-grid background — subtle texture */
  .brd-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .45;
    pointer-events: none;
    z-index: 0;
  }

  .brd-container {
    max-width: 82.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  /* ── HEADER ───────────────────────────────────────────────── */
  .brd-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4.5rem;
  }

  .brd-tag {
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-transform: uppercase;
    color: #808080;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
  }

  .brd-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .brd-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    color: #080808;
    text-transform: uppercase;
    margin: 0;
  }

  .brd-title em {
    font-style: normal;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .brd-header-right { text-align: right; flex-shrink: 0; }

  .brd-stat {
    font-family: var(--font-primary);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #080808;
    letter-spacing: -.06em;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: .15rem;
    justify-content: flex-end;
  }

  .brd-stat-num {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .brd-stat-label {
    font-size: .8em;
    font-weight: 400;
    color: #808080;
    letter-spacing: -.01em;
    -webkit-text-fill-color: #808080;
  }

  .brd-desc {
    font-family: var(--font-primary);
    font-size: .9rem;
    color: #808080;
    line-height: 1.6;
    max-width: 22rem;
    margin-top: .75rem;
    text-align: right;
  }

  /* ── GRID ─────────────────────────────────────────────────── */
  .brd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* ── CARD ─────────────────────────────────────────────────── */
  .brd-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,.07);
    cursor: none;
    aspect-ratio: 4 / 3;
    box-shadow:
      0 1px 3px rgba(0,0,0,.05),
      0 6px 28px rgba(0,0,0,.04);
    /* Initial state — animated in via JS */
    opacity: 0;
    transform: scale(.9) translateY(2rem);
    transition:
      box-shadow .5s ease,
      border-color .4s ease;
  }

  .brd-card.is-revealed {
    opacity: 1;
    transform: scale(1) translateY(0);
    transition:
      opacity   .7s cubic-bezier(.16,1,.3,1),
      transform .7s cubic-bezier(.16,1,.3,1),
      box-shadow .5s ease,
      border-color .4s ease;
  }

  /* ── LIQUID FILL ──────────────────────────────────────────── */
  /* Black fill expands from cursor entry point via clip-path */
  .brd-card-fill {
    position: absolute;
    inset: -1px;
    background: #080808;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path .65s cubic-bezier(.16,1,.3,1);
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
  }

  .brd-card.is-filled .brd-card-fill {
    clip-path: circle(150% at var(--mx) var(--my));
  }

  /* On fill: border disappears, warm glow appears */
  .brd-card.is-filled {
    border-color: transparent;
    box-shadow:
      0 12px 40px rgba(255,101,1,.18),
      0 28px 80px rgba(0,0,0,.22);
  }

  /* ── LOGO — mix-blend-mode trick ─────────────────────────── */
  /* White text on white bg = black. White text on black bg = white.
     Automatic inversion with zero extra DOM elements. */
  .brd-logo-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    will-change: transform;
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    /* The magic blend: white element inverts based on background */
    mix-blend-mode: difference;
  }

  .brd-logo-name {
    font-family: var(--font-primary);
    font-size: clamp(.85rem, 1.5vw, 1.1rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #ffffff;
    text-align: center;
    line-height: 1.15;
    padding: 0 1.25rem;
  }

  .brd-logo-cat {
    font-family: var(--font-mono);
    font-size: .48rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: .5;
    margin-top: .55rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Placeholder entries: slightly dimmer */
  .brd-card.is-placeholder .brd-logo-name { opacity: .35; }
  .brd-card.is-placeholder .brd-logo-cat  { opacity: .2;  }

  /* ── PULSE DOT ────────────────────────────────────────────── */
  .brd-dot {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--color-orange);
    z-index: 3;
    mix-blend-mode: difference;
  }

  .brd-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--color-orange);
    opacity: .35;
    animation: brd-pulse 2.6s ease-in-out infinite;
  }

  /* Stagger the pulse per card (set via inline animation-delay) */
  @keyframes brd-pulse {
    0%, 100% { transform: scale(1); opacity: .35; }
    50%       { transform: scale(2.5); opacity: 0; }
  }

  /* ── SCANNING LINE ────────────────────────────────────────── */
  .brd-scanner {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,101,1,.18) 40%,
      rgba(255,101,1,.18) 60%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 0;
    animation: brd-scan 9s cubic-bezier(.4,0,.6,1) infinite;
  }

  @keyframes brd-scan {
    0%   { top: -5%;  opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 105%; opacity: 0; }
  }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .brd-section  { padding: 6rem 0 5rem; }
    .brd-header   { flex-direction: column; align-items: flex-start; }
    .brd-header-right { text-align: left; }
    .brd-stat     { justify-content: flex-start; }
    .brd-desc     { text-align: left; max-width: 100%; }
    .brd-grid     { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 480px) {
    .brd-grid  { gap: .75rem; }
    .brd-title { font-size: 2.25rem; }
  }

/* ================================================ */

/* ── SECTION ──────────────────────────────────────────────── */
  .fnd-section {
    position: relative;
    background: #f8f7f3;
    overflow: hidden;
    padding: 0 0 9rem;
  }

  .fnd-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.1) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .4;
    pointer-events: none;
    z-index: 0;
  }

  /* ── TICKER ───────────────────────────────────────────────── */
  .fnd-ticker {
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.09);
    border-bottom: 1px solid rgba(0,0,0,.09);
    padding: .65rem 0;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
  }

  .fnd-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: fnd-ticker-scroll 22s linear infinite;
    gap: 0;
  }

  @keyframes fnd-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .fnd-ticker-item {
    font-family: var(--font-mono);
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .22rem;
    text-transform: uppercase;
    color: rgba(0,0,0,.35);
    padding: 0 2.5rem;
  }

  .fnd-ticker-dot {
    color: var(--color-orange);
    font-size: .55rem;
    flex-shrink: 0;
  }

  /* ── CONTAINER ────────────────────────────────────────────── */
  .fnd-container {
    max-width: 82.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
  }

  /* ── GRID ─────────────────────────────────────────────────── */
  .fnd-grid {
    display: grid;
    grid-template-columns: 53% 1fr;
    gap: 5rem;
    align-items: center;
  }

  /* ── LEFT ─────────────────────────────────────────────────── */
  .fnd-left {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  /* Vertical "FOUNDER" rotated label */
  .fnd-vert-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-mono);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .28rem;
    text-transform: uppercase;
    color: rgba(0,0,0,.22);
    flex-shrink: 0;
    padding-top: .5rem;
    user-select: none;
    /* Thin left border (like a rail) */
    border-right: 1px solid rgba(0,0,0,.1);
    padding-right: .75rem;
    margin-right: -.5rem;
  }

  .fnd-content { flex: 1; }

  .fnd-tag {
    font-family: var(--font-mono);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .2rem;
    text-transform: uppercase;
    color: #808080;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
  }

  .fnd-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .fnd-title {
    font-family: var(--font-primary);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.05em;
    color: #080808;
    text-transform: uppercase;
    margin: 0 0 2rem;
  }

  .fnd-title em {
    font-style: normal;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .fnd-bio {
    font-family: var(--font-primary);
    font-size: .975rem;
    line-height: 1.75;
    color: #4d4d4d;
    margin-bottom: 2.5rem;
    max-width: 38rem;
  }

  /* ── STATS ────────────────────────────────────────────────── */
  .fnd-stats {
    display: flex;
    gap: 0;
    margin-bottom: 2.75rem;
    border-top: 1px solid rgba(0,0,0,.09);
    border-bottom: 1px solid rgba(0,0,0,.09);
  }

  .fnd-stat {
    flex: 1;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .fnd-stat + .fnd-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(0,0,0,.09);
  }

  .fnd-stat-num {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.06em;
    color: #080808;
    padding-left: 1.5rem;
  }

  .fnd-stat-num span {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .fnd-stat-label {
    font-family: var(--font-mono);
    font-size: .48rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #808080;
    margin-top: .45rem;
    line-height: 1.5;
    padding-left: 1.5rem;
  }

  /* ── CTA BUTTON ───────────────────────────────────────────── */
  .fnd-cta {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    background: #080808;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .01em;
    padding: .9rem 1.9rem;
    border-radius: 100px;
    cursor: none;
    will-change: transform;
    transition: background .3s ease;
  }

  .fnd-cta:hover { background: var(--color-orange); }

  .fnd-cta-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--color-orange);
    flex-shrink: 0;
    animation: fnd-dot-pulse 2.2s ease-in-out infinite;
    transition: background .3s ease;
  }

  .fnd-cta:hover .fnd-cta-dot { background: rgba(255,255,255,.7); }

  @keyframes fnd-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.7); opacity: .5; }
  }

  /* ── PHOTO ────────────────────────────────────────────────── */
  .fnd-right { position: relative; }

  .fnd-photo-wrap {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow:
      0 4px 24px rgba(0,0,0,.09),
      0 20px 80px rgba(0,0,0,.13);
  }

  .fnd-photo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 1s cubic-bezier(.16,1,.3,1);
    will-change: transform;
  }

  /* Cinematic orange-blue gradient at bottom of photo */
  .fnd-photo-grad {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(
      to top,
      rgba(16,67,133,.55) 0%,
      rgba(255,101,1,.25) 45%,
      transparent 100%
    );
    pointer-events: none;
    border-radius: 0 0 2rem 2rem;
  }

  /* Film-grain overlay (SVG noise base64) */
  .fnd-photo-grain {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: .06;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    mix-blend-mode: overlay;
  }

  /* ── FLOATING QUOTE BADGE ─────────────────────────────────── */
  .fnd-badge {
    position: absolute;
    bottom: -1.75rem;
    left: -2.25rem;
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,.13);
    max-width: 17rem;
    z-index: 10;
    border: 1px solid rgba(0,0,0,.06);
    /* entrance animation */
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .8s .5s cubic-bezier(.16,1,.3,1), transform .8s .5s cubic-bezier(.16,1,.3,1);
  }

  .fnd-badge.is-visible { opacity: 1; transform: translateY(0); }

  .fnd-badge-quote {
    font-family: var(--font-primary);
    font-size: .82rem;
    font-weight: 600;
    color: #080808;
    line-height: 1.45;
    font-style: italic;
  }

  .fnd-badge-author {
    font-family: var(--font-mono);
    font-size: .46rem;
    color: #808080;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: .65rem;
    display: flex;
    align-items: center;
    gap: .5rem;
  }

  .fnd-badge-author::before {
    content: '';
    width: 18px; height: 1px;
    background: var(--color-orange);
    flex-shrink: 0;
  }

  /* ── BACKGROUND WATERMARK ─────────────────────────────────── */
  .fnd-watermark {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-primary);
    font-size: clamp(16rem, 32vw, 36rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.08em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,0,0,.05);
    pointer-events: none;
    user-select: none;
    z-index: 0;
    white-space: nowrap;
  }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .fnd-section { padding: 0 0 6rem; }
    .fnd-grid { grid-template-columns: 1fr; gap: 3rem; }
    .fnd-right { order: -1; }
    .fnd-badge { left: 1rem; bottom: -1rem; max-width: 14rem; }
    .fnd-title { font-size: 2.5rem; }
    .fnd-watermark { font-size: 55vw; }
    .fnd-ticker { margin-bottom: 4rem; }
  }

  @media (max-width: 480px) {
    .fnd-stats { flex-wrap: wrap; }
    .fnd-stat { flex: 0 0 50%; }
    .fnd-cta { width: 100%; justify-content: center; }
    .fnd-vert-label { display: none; }
    .fnd-watermark { display: none; }
  }

/* ================================================ */

/* ── SECTION ──────────────────────────────────────────────── */
  .nit-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── VIDEO MOSAIC BACKGROUND ──────────────────────────────── */
  .nit-videos {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    z-index: 0;
  }

  .nit-video-cell {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
  }

  .nit-video-cell.is-loaded { opacity: 1; }

  .nit-video-cell video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) brightness(.5) contrast(1.1);
  }

  /* ── SCANLINE EFFECT ──────────────────────────────────────── */
  .nit-scanlines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
      to bottom,
      transparent       0px,
      transparent       3px,
      rgba(0,0,0,.07)   3px,
      rgba(0,0,0,.07)   4px
    );
  }

  /* ── DARK VIGNETTE OVERLAY ────────────────────────────────── */
  .nit-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.82) 100%);
  }

  /* ── CONTAINER ────────────────────────────────────────────── */
  .nit-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 82.5rem;
    margin: 0 auto;
    padding: 7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── GLASS CARD ───────────────────────────────────────────── */
  .nit-glass {
    position: relative;
    width: 100%;
    max-width: 58rem;
    padding: 4rem 4.5rem;
    border-radius: 2rem;
    overflow: hidden;

    /* Frosted glass */
    backdrop-filter: blur(28px) saturate(160%) brightness(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(160%) brightness(1.08);
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.13);

    /* Depth — neutro, sem brilho colorido para não atrapalhar a leitura */
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.12),
      inset 0 -1px 0 rgba(0,0,0,.2),
      0 40px 120px rgba(0,0,0,.6);

    /* Entrance */
    opacity: 0;
    transform: translateY(3rem) scale(.97);
    transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  }

  .nit-glass.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* ── GLASS INNER ──────────────────────────────────────────── */
  .nit-glass-inner { position: relative; z-index: 1; }

  .nit-tag {
    font-family: var(--font-mono);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .22rem;
    text-transform: uppercase;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateX(-1rem);
    transition: opacity .6s ease, transform .6s ease;
  }

  .nit-tag.is-visible { opacity: 1; transform: translateX(0); }

  .nit-tag::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--color-orange);
    flex-shrink: 0;
  }

  .nit-title {
    font-family: var(--font-primary);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -.05em;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 2.25rem;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .7s .1s ease, transform .7s .1s cubic-bezier(.16,1,.3,1);
  }

  .nit-title.is-visible { opacity: 1; transform: translateY(0); }

  .nit-title em {
    font-style: normal;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── WORD-BY-WORD TEXT REVEAL ─────────────────────────────── */
  .nit-text {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    line-height: 1.78;
    color: rgba(255,255,255,.75);
    margin-bottom: 2.5rem;
  }

  .nit-word {
    display: inline;
  }

  .nit-word-inner {
    display: inline-block;
    opacity: 0;
    transform: translateY(.6rem);
    transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
  }

  .nit-word-inner.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Highlighted words */
  .nit-word-inner.is-highlight {
    color: #fff;
    font-weight: 600;
  }

  /* ── DIVIDER LINE ─────────────────────────────────────────── */
  .nit-divider {
    height: 1px;
    background: linear-gradient(
      90deg,
      var(--color-orange) 0%,
      rgba(16,67,133,.7) 50%,
      transparent 100%
    );
    margin-bottom: 2.5rem;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(.16,1,.3,1);
  }

  .nit-divider.is-visible { transform: scaleX(1); }

  /* ── CTA ──────────────────────────────────────────────────── */
  .nit-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1);
  }

  .nit-cta-wrap.is-visible { opacity: 1; transform: translateY(0); }

  .nit-cta {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    background: #fff;
    color: #080808;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 1rem 2.25rem;
    border-radius: 100px;
    cursor: none;
    transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease;
    will-change: transform;
    flex-shrink: 0;
  }

  .nit-cta:hover {
    background: var(--color-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255,101,1,.35);
  }

  .nit-cta svg {
    width: 15px; height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s ease;
    flex-shrink: 0;
  }

  .nit-cta:hover svg { transform: translateX(4px); }

  .nit-cta-note {
    font-family: var(--font-mono);
    font-size: .48rem;
    color: rgba(255,255,255,.35);
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.6;
  }

  /* ── RESPONSIVE ───────────────────────────────────────────── */
  @media (max-width: 900px) {
    .nit-videos {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
    .nit-glass { padding: 2.75rem 2.25rem; }
    .nit-title { font-size: 2.25rem; }
    .nit-text  { font-size: .95rem; }
  }

  @media (max-width: 480px) {
    .nit-glass { padding: 2rem 1.5rem; border-radius: 1.5rem; }
    .nit-cta-wrap { flex-direction: column; align-items: flex-start; }
    .nit-cta { width: 100%; justify-content: center; }
  }

/* ================================================ */

.cct-section {
    position: relative;
    background: #f0ebe3;
    color: #080808;
    overflow: hidden;
    border-radius: 0 0 2.5rem 2.5rem;
  }

  .cct-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 1px 1px, rgba(8,8,8,.05) 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .cct-section::after {
    content: '';
    position: absolute;
    right: -15%;
    top: 10%;
    width: 55%;
    max-width: 32rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,67,133,.08) 0%, transparent 65%);
    pointer-events: none;
  }

  .cct-container {
    position: relative;
    z-index: 1;
    max-width: 82.5rem;
    margin: 0 auto;
    padding: 6.5rem 2rem 7.5rem;
  }

  .cct-grid {
    display: grid;
    grid-template-columns: 1fr min(28rem, 100%);
    gap: 4.5rem 4rem;
    align-items: start;
  }

  /* ── Coluna esquerda: “transmission” art ─ */
  .cct-aside {
    position: relative;
  }

  .cct-tag {
    font-family: var(--font-mono);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .22rem;
    text-transform: uppercase;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
  }

  .cct-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--color-orange);
  }

  .cct-kicker {
    font-family: var(--font-mono);
    font-size: .5rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: .75rem;
  }

  .cct-title {
    font-size: clamp(2.4rem, 4.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.045em;
    text-transform: uppercase;
    color: #080808;
    margin: 0 0 1.5rem;
  }

  .cct-title em {
    font-style: normal;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .cct-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #3d3d3d;
    max-width: 28rem;
    margin: 0 0 2.5rem;
  }

  .cct-wave {
    position: relative;
    height: 5.5rem;
    margin: 0 0 1.5rem;
    border-radius: 1rem;
    background: #080808;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  }

  .cct-wave canvas {
    display: block;
    width: 100%;
    height: 100%;
  }

  .cct-links {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }

  .cct-links a {
    font-family: var(--font-mono);
    font-size: .58rem;
    color: #080808;
    text-decoration: none;
    border-bottom: 1px solid rgba(8,8,8,.2);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
    cursor: none;
  }

  .cct-links a:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
  }

  /* ── Form card ─ */
  .cct-form-wrap {
    position: relative;
    background: #080808;
    border-radius: 1.75rem;
    padding: 2.5rem 2.25rem 2.25rem;
    box-shadow:
      0 50px 100px -30px rgba(0,0,0,.4),
      inset 0 1px 0 rgba(255,255,255,.07);
  }

  .cct-form-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,101,1,.4), rgba(16,67,133,.35) 50%, rgba(255,255,255,.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }

  .cct-form-head {
    position: relative;
    z-index: 1;
    margin-bottom: 1.75rem;
  }

  .cct-form-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0 0 .4rem;
  }

  .cct-form-hint {
    font-family: var(--font-mono);
    font-size: .5rem;
    color: #888;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .cct-form { position: relative; z-index: 1; }

  .cct-field { margin-bottom: 1.15rem; }

  .cct-label {
    display: block;
    font-family: var(--font-mono);
    font-size: .48rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: .45rem;
  }

  .cct-input,
  .cct-select,
  .cct-textarea {
    width: 100%;
    font-family: var(--font-primary);
    font-size: .9rem;
    color: #f5f5f5;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: .65rem;
    padding: .85rem 1rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
  }

  .cct-input::placeholder,
  .cct-textarea::placeholder { color: #555; }

  .cct-input:focus,
  .cct-select:focus,
  .cct-textarea:focus {
    border-color: rgba(255,101,1,.5);
    box-shadow: 0 0 0 1px rgba(255,101,1,.2);
    background: rgba(255,255,255,.06);
  }

  .cct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  @media (max-width: 520px) {
    .cct-row { grid-template-columns: 1fr; }
  }

  .cct-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
  }

  .cct-chip {
    font-family: var(--font-mono);
    font-size: .48rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #aaa;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 100px;
    padding: .45rem .9rem;
    cursor: none;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
  }

  .cct-chip[aria-pressed="true"] {
    color: #fff;
    border-color: var(--color-orange);
    background: rgba(255,101,1,.12);
  }

  .cct-textarea {
    min-height: 7.5rem;
    resize: vertical;
    line-height: 1.55;
  }

  .cct-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }

  .cct-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .cct-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    font-family: var(--font-primary);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #080808;
    background: #fff;
    border: none;
    border-radius: 100px;
    padding: 1.05rem 1.5rem;
    cursor: none;
    transition: background .25s, color .25s, box-shadow .25s, transform .2s;
    will-change: transform;
  }

  .cct-submit:hover:not(:disabled) {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 10px 40px rgba(255,101,1,.3);
  }

  .cct-submit:disabled {
    opacity: .6;
    cursor: wait;
  }

  .cct-submit svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }

  .cct-spinner {
    display: none;
    width: 20px; height: 20px;
    border: 2px solid rgba(8,8,8,.2);
    border-top-color: #080808;
    border-radius: 50%;
    animation: cct-spin .7s linear infinite;
  }

  .cct-submit.is-loading .cct-submit-text { display: none; }
  .cct-submit.is-loading .cct-submit-icon { display: none; }
  .cct-submit.is-loading .cct-spinner { display: block; }

  @keyframes cct-spin { to { transform: rotate(360deg); } }

  .cct-legal {
    font-family: var(--font-mono);
    font-size: .45rem;
    line-height: 1.5;
    color: #666;
    text-align: center;
    max-width: 20rem;
    margin: 0 auto;
  }

  .cct-legal a { color: var(--color-orange); }

  .cct-msg {
    display: none;
    font-family: var(--font-mono);
    font-size: .6rem;
    padding: .75rem 1rem;
    border-radius: .5rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }

  .cct-msg.is-visible { display: block; }
  .cct-msg--err { background: rgba(220,38,38,.12); color: #fca5a5; border: 1px solid rgba(220,38,38,.3); }
  .cct-msg--ok  { background: rgba(34,197,94,.1);  color: #86efac;  border: 1px solid rgba(34,197,94,.25); }

  .cct-success {
    display: none;
    text-align: center;
    padding: 2rem 1.5rem 1rem;
  }

  .cct-success.is-visible { display: block; }

  .cct-success h3 {
    font-size: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 .75rem;
    letter-spacing: -.02em;
  }

  .cct-success p {
    font-size: .95rem;
    color: #aaa;
    line-height: 1.5;
    margin: 0 0 1.5rem;
  }

  .cct-success .cct-again {
    font-family: var(--font-mono);
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-orange);
    background: none;
    border: 1px solid rgba(255,101,1,.4);
    border-radius: 100px;
    padding: .55rem 1.2rem;
    cursor: none;
  }

  .cct-form-inner.is-hidden { display: none; }

  @media (max-width: 1024px) {
    .cct-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  @media (max-width: 600px) {
    .cct-form-wrap { padding: 1.75rem 1.35rem; border-radius: 1.25rem; }
  }