:root {
    --verde:    #486018;
    --verde-l:  #5a7a1e;
    --azul:     #004f9f;
    --laranja:  #F76C00;
    --amarelo:  #FBC90B;
    --cinza:    #636266;
    --bg:       #F4F4F0;
    --bg2:      #EEEEE9;
    --bg3:      #E5E5DF;
    --offwhite: #FAFAF7;
    --texto:    #1a1a17;
    --texto2:   #4a4a45;
    --texto3:   #8a8a84;
    --borda:    rgba(26,26,23,0.08);
    --max-w:    1280px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--texto);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
  }

  #site-edge-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: min(420px, 92vw);
    height: 100vh;
    transform: translateX(-100%);
    box-shadow:
      40px 0 55px rgba(13, 14, 11, 0.20),
      10px 0 22px rgba(13, 14, 11, 0.09);
    background: transparent;
    pointer-events: none;
    z-index: 150;
  }

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

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  }
  nav.scrolled {
    background: rgba(244,244,240,0.58);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    backdrop-filter: blur(18px) saturate(1.35);
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset;
  }
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    nav.scrolled { background: rgba(244,244,240,0.92); }
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo img { height: 56px; width: auto; display: block; }
  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--texto2);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--texto); }
  .nav-cta {
    background: var(--laranja) !important;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 2px;
  }
  .nav-cta:hover { background: #e05e00 !important; }

  .nav-social {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .nav-social a {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--texto);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
  }
  .nav-social a:hover { background: var(--laranja); transform: translateY(-1px); }
  .nav-social svg { width: 14px; height: 14px; fill: #fff; }

  .nav-social[data-ig-style="selo"] { gap: 9px; }
  .nav-social[data-ig-style="selo"]::before {
    content: "Siga-nos";
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(13,14,11,0.45);
  }

  .nav-social[data-ig-color="cinza"] a { background: var(--cinza); }
  .nav-social[data-ig-color="cinza"] a:hover { background: var(--laranja); }
  .nav-social[data-ig-color="cinza"][data-ig-style="selo"]::before { color: rgba(13,14,11,0.38); }

  .hero {
    min-height: 92vh;
    display: flex;
    align-items: stretch;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
  }

  @keyframes cinemaZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.08); }
  }

  .cc-meta-tl {
    position: absolute;
    top: 92px;
    left: max(48px, calc(50% - var(--max-w) / 2 + 48px));
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: rgba(26,26,23,0.55);
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .cc-meta-tl .cc-meta-tagline {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(26,26,23,0.7);
    max-width: 380px;
  }

  .hv-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .hv-canvas svg { width: 100%; height: 100%; display: block; }
  .hv-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    display: none;
  }
  .hv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.12) contrast(0.95) saturate(0.55);
    animation: cinemaZoom 18s ease-in-out infinite alternate;
  }
  .hero[data-hero-bg="ponte"] .hv-photo {
    background: #2a1f12;
  }
  .hero[data-hero-bg="ponte"] .hv-photo img {
    filter: brightness(0.88) contrast(1.08) saturate(1.15) sepia(0.42) hue-rotate(-18deg);
    object-position: center 40%;
  }
  .hero[data-hero-bg="ponte"] .hv-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg,
        rgba(255,160,60,0.18) 0%,
        rgba(255,120,40,0.08) 35%,
        rgba(120,50,20,0.0)   65%,
        rgba(40,20,10,0.25)   100%),
      radial-gradient(ellipse 60% 55% at 70% 38%,
        rgba(255,180,90,0.22) 0%,
        rgba(255,180,90,0) 70%);
    mix-blend-mode: multiply;
  }
  .hero[data-variant^="hv-"][data-bg-photo="on"] .hv-photo { display: block; }
  .hero[data-variant^="hv-"] .hv-canvas { z-index: 1; }
  .hv-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
      rgba(244,244,240,0.78) 0%,
      rgba(244,244,240,0.45) 32%,
      rgba(244,244,240,0.08) 68%,
      rgba(244,244,240,0.0) 100%);
  }
  .hero[data-variant^="hv-"][data-bg-photo="on"] .hv-veil {
    background:
      linear-gradient(90deg,
        rgba(244,244,240,0.96) 0%,
        rgba(244,244,240,0.88) 22%,
        rgba(244,244,240,0.55) 48%,
        rgba(244,244,240,0.18) 72%,
        rgba(244,244,240,0.05) 100%),
      linear-gradient(180deg,
        rgba(244,244,240,0.20) 0%,
        rgba(244,244,240,0.0) 22%,
        rgba(244,244,240,0.0) 75%,
        rgba(244,244,240,0.55) 100%),
      linear-gradient(135deg,
        rgba(247,108,0,0.04) 0%,
        rgba(0,79,159,0.04) 100%);
  }
  .hero[data-variant^="hv-"] .hero-content,
  .hero[data-variant^="hv-"] .cc-meta-tl { z-index: 4; position: relative; }
  .hero[data-variant^="hv-"] .cc-meta-tl { position: absolute; }
  .hero[data-variant^="hv-"] {
    min-height: 100vh;
    background: #f0ede4;
  }
  .hero[data-variant^="hv-"] .hero-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    display: block;
    min-height: 100vh;
  }
  .hero[data-variant^="hv-"] .hero-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 48px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    position: relative;
  }

  .hv-typo .hvty-word {
    position: absolute;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(80px, 14vw, 220px);
    line-height: 0.85;
    letter-spacing: -0.04em;
    white-space: nowrap;
    animation: wordSlide 6s cubic-bezier(0.7, 0, 0.3, 1) infinite;
    opacity: 0;
  }
  .hv-typo .hvty-word.w1 { top: 12%;  right: 4%;   color: rgba(0,79,159,0.16);   animation-delay: 0s; }
  .hv-typo .hvty-word.w2 { top: 38%;  right: -2%;  color: rgba(90,122,30,0.16);  animation-delay: 1.5s; }
  .hv-typo .hvty-word.w3 { top: 64%;  right: 8%;   color: rgba(247,108,0,0.18);  animation-delay: 3s; }
  .hv-typo .hvty-word.w4 { top: 80%;  right: 2%;   color: rgba(26,26,23,0.13);   animation-delay: 4.5s; }
  @keyframes wordSlide {
    0%   { opacity: 0; transform: translateX(80px); }
    15%  { opacity: 1; transform: translateX(0); }
    85%  { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(-80px); }
  }

  .cutout-section {
    position: relative;
    overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--borda);
  }
  .cutout-bg-text {
    position: absolute;
    bottom: -10px;
    left: 48px;
    font-size: clamp(100px, 14vw, 180px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--texto);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 1;
  }
  .stack-above { position: relative; z-index: 2; }
  .cutout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 80px 0 0;
  }
  .cutout-section--offwhite { background: var(--offwhite); }
  .cutout-bg-text--right {
    left: auto;
    right: 48px;
    opacity: 0.04;
    color: var(--verde);
  }
  .section-pad-y { padding: 100px 0; }
  .grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 56px;
  }
  .body-lg {
    font-size: 16px;
    line-height: 1.75;
    color: var(--texto2);
    margin-bottom: 20px;
  }
  .body-md {
    font-size: 15px;
    line-height: 1.7;
    color: var(--texto2);
    margin-bottom: 32px;
  }
  .body-md b,
  .body-lg b { color: var(--texto); }
  .linhas-lead {
    font-size: 15px;
    line-height: 1.75;
    color: var(--texto2);
    max-width: 640px;
    margin: 0 0 24px;
    font-weight: 400;
  }
  .linhas-lead b { color: var(--texto); font-weight: 700; }
  .sobre-stats--flush { margin-bottom: 0; }
  .stat-num--28 { font-size: 28px; }
  .stat-num--24 { font-size: 24px; }
  .sobre-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .media-frame {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }
  .media-frame--16x9 { aspect-ratio: 16 / 9; }
  .media-frame--4x3 { aspect-ratio: 4 / 3; }
  .media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .media-overlay--verde {
    background: linear-gradient(135deg, rgba(72,96,24,0.2) 0%, transparent 60%);
  }
  .media-overlay--azul {
    background: linear-gradient(135deg, rgba(0,79,159,0.12) 0%, transparent 60%);
  }
  .svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
  }
  a.parceiro-card,
  a.fp-logo {
    text-decoration: none;
    color: inherit;
  }
  #linhas .linhas-header .section-title { margin-bottom: 20px; }
  #servicos .grid-2-col .section-title { margin-bottom: 16px; }
  .servicos-intro {
    font-size: 15px;
    line-height: 1.75;
    color: var(--texto2);
  }
  .parceiros-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .parceiros-header .section-title { margin-bottom: 0; }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--laranja); }
  .hero-eyebrow span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--laranja);
  }

  .hero-title {
    font-size: clamp(52px, 5.5vw, 88px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--texto);
    margin-bottom: 28px;
  }
  .hero-title .t-verde { color: var(--verde-l); }
  .hero-title .t-laranja { color: var(--laranja); }

  .hero-sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--texto2);
    max-width: 420px;
    margin-bottom: 44px;
    font-weight: 400;
  }

  .hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    background: var(--laranja);
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #e05e00; transform: translateY(-1px); }

  .btn-ghost {
    color: var(--texto);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1.5px solid var(--borda);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s;
  }
  .btn-ghost:hover { border-color: rgba(26,26,23,0.3); }

  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--borda);
    border-bottom: 1px solid var(--borda);
    background: var(--bg2);
    padding: 14px 0;
  }
  .marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--texto3);
  }
  .marquee-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--laranja);
    flex-shrink: 0;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  section { padding: 100px 0; }

  .section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .sl-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--laranja);
  }
  .sl-line {
    width: 28px; height: 1px;
    background: var(--laranja);
    opacity: 0.5;
  }
  .sl-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--texto3);
  }

  .section-title {
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--texto);
    margin-bottom: 48px;
  }
  .section-title em { font-style: normal; color: var(--verde-l); }
  .section-title .t-laranja { color: var(--laranja); }
  .section-title .t-azul    { color: #004f9f; }
  .hero-title .t-azul       { color: #004f9f; }
  .cta-title .t-azul        { color: rgb(0, 79, 159); }
  .iv2-title .t-azul { color: #6aa3df; }

  /* ── O CENTRO — novo layout com quote ── */
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
    padding: 80px 0 0;
  }
  .sobre-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .sobre-left .sobre-stats { margin-top: auto; }
  .sobre-quote {
    display: block;
    margin: 28px 0 28px;
    padding: 4px 0 4px 20px;
    border-left: 3px solid var(--laranja);
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--texto2);
    max-width: 460px;
  }

  .sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--borda);
    border: 1px solid var(--borda);
    overflow: hidden;
    border-radius: 3px;
  }
  .stat-item { background: var(--offwhite); padding: 24px 20px; }
  .stat-num {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--texto);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-num span { color: var(--laranja); }
  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto3);
  }
  .sobre-right { display: flex; flex-direction: column; gap: 1px; }
  .pillar {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--borda);
    background: var(--offwhite);
    border-radius: 3px;
    transition: background 0.25s, border-color 0.25s;
  }
  .pillar + .pillar { border-top: none; border-radius: 0; }
  .pillar:first-child { border-radius: 3px 3px 0 0; }
  .pillar:last-child { border-radius: 0 0 3px 3px; }
  .pillar:hover { background: var(--bg2); border-color: rgba(72,96,24,0.2); }
  .pillar-icon { width: 36px; height: 36px; flex-shrink: 0; }
  .pillar-body h4 { font-size: 14px; font-weight: 600; color: var(--texto); margin-bottom: 4px; }
  .pillar-body p { font-size: 13px; line-height: 1.6; color: var(--texto3); }

  .linhas { background: var(--bg); }

  .linhas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .linhas-header .section-title { margin-bottom: 0; }

  .linhas-grid {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--borda);
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--borda);
    border: 1px solid var(--borda);
    border-radius: 3px;
    overflow: hidden;
  }
  .servico-card {
    background: var(--offwhite);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.25s;
  }
  .servico-card:hover { background: var(--bg); }
  .servico-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--azul);
    opacity: 0.6;
  }
  .servico-title { font-size: 17px; font-weight: 600; color: var(--texto); line-height: 1.2; }
  .servico-desc { font-size: 13px; line-height: 1.65; color: var(--texto3); flex: 1; }
  .servico-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--azul);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .servico-link:hover { gap: 10px; }

  /* ── PARCEIROS — nova estrutura em grupos ── */
  .parceiros { background: var(--bg2); border-top: 1px solid var(--borda); }

  .parceiros-wrap { display: flex; flex-direction: column; gap: 0; }
  .parceiros-wrap .parceiros-group {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--borda);
  }
  .parceiros-wrap .parceiros-group:last-child { border-bottom: 0; padding-bottom: 0; }

  .parceiros-cat {
    margin: 6px 0 0;
    border-left: 2px solid var(--azul);
    padding-left: 14px;
  }
  .parceiros-cat-num {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    opacity: 0.6;
    margin-bottom: 6px;
    color: var(--texto3);
    letter-spacing: 0.06em;
  }
  .parceiros-cat-label {
    font-size: 12px;
    line-height: 1.4;
    display: block;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--texto2);
  }
  .parceiros-group[data-cat="industrial"] .parceiros-cat { border-left-color: var(--laranja); }
  .parceiros-group[data-cat="uff"] .parceiros-cat { border-left-color: var(--azul); }
  .parceiros-group[data-cat="financiamento"] .parceiros-cat { border-left-color: var(--verde-l); }

  .parceiros-cards {
    display: grid;
    gap: 1px;
    background: var(--borda);
    border: 1px solid var(--borda);
    border-radius: 3px;
    overflow: hidden;
  }
  .parceiros-group[data-cat="institucional"] .parceiros-cards { grid-template-columns: repeat(3, 1fr); }
  .parceiros-group[data-cat="industrial"] .parceiros-cards,
  .parceiros-group[data-cat="financiamento"] .parceiros-cards { grid-template-columns: 1fr; }

  .parceiro-card {
    background: var(--bg2);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.25s;
  }
  .parceiro-card:hover { background: var(--offwhite); }
  .parceiro-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azul); }
  .parceiro-name { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; color: var(--texto); }
  .parceiro-desc { font-size: 13px; line-height: 1.65; color: var(--texto3); }
  .parceiro-cta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-top: 6px;
  }

  /* tag color per group */
  .parceiros-group[data-cat="industrial"] .parceiro-tag { color: var(--laranja); }
  .parceiros-group[data-cat="financiamento"] .parceiro-tag { color: var(--verde-l); }

  .fund-col { display: flex; flex-direction: column; gap: 16px; }

  /* Projetos financiados */
  .fund-projects { margin-top: 0; }
  .fund-projects-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--verde-l);
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
  }
  .fund-projects-eyebrow::before {
    content: "";
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--verde-l);
    flex-shrink: 0;
  }

  /* Lista de projetos */
  .fund-list { border: 1px solid var(--borda); border-radius: 3px; overflow: hidden; }
  .fund-list-row {
    display: grid;
    grid-template-columns: 34px 1fr 240px;
    gap: 22px;
    align-items: center;
    padding: 22px 24px;
    background: var(--offwhite);
    border-bottom: 1px solid var(--borda);
  }
  .fund-list-row:last-child { border-bottom: 0; }
  .fund-list-mark { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--verde-l); }
  .fund-list-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 4px; }
  .fund-list-desc { font-size: 13px; color: var(--texto2); line-height: 1.55; }
  .fund-list-role { display: flex; flex-direction: column; gap: 2px; text-align: right; }
  .fund-list-role span { font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--texto3); font-weight: 700; }
  .fund-list-role b { font-size: 13px; color: var(--texto); font-weight: 600; }

  /* Chips compactos (UFF apoio) */
  .fund-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .fund-chip {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 18px 20px;
    border: 1px solid var(--borda);
    border-left: 2px solid var(--verde-l);
    border-radius: 3px;
    background: var(--offwhite);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
  }
  .fund-chip:hover { background: var(--bg2); }
  .fund-chip-tag { font-family: 'Space Mono', monospace; font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--verde-l); }
  .fund-chip-title { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--texto); line-height: 1.25; transition: color 0.2s; }
  .fund-chip:hover .fund-chip-title { color: var(--azul); }
  .fund-chip-sub { font-size: 12px; color: var(--texto3); }

  /* UFF group: azul accents */
  .parceiros-group[data-cat="uff"] .fund-projects-eyebrow { color: var(--azul); }
  .parceiros-group[data-cat="uff"] .fund-projects-eyebrow::before { background: var(--azul); }
  .parceiros-group[data-cat="uff"] .fund-chip { border-left-color: var(--azul); }
  .parceiros-group[data-cat="uff"] .fund-chip-tag { color: var(--azul); }

  /* ── Labs (editorial painel) ── */
  .lx-item { margin-top: 0; }
  .lx-p5-panel {
    background: var(--offwhite);
    border: 1px solid var(--borda);
    border-radius: 3px;
    padding: 6px 28px 18px;
  }
  .lx-p4-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
  .lx-p4-row {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid var(--borda);
    text-decoration: none;
    color: inherit;
  }
  .lx-p5-panel .lx-p4-row:nth-child(1),
  .lx-p5-panel .lx-p4-row:nth-child(2) { border-top: 0; }
  .lx-p4-row:hover .lx-p4-name { color: var(--laranja); }
  .lx-p4-num { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--laranja); padding-top: 3px; }
  .lx-p4-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--texto); transition: color 0.2s; }
  .lx-p4-desc { font-size: 12.5px; line-height: 1.5; color: var(--texto2); margin-top: 4px; }

  .cta-section {
    background: var(--texto);
    padding: 120px 0;
    text-align: center;
  }
  .cta-section .section-label { justify-content: center; }
  .cta-section .sl-text { color: rgba(250,250,247,0.4); }
  .cta-section .sl-num { color: var(--laranja); }
  .cta-section .sl-line { background: var(--laranja); opacity: 0.4; }
  .cta-title {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 20px;
  }
  .cta-title em { font-style: normal; color: var(--laranja); }
  .cta-sub { font-size: 17px; color: rgba(250,250,247,0.5); margin-bottom: 44px; line-height: 1.6; }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn-ghost-inv {
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s;
  }
  .btn-ghost-inv:hover { border-color: rgba(255,255,255,0.5); }

  .cta-copy-email {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 28px;
  }
  .cta-copy-prefix {
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.45);
  }
  .cta-copy-arrow {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--laranja);
    line-height: 1;
  }
  .cta-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border: none;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    font: inherit;
  }
  .cta-copy-btn:hover { background: rgba(247,108,0,0.12); }
  .cta-copy-addr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    color: #fafaf7;
    transition: color 0.2s;
  }
  .cta-copy-divider {
    width: 1px;
    height: 14px;
    background: rgba(250,250,247,0.2);
    flex-shrink: 0;
  }
  .cta-copy-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(250,250,247,0.45);
    transition: color 0.2s;
  }
  .cta-copy-btn:hover .cta-copy-action { color: var(--laranja); }
  .cta-copy-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .cta-copy-icon { flex-shrink: 0; }
  .cta-copy-btn.is-copied .cta-copy-addr,
  .cta-copy-btn.is-copied .cta-copy-label,
  .cta-copy-btn.is-copied .cta-copy-action { color: var(--laranja); }

  .copy-toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 3px;
    background: var(--laranja);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .copy-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .copy-toast-check { flex-shrink: 0; }

  @media (max-width: 639px) {
    .cta-copy-email {
      flex-direction: column;
      gap: 10px;
    }
    .cta-copy-prefix {
      width: 100%;
      text-align: center;
    }
    .cta-copy-arrow { display: none; }
  }

  footer {
    background: var(--texto);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 56px 0 28px;
    color: rgba(250,250,247,0.5);
  }
  .footer-tagline {
    font-size: 13px; line-height: 1.65;
    color: rgba(250,250,247,0.5);
    max-width: 280px;
  }
  .footer-addr-block { font-size: 12px; line-height: 1.55; color: rgba(250,250,247,0.5); }
  .footer-addr-block b { color: rgba(250,250,247,0.85); font-weight: 600; display: block; margin-bottom: 4px; }

  .footer-social { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
  .footer-social a {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .footer-social a:hover { background: var(--laranja); transform: translateY(-1px); }
  .footer-social svg { width: 15px; height: 15px; fill: #fff; }

  .footer-social[data-ig-style="selo"] { gap: 12px; }
  .footer-social[data-ig-style="selo"]::before {
    content: "Siga-nos";
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250,250,247,0.45);
  }
  .footer-meaning {
    font-size: 12.5px; line-height: 1.7;
    color: rgba(250,250,247,0.45);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-meaning b.brand { color: #fff; font-weight: 700; letter-spacing: 0.02em; }

  .footer-strip {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px; flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-strip-left, .footer-strip-right {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: 11px; color: rgba(250,250,247,0.3);
  }
  .footer-priv {
    font-size: 11px; color: rgba(250,250,247,0.4);
    text-decoration: none; letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .footer-priv:hover { color: rgba(250,250,247,0.9); border-bottom-color: rgba(255,255,255,0.5); }
  .fp-logo { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(250,250,247,0.28); text-transform: uppercase; }
  .footer-sep { color: rgba(250,250,247,0.12); }

  #site-footer { padding: 36px 0 24px; }
  #site-footer .footer-topbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  #site-footer .footer-topbar .footer-logo-img { height: 36px; margin: 0; }
  #site-footer .footer-nav-inline {
    display: flex; flex-wrap: wrap; gap: 6px 22px;
    list-style: none; padding: 0; margin: 0;
  }
  #site-footer .footer-nav-inline a {
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(250,250,247,0.55); text-decoration: none; transition: color 0.2s;
  }
  #site-footer .footer-nav-inline a:hover { color: #fff; }
  #site-footer .footer-mid {
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 36px;
    margin-bottom: 22px; align-items: start;
  }

  /* ── Footer — logos de apoio ── */
  .apoio-block { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .apoio-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(250,250,247,0.5); white-space: nowrap;
  }
  .apoio-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
  .apoio-logo {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; border: 0; padding: 4px 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    text-decoration: none;
  }
  .apoio-logo:hover { transform: translateY(-2px); opacity: 0.85; }
  .apoio-logo img { width: auto; object-fit: contain; display: block; }
  .apoio-logo--prefeitura img { max-height: 64px; }
  .apoio-logo--cantareira img { filter: brightness(0) invert(1); max-height: 84px; }
  .apoio-logo--ons img { max-height: 94px; transform: translateY(-5px); }
  .apoio-logo--uff img { filter: brightness(0) invert(1); max-height: 46px; transform: translateY(-3px); }

  .apoio-block-wrap {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
    margin-bottom: 0;
  }
  .apoio-block-wrap .apoio-slot { display: flex; align-items: center; gap: 28px; }
  .apoio-block-wrap .apoio-slot + .apoio-slot {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 40px;
  }

  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: none; }

  @media (max-width: 1024px) {
    .container, .nav-inner { padding-left: 24px; padding-right: 24px; }
    .hero-inner { padding-left: 24px; padding-right: 24px; }
    .hero[data-variant^="hv-"] .hero-content { padding-left: 24px; padding-right: 24px; }
    .cc-meta-tl { left: 24px; }
    section { padding: 72px 0; }
    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .parceiros-grid { grid-template-columns: repeat(2, 1fr); }
    .cutout-bg-text { left: 24px; font-size: 80px; }
    .nav-social { display: none; }
    .nav-links { gap: 18px; }
    .nav-links a { letter-spacing: 0.06em; }
    .nav-cta { padding: 10px 16px !important; }
    /* Parceiros: collapse lateral-label rows on tablet */
    .parceiros-wrap .parceiros-group { grid-template-columns: 1fr !important; gap: 16px !important; }
    .parceiros-group[data-cat="institucional"] .parceiros-cards { grid-template-columns: repeat(2, 1fr) !important; }
    /* fund-list-role: stacked to fit */
    .fund-list-row { grid-template-columns: 34px 1fr; }
    .fund-list-role { text-align: left; flex-direction: row; gap: 8px; grid-column: 2; }
    /* Footer mid */
    #site-footer .footer-mid { grid-template-columns: 1fr; gap: 32px; }
    #site-footer .footer-topbar { flex-direction: column; align-items: flex-start; gap: 14px; }
    /* Apoio */
    .apoio-block-wrap { grid-template-columns: 1fr; gap: 24px; }
    .apoio-block-wrap .apoio-slot + .apoio-slot {
      border-left: 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-left: 0;
      padding-top: 24px;
    }
  }
  @media (max-width: 900px) {
    .nav-links { gap: 12px; }
    .nav-links a { font-size: 11px; letter-spacing: 0.04em; }
    /* sobre-grid: single column */
    .sobre-grid { grid-template-columns: 1fr !important; gap: 32px !important; padding-top: 32px !important; }
    .sobre-left { display: block; }
    .sobre-left .sobre-stats { margin-top: 24px; }
    .sobre-quote { max-width: none; }
    /* fund-compact */
    .fund-compact { grid-template-columns: 1fr; }
    /* apoio */
    .apoio-logo--prefeitura img { max-height: 46px; }
    .apoio-logo--cantareira img { max-height: 60px; }
    .apoio-logo--ons img { max-height: 64px; }
    .apoio-logo--uff img { max-height: 36px; }
  }
  @media (max-width: 640px) {
    .hero-title { font-size: 44px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .servicos-grid { grid-template-columns: 1fr; }
    .parceiros-grid { grid-template-columns: 1fr; }
    .parceiros-group[data-cat="institucional"] .parceiros-cards { grid-template-columns: 1fr !important; }
    .cta-actions { flex-direction: column; align-items: center; }
    .section-title { margin-bottom: 32px; }
    /* lx-p4-cols: stack */
    .lx-p4-cols { grid-template-columns: 1fr; }
    .lx-p5-panel .lx-p4-row:nth-child(2) { border-top: 1px solid var(--borda); }
  }
  @media (max-width: 720px) {
    .fund-list-row { grid-template-columns: 28px 1fr; }
  }

  .infra-section { padding: 0 !important; }
  .iv-2 .ic { display: inline-block; width: 28px; height: 28px; flex-shrink: 0; }

  .iv-2 { background: #004f9f; color: #fff; padding: 120px 0 100px; position: relative; overflow: hidden; }
  .iv-2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(900px at 80% 30%, rgba(247,108,0,0.22), transparent 60%), radial-gradient(700px at 10% 90%, rgba(255,255,255,0.06), transparent 60%); pointer-events: none; }
  .iv-2-in { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; position: relative; }
  .iv-2 .iv2-head { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: end; margin-bottom: 80px; }
  .iv-2 .iv2-title { font-size: clamp(48px, 6.4vw, 112px); font-weight: 700; line-height: 0.92; letter-spacing: -0.04em; }
  .iv-2 .iv2-title em { font-style: normal; color: var(--laranja); display: block; }
  .iv-2 .iv2-sub { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.72); max-width: 380px; }
  .iv-2 .iv2-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .iv-2 .iv2-chip { border: 1px solid rgba(255,255,255,0.22); padding: 24px 22px; border-radius: 4px; transition: all 0.25s; background: rgba(255,255,255,0.03); }
  .iv-2 .iv2-chip:hover { background: rgba(247,108,0,0.12); border-color: rgba(247,108,0,0.55); transform: translateY(-2px); }
  .iv-2 .iv2-chip .ic { color: var(--laranja); margin-bottom: 14px; }
  .iv-2 .iv2-chip h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
  .iv-2 .iv2-chip p { font-size: 12.5px; line-height: 1.55; color: rgba(255,255,255,0.7); }
  .iv-2 .iv2-eb { display: inline-flex; align-items: center; gap: 12px; font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 32px; color: rgba(255,255,255,0.5); }
  .iv-2 .iv2-eb .n { color: var(--laranja); }
  .iv-2 .iv2-eb .ln { width: 36px; height: 1px; background: var(--laranja); }

  @media (max-width: 1024px) {
    .iv-2 .iv2-head { grid-template-columns: 1fr; gap: 32px; }
    .iv-2 .iv2-chips { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .iv-2 .iv2-chips { grid-template-columns: 1fr; }
  }

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 4px;
    background: var(--laranja);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(247,108,0,0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    z-index: 90;
  }
  .back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: #ff7d14;
    transform: translateY(-2px);
  }
  .back-to-top:active { transform: translateY(0); }
  @media (max-width: 720px) {
    .back-to-top { right: 16px; bottom: 16px; }
  }
