    :root {
      --bg:      #faf7f2;
      --ink:   #3d2010;
      --ink-2: #6b3d22;
      --ink-3: #a0714f;
      --ink-4: #c8a882;
      --green:       #2a7a5e;
      --green-light: #c8ede0;
      --terra:       #c85c18;
      --terra-light: #fbe8d8;
      --root:        #c85c18;
      --amber:       #c88020;
      --amber-light: #fdf0d0;
      --blue:        #2a5a7a;
      --blue-light:  #d8eaf5;
      --velum:       #6b6f8a;
      --velum-light: #e4e5ee;
      --border: rgba(61,32,16,0.1);
      --serif: 'Fraunces', Georgia, serif;
      --sans: 'DM Sans', system-ui, sans-serif;
    }

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

    html { scroll-behavior: smooth; overflow-x: hidden; }

    [id] { scroll-margin-top: 76px; }

    body {
      font-family: var(--sans);
      color: var(--ink);
      font-size: 17px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    /* ── BODY BACKGROUND PATTERN ── */
    body {
      background-color: var(--bg);
      background-image: url('../img/pattern.svg');
      background-repeat: repeat;
      background-size: 480px 480px;
    }

    /* ── NAV ── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 3rem;
      height: 64px;
      background: rgba(250,247,242,0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }

    .nav-brand {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.1rem;
      color: var(--ink);
      text-decoration: none;
      letter-spacing: -0.01em;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-brand-logo {
      height: 32px;
      width: 32px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .nav-brand em { font-style: italic; color: var(--green); }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.875rem;
      color: var(--ink-3);
      text-decoration: none;
      letter-spacing: 0.01em;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--ink); }

    .nav-cta {
      background: var(--root);
      color: var(--bg) !important;
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      font-size: 0.875rem !important;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.8; }

    /* ── NAV TOGGLE (hamburger) ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 32px;
      height: 32px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 101;
    }

    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--ink);
      transition: transform 0.25s, opacity 0.25s;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 0 3rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 30%, rgba(42,122,94,0.09) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(200,92,24,0.06) 0%, transparent 50%);
      z-index: 0;
    }

    .hero-orb {
      position: absolute;
      top: 12%;
      right: 8%;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(42,122,94,0.13) 0%, rgba(74,168,130,0.06) 40%, transparent 70%);
      z-index: 0;
      animation: breathe 8s ease-in-out infinite;
    }

    @keyframes breathe {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.06); }
    }

    .hero-content { position: relative; z-index: 1; max-width: 900px; padding-top: 6rem; }

    .hero-eyebrow {
      font-size: 0.8rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-3);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      margin-bottom: 2rem;
      white-space: nowrap;
    }

    /* ── HERO · Missão (esquerda) / lead (centro) / Visão (direita), alinhados pela base ── */
    .hero-mv-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: flex-end;
      gap: 2.5rem;
      width: 100%;
      margin-bottom: 3rem;
    }

    .hero-mv-col {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .hero-mv-col--left  { text-align: left;  align-items: flex-start; }
    .hero-mv-col--right { text-align: right; align-items: flex-end; }

    .hero-mv-kicker {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-4);
    }

    .hero-mv-text {
      font-size: 0.82rem;
      color: var(--ink-3);
      line-height: 1.55;
      max-width: 260px;
    }

    /* ── HERO · O que é o Wayamou (linha horizontal) ── */
    .hero-oque-wrap {
      width: 100%;
      margin-top: 3.5rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }

    .hero-oque-kicker {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-4);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .hero-oque-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .hero-oque-item {
      font-size: 0.85rem;
      color: var(--ink-2);
      line-height: 1.65;
      text-align: left;
      margin: 0;
    }

    @media (max-width: 860px) {
      .hero-mv-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
      }
      .hero-mv-col--left, .hero-mv-col--right {
        text-align: center;
        align-items: center;
      }
      .hero-mv-text { max-width: none; }
      .hero-oque-row { grid-template-columns: 1fr; }
    }

    .hero-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(1.8rem, 4.2vw, 3rem);
      max-width: 16ch;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 2rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--green);
    }

    .hero-lead {
      font-size: 1.15rem;
      color: var(--ink-2);
      max-width: 520px;
      line-height: 1.7;
      margin: 0;
    }

    .btn-primary {
      background: var(--root);
      color: var(--bg);
      padding: 0.875rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.8; }

    .btn-ghost {
      color: var(--ink-2);
      padding: 0.875rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-size: 0.9rem;
      border: 1px solid rgba(61,32,16,0.14);
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--ink-3); color: var(--ink); }

    /* Stats pills — indicadores PeNSE (seção OMNIS) */
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .hero-stat-pill {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      background: rgba(247,245,240,0.75);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 0.6rem 1.25rem;
      box-shadow: 0 2px 12px rgba(61,32,16,0.07);
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: -0.03em;
    }

    .hero-stat-num.green { color: var(--green); }
    .hero-stat-num.blue { color: var(--blue); }
    .hero-stat-num.amber { color: var(--amber); }
    .hero-stat-num.velum { color: var(--velum); }

    .hero-stat-desc {
      font-size: 0.78rem;
      color: var(--ink-3);
      line-height: 1.3;
    }

    .hero-source {
      font-size: 0.72rem;
      color: var(--ink-4);
      width: 100%;
      padding: 0 0.25rem;
      margin-top: 0.5rem;
    }

    /* ── SCROLL DIVIDER ── */
    .divider { display: none; }

    /* ── SECTIONS ── */
    section { padding: 1rem 3rem 4rem; }

    .section-kicker {
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-4);
      display: block;
      margin-bottom: 1.5rem;
    }

    .section-product-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .section-product-logo {
      height: 44px;
      width: 44px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .section-product-header .section-kicker {
      margin-bottom: 0;
    }

    .section-title {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.12;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 1.5rem;
    }

    .section-title em { font-style: italic; }

    .section-lead {
      font-size: 1.05rem;
      color: var(--ink-2);
      max-width: 560px;
      line-height: 1.75;
      margin-bottom: 4rem;
    }

    /* ── WAYAMOU — ecosystem ── */
    .wayamou-section { background: transparent; }

    .ecosystem-flow {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .eco-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 280px;
    }

    .eco-left {
      padding: 3rem 3rem 3rem 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eco-right {
      padding: 3rem 0 3rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .eco-num {
      font-family: var(--serif);
      font-size: 5rem;
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
      opacity: 0.45;
    }

    .eco-lobivia .eco-num { color: var(--green); }
    .eco-affectus .eco-num { color: var(--terra); }
    .eco-omnis .eco-num { color: var(--blue); }
    .eco-velum .eco-num { color: var(--velum); }

    .eco-name {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }

    .eco-name-logo {
      height: 36px;
      width: 36px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .eco-tag {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-4);
      margin-bottom: 1rem;
    }

    .eco-desc {
      font-size: 0.95rem;
      color: var(--ink-2);
      line-height: 1.7;
      max-width: 360px;
    }

    /* color accents per product */
    .eco-lobivia .eco-name { color: var(--green); }
    .eco-affectus .eco-name { color: var(--terra); }
    .eco-omnis .eco-name { color: var(--blue); }
    .eco-velum .eco-name { color: var(--velum); }

    /* ── STATS SECTION (OMNIS) ── */
    .omnis-section {
      background: #e8d5bc;
      color: var(--bg);
    }

    .omnis-section .section-kicker { color: rgba(61,32,16,0.45); }
    .omnis-section .section-title { color: #3d2010; }
    .omnis-section .section-lead { color: rgba(61,32,16,0.65); }

    .stats-mosaic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(247,245,240,0.07);
    }

    .stat-cell {
      padding: 3rem 2rem;
      background: #e8d5bc;
      transition: background 0.3s;
    }

    .stat-cell:hover { background: #ddc9a8; }

    .stat-big {
      font-family: var(--serif);
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: -0.04em;
      margin-bottom: 0.75rem;
    }

    .stat-big.green { color: #2a7a5e; }
    .stat-big.blue { color: #2a5a7a; }
    .stat-big.amber { color: #a06010; }
    .stat-big.velum { color: #5a5e78; }
    .stat-big.muted { color: rgba(61,32,16,0.35); }

    .stat-label {
      font-size: 0.88rem;
      color: rgba(61,32,16,0.6);
      line-height: 1.5;
    }

    .stat-source {
      margin-top: 3rem;
      font-size: 0.75rem;
      color: rgba(61,32,16,0.35);
      letter-spacing: 0.05em;
    }

    /* ── LOBIVIA & AFFECTUS SECTIONS ── */
    .lobivia-section,
    .affectus-section {
      background: transparent;
    }

    /* ── METODOLOGIA (ciclo Wayamou) ── */
    .metodologia-section { background: transparent; }

    .metodo-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.6rem 0.5rem;
      margin-top: 2.5rem;
    }

    .metodo-step {
      font-family: var(--serif);
      font-size: 0.92rem;
      font-weight: 400;
      color: var(--ink);
      background: rgba(42,122,94,0.07);
      border: 1px solid rgba(42,122,94,0.18);
      border-radius: 100px;
      padding: 0.5rem 1.1rem;
      white-space: nowrap;
    }

    .metodo-step--loop {
      color: var(--green);
      border-color: var(--green);
      background: var(--green-light);
    }

    .metodo-arrow {
      color: var(--ink-4);
      font-size: 1rem;
      flex-shrink: 0;
    }

    /* ── MODELO DE ATUAÇÃO ── */
    .modelo-section { background: transparent; }
    .modelo-section .workshop-phases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: none;
    }
    .modelo-section .phase-item {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      grid-template-columns: none;
      padding: 2rem 1.75rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(42,122,94,0.03);
    }
    .modelo-section .phase-num {
      font-size: 2rem;
      opacity: 1;
      padding-top: 0;
      color: var(--green);
    }
    .modelo-section .phase-name { font-size: 1rem; }

    @media (max-width: 860px) {
      .modelo-section .workshop-phases { grid-template-columns: 1fr; }
    }

    /* ── LIMITES DE ATUAÇÃO ── */
    .limites-section { background: transparent; }
    .limites-panel {
      width: 100%;
      background: rgba(61,32,16,0.04);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 3rem clamp(1.5rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .limites-panel .section-lead { max-width: 780px; }
    .limites-panel .section-title {
      max-width: none;
      white-space: nowrap;
      font-size: clamp(1.3rem, 2.6vw, 2.4rem);
    }
    @media (max-width: 700px) {
      .limites-panel .section-title {
        white-space: normal;
        font-size: clamp(1.3rem, 5vw, 1.8rem);
      }
    }

    /* ── VELUM · Marco legal (painel avulso, antes era célula de mosaico) ── */
    .velum-cell {
      padding: 2rem 1.5rem;
      background: #e8d5bc;
      border-radius: 8px;
      transition: background 0.3s;
    }
    .velum-cell:hover { background: #ddc9a8; }
    .velum-fase {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 300;
      color: #3d2010;
      letter-spacing: -0.01em;
      margin-bottom: 0.4rem;
    }

    /* ── VELUM WORKSHOP ── */
    .velum-section {
      background: transparent;
    }
    .velum-section .section-kicker { color: rgba(61,32,16,0.45); }
    .velum-section .section-title { color: #3d2010; }
    .velum-section .section-lead { color: rgba(61,32,16,0.65); }
    .velum-section .phase-name { color: #3d2010; }
    .velum-section .phase-desc { color: rgba(61,32,16,0.65); }
    .velum-section .phase-item { border-color: rgba(61,32,16,0.15); }

    .velum-section .workshop-phases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: none;
    }
    .velum-section .phase-item {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      padding: 2rem 1.75rem;
      border: 1px solid rgba(61,32,16,0.15);
      border-radius: 8px;
      background: rgba(61,32,16,0.025);
    }
    .velum-section .phase-num {
      font-size: 2rem;
      opacity: 1;
      padding-top: 0;
      color: var(--amber);
    }
    .velum-section .velum-marco {
      grid-column: 1 / -1;
    }

    @media (max-width: 860px) {
      .velum-section .workshop-phases { grid-template-columns: 1fr; }
    }

    @media (max-width: 900px) {
      .affectus-section .workshop-phases ul,
      .lobivia-section .workshop-phases ul {
        grid-template-columns: 1fr 1fr !important;
      }
    }

    @media (max-width: 560px) {
      .affectus-section .workshop-phases ul,
      .lobivia-section .workshop-phases ul {
        grid-template-columns: 1fr !important;
      }
    }

    .workshop-phases {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .phase-item {
      display: grid;
      grid-template-columns: 3rem 1fr;
      gap: 1.5rem;
      padding: 2rem 0;
    }

    .phase-num {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--amber);
      opacity: 0.6;
      padding-top: 0.1rem;
    }

    .phase-name {
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }

    .phase-desc {
      font-size: 0.9rem;
      color: var(--ink-3);
      line-height: 1.6;
    }

    .timeline-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: transparent;
      margin-top: 3rem;
    }

    .tl-cell {
      background: rgba(243,237,227,0.6);
      padding: 1.25rem 1rem;
      text-align: center;
    }

    .tl-phase {
      font-family: var(--serif);
      font-size: 0.9rem;
      color: var(--amber);
      margin-bottom: 0.25rem;
    }

    .tl-period {
      font-size: 0.7rem;
      color: var(--ink-4);
      letter-spacing: 0.05em;
      margin-bottom: 0.5rem;
    }

    .tl-desc {
      font-size: 0.78rem;
      color: var(--ink-3);
      line-height: 1.4;
    }

    /* ── EQUIPE ── */
    .team-section { background: transparent; }

    .team-flow {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .team-cell {
      padding: 2.5rem 2rem;
      transition: background 0.25s;
      border-radius: 4px;
    }

    
    

    .team-cell:hover { background: rgba(42,122,94,0.06); }

    .team-avatar-circle {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--green);
      margin-bottom: 1.5rem;
    }

    .team-avatar-circle.sage { background: var(--amber-light); color: var(--amber); }
    .team-avatar-circle.ocean { background: var(--blue-light); color: var(--blue); }
    .team-avatar-circle.velum { background: var(--velum-light); color: var(--velum); }
    .team-avatar-circle.terra { background: rgba(180,140,100,0.15); color: #7a5c30; }

    .team-name {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 0.2rem;
      letter-spacing: -0.01em;
    }

    .team-role {
      font-size: 0.78rem;
      color: var(--ink-4);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .team-bio {
      font-size: 0.9rem;
      color: var(--ink-2);
      line-height: 1.65;
    }

    .team-tags-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
    }

    .tag {
      font-size: 0.72rem;
      padding: 0.2rem 0.6rem;
      border-radius: 100px;
      color: var(--ink-3);
      background: rgba(160,113,79,0.08);
    }

    /* ── PARCEIROS ── */
    .parceiros-section { background: transparent; }

    .parceiros-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .parceiro-item {
      padding: 2.5rem 2rem;
      transition: background 0.25s;
      border-radius: 4px;
      min-width: 0;
    }

    
    

    .parceiro-item:hover { background: rgba(42,122,94,0.06); }

    .parceiro-tipo {
      font-size: 0.72rem;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: var(--ink-4);
      display: block;
      margin-bottom: 0.5rem;
    }

    .parceiro-nome {
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--ink);
      margin-bottom: 0.75rem;
    }

    .parceiro-desc {
      font-size: 0.88rem;
      color: var(--ink-3);
      line-height: 1.65;
    }

    .parceiro-cta-item {
      background: rgba(45,106,79,0.05);
      border: 1px dashed rgba(45,106,79,0.3);
    }

    .parceiro-cta-item .parceiro-nome { color: var(--green); }

    /* ── CONTATO ── */
    .contato-section {
      background: transparent;
      padding: 8rem 3rem 10rem;
    }

    .contato-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8rem;
      align-items: start;
    }

    .contato-channels {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 3rem;
    }

    .channel-link {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.5rem 0;
      border-radius: 8px;
      text-decoration: none;
      color: var(--ink);
      transition: background 0.2s, transform 0.2s;
    }

    .channel-link:hover { background: rgba(61,32,16,0.045); transform: translateX(2px); }
    .channel-link:hover .channel-arrow { transform: translateX(3px); opacity: 1; }

    .channel-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
      background: var(--green-light);
      color: var(--green);
    }

    .channel-link:nth-child(2) .channel-icon { background: var(--blue-light); color: var(--blue); }
    .channel-link:nth-child(3) .channel-icon { background: var(--terra-light); color: var(--terra); }

    .channel-name {
      font-weight: 500;
      font-size: 0.95rem;
      margin-bottom: 0.15rem;
    }

    .channel-handle {
      font-size: 0.82rem;
      color: var(--ink-4);
    }

    .channel-arrow {
      margin-left: auto;
      color: var(--ink-4);
      font-size: 1.2rem;
      opacity: 0.5;
      transition: transform 0.2s, opacity 0.2s;
    }

    .contato-card {
      background: rgba(61,32,16,0.035);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: clamp(2rem, 3vw, 2.75rem);
      margin-top: 3.6rem;
    }

    .contact-pillars {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 1.75rem;
    }

    .pillar {
      font-size: 0.78rem;
      font-weight: 500;
      padding: 0.45rem 1rem;
      border-radius: 100px;
      color: var(--green);
      background: var(--green-light);
      border: 1px solid rgba(42,122,94,0.18);
    }

    .pillar:nth-child(2) { color: var(--terra); background: var(--terra-light); border-color: rgba(200,92,24,0.18); }
    .pillar:nth-child(3) { color: var(--blue); background: var(--blue-light); border-color: rgba(42,90,122,0.18); }
    .pillar:nth-child(4) { color: var(--velum); background: var(--velum-light); border-color: rgba(107,111,138,0.2); }

    /* ── FOOTER ── */
    .site-footer {
      background: #e8d5bc;
      color: #3d2010;
      padding: 2.5rem 3rem;
    }

    .footer-copy {
      font-size: 0.8rem;
      color: rgba(61,32,16,0.45);
      text-align: center;
    }

    .footer-legal {
      font-size: 0.72rem;
      color: rgba(61,32,16,0.4);
      text-align: center;
      margin-top: 0.6rem;
      line-height: 1.5;
    }

    .footer-legal a {
      color: rgba(61,32,16,0.55);
    }

    /* reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* preserva o espaçamento de layout mesmo com opacity:0 durante o reveal */
    .section-lead.reveal { margin-bottom: 4rem; }

    /* ── NAV: breakpoint intermediário (evita overflow com 11 itens em notebooks) ── */
    @media (max-width: 1180px) {
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 1.5rem;
      }
      .nav-links.open { max-height: calc(100vh - 64px); overflow-y: auto; padding: 1rem 1.5rem 2rem; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
      .nav-links .nav-cta { display: inline-block; margin-top: 0.75rem; border-bottom: none; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .nav { padding: 0 1.5rem; }
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0 1.5rem;
      }
      .nav-links.open { max-height: calc(100vh - 64px); overflow-y: auto; padding: 1rem 1.5rem 2rem; }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
      .nav-links .nav-cta { display: inline-block; margin-top: 0.75rem; border-bottom: none; }
      section { padding: 1rem 1.5rem 4rem; }
      .hero { padding: 0 1.5rem 4rem; }
      .hero-title { font-size: clamp(1.5rem, 6vw, 2rem); max-width: none; }
      .eco-row { grid-template-columns: 1fr; min-height: auto; }
      .eco-left { border-right: none; padding: 2rem 0; }
      .eco-right { padding: 2rem 0; }
      .stats-mosaic { grid-template-columns: 1fr 1fr; }
      .timeline-strip { grid-template-columns: repeat(2, 1fr); }
      .team-flow { grid-template-columns: 1fr; }
      .team-cell { border-right: none !important; }
      .team-cell:nth-last-child(-n+1) { border-bottom: none; }
      .parceiros-grid { grid-template-columns: 1fr 1fr; }
      .contato-grid { grid-template-columns: 1fr; gap: 3rem; }
      .vision-cards { grid-template-columns: 1fr 1fr; }
      .divider { margin: 0 1.5rem; }
    }

    @media (max-width: 560px) {
      .vision-cards { grid-template-columns: 1fr; }
    }

    /* =======================================
   VISÃO INSTITUCIONAL PREMIUM V3
======================================= */

.vision-header{
    display:grid;
    grid-template-columns:1.4fr .8fr;
    gap:4rem;
    align-items:center;
    margin-bottom:5rem;
}

.vision-copy .section-lead{
    margin-bottom:0;
}

.vision-cards{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:1rem;
}

.vision-card{
    display:block;
    padding:1.2rem 1.4rem;
    border:1px solid var(--border);
    border-radius:4px;
    text-decoration:none;
    transition: background 0.25s ease;
    min-width: 0;
}

.vision-card:hover{
    background: rgba(42,122,94,0.06);
}

.vision-card strong{
    display:block;
    font-family:var(--serif);
    font-size:1.1rem;
    color:var(--ink);
    margin-bottom:.25rem;
}

.vision-card span{
    display:block;
    font-size:.85rem;
    color:var(--ink-3);
}

@media (max-width:900px){

    .vision-header{
        grid-template-columns:1fr;
        gap:2rem;
    }

    .vision-cards {
      grid-template-columns: 1fr 1fr;
    }

}

@media (max-width:560px){
    .vision-cards {
      grid-template-columns: 1fr;
    }
}
    /* OMNIS — título e lead */
    .section-title--nowrap {
      font-size: clamp(1.6rem, 3.4vw, 3rem);
    }

    .section-lead--nowrap {
      font-size: clamp(0.95rem, 1.3vw, 1.05rem);
      max-width: 640px;
    }

    @media (max-width: 900px) {
      .section-title--nowrap {
        font-size: clamp(1rem, 5vw, 1.8rem);
        white-space: normal;
      }
      .section-lead--nowrap {
        font-size: 0.9rem;
        white-space: normal;
        max-width: 560px;
      }
    }

    /* EQUIPE + PARCEIROS — título e lead */
    .section-title--nowrap-md {
      font-size: clamp(1.6rem, 3.6vw, 3rem);
    }

    .section-lead--nowrap-md {
      font-size: clamp(0.95rem, 1.3vw, 1.05rem);
      max-width: 640px;
    }

    @media (max-width: 900px) {
      .section-title--nowrap-md {
        font-size: clamp(1rem, 5vw, 1.8rem);
        white-space: normal;
      }
      .section-lead--nowrap-md {
        font-size: 0.9rem;
        white-space: normal;
        max-width: 560px;
      }
    }

    /* CONTATO — canais lado a lado */
    .contato-channels {
      flex-direction: row !important;
      gap: 0 !important;
      flex-wrap: nowrap;
      align-items: stretch;
      margin-top: 3rem;
      border-top: 1px solid var(--border);
    }

    .channel-link {
      flex: 1;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.75rem 1rem !important;
      border-top: none;
      border-right: 1px solid var(--border);
      border-radius: 0;
      gap: 0.6rem !important;
    }

    .channel-link:last-child {
      border-right: none;
    }

    .channel-arrow {
      display: none;
    }

    .channel-icon {
      margin-bottom: 0.25rem;
    }

    @media (max-width: 900px) {
      .contato-channels {
        flex-direction: column !important;
        border-top: none;
      }
      .channel-link {
        flex-direction: row !important;
        text-align: left;
        border-right: none;
        border-top: 1px solid var(--border);
        padding: 1.25rem 0 !important;
        align-items: center;
        justify-content: flex-start;
        gap: 1.25rem !important;
      }
      .channel-arrow { display: inline; }
      .channel-link:last-child { border-bottom: 1px solid var(--border); }
    }

    /* ── OMNIS: remover fundo colorido ── */
    .omnis-section {
      background: transparent !important;
      color: var(--ink);
    }
    .omnis-section .section-kicker { color: var(--ink-4); }
    .omnis-section .section-title  { color: var(--ink); }
    .omnis-section .section-lead   { color: var(--ink-2); }
    .stats-mosaic { background: transparent; }

    /* ── CENTRALIZAÇÃO HORIZONTAL das seções-alvo ── */
    .hero-content,
    .omnis-section > div,
    .team-section  > div,
    .parceiros-section > div,
    .metodologia-section > div,
    .modelo-section > div,
    .limites-section > div,
    .wayamou-section > div,
    .affectus-section > div,
    .lobivia-section > div,
    .velum-section > div {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* Itens internos que não devem herdar centralização */
    .omnis-section .stats-mosaic,
    .team-section  .team-flow,
    .parceiros-section .parceiros-grid,
    .metodologia-section .metodo-row,
    .modelo-section .workshop-phases,
    .wayamou-section .vision-cards,
    .affectus-section .workshop-phases,
    .lobivia-section .workshop-phases,
    .velum-section .workshop-phases,
    .hero-mv-row,
    .hero-oque-wrap {
      text-align: left;
      align-self: stretch;
    }

    /* A linha de pílulas do ciclo fica centralizada como bloco */
    .metodologia-section .metodo-row {
      justify-content: center;
    }

    /* Hero: eyebrow e lead já eram left — manter centered */
    .hero-eyebrow  { justify-content: center; }
    .hero-lead     { text-align: center; }

    /* ── DISTÂNCIA ENTRE HEADER E CONTEÚDO ── */
    /* Reduz padding-top das seções afetadas para o texto aparecer mais próximo do nav após scroll */
    .hero-content          { padding-top: 8rem; }
    .omnis-section        { padding-top: 4rem !important; }
    .team-section         { padding-top: 4rem !important; }
    .parceiros-section    { padding-top: 4rem !important; }
    .contato-section      { padding-top: 4rem !important; }
    .metodologia-section  { padding-top: 4rem !important; }
    .modelo-section       { padding-top: 4rem !important; }
    .limites-section      { padding-top: 4rem !important; }
    .wayamou-section      { padding-top: 4rem !important; }
    .affectus-section     { padding-top: 4rem !important; }
    .lobivia-section      { padding-top: 4rem !important; }
    .velum-section         { padding-top: 4rem !important; }

    /* ══════════════════════════════════════════
       ALTURA UNIFORME + CENTRALIZAÇÃO VERTICAL
       das 8 seções do menu
    ══════════════════════════════════════════ */

    /* Todas as seções: mesma altura mínima e flex para centralizar */
    .wayamou-section,
    .omnis-section,
    .velum-section,
    .team-section,
    .parceiros-section,
    .metodologia-section,
    .modelo-section,
    .limites-section,
    #lobivia,
    #affectus {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Contato: sem centralização vertical em 100vh — conteúdo começa logo após o header */
    .contato-section {
      min-height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    /* O wrapper interno também precisa preencher o espaço */
    .wayamou-section > div,
    .omnis-section > div,
    .velum-section > div,
    .team-section > div,
    .parceiros-section > div,
    .contato-section > div,
    .metodologia-section > div,
    .modelo-section > div,
    .affectus-section > div,
    .lobivia-section > div,
    .limites-section > div {
      width: 100%;
    }

    /* ══════════════════════════════════════════
       BOTÃO FLUTUANTE "RETORNAR"
    ══════════════════════════════════════════ */

    .btn-retornar {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--root);
      color: var(--bg);
      text-decoration: none;
      font-size: 0.78rem;
      font-family: var(--sans);
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.65rem 1.25rem;
      border-radius: 100px;
      box-shadow: 0 4px 16px rgba(61,32,16,0.18);
      opacity: 0;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .btn-retornar.visible {
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }

    .btn-retornar:hover {
      opacity: 0.85;
    }

    .btn-retornar-arrow {
      font-size: 0.9rem;
      line-height: 1;
      transform: rotate(-90deg);
      display: inline-block;
    }

    @media (max-width: 900px) {
      .btn-retornar {
        bottom: 1.25rem;
        right: 1.25rem;
        font-size: 0.72rem;
        padding: 0.55rem 1rem;
      }

      /* Seções mobile: altura livre, sem forçar 100vh */
      .wayamou-section,
      .omnis-section,
      .velum-section,
      .team-section,
      .parceiros-section,
      .contato-section,
      .metodologia-section,
      .modelo-section,
      .limites-section,
      #lobivia,
      #affectus {
        min-height: auto;
      }
    }

    /* ── TEAM AVATAR: foto real com fallback de iniciais ── */
    .team-avatar-circle {
      position: relative;
      overflow: hidden;
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }

    .team-avatar-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .team-avatar-initials {
      position: relative;
      z-index: 1;
      font-family: var(--serif);
      font-size: 1.1rem;
    }

    /* quando a foto carrega, esconde as iniciais */
    .team-avatar-img:not([style*="none"]) ~ .team-avatar-initials {
      opacity: 0;
    }

    /* ── ECO-NAME LOGO: placeholder para Lobivia e Velum ── */
    .eco-name-logo--placeholder {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      background: var(--border);
      object-fit: contain;
    }
