  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Light.woff2') format('woff2');
    font-weight: 300; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Book.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-BookItalic.woff2') format('woff2');
    font-weight: 400; font-style: italic; font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Medium.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Black.woff2') format('woff2');
    font-weight: 900; font-style: normal; font-display: swap;
  }

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

  :root {
    --white:    #FFFFFF;
    --mint:     #C2E7DA;
    --blue:     #6290C3;
    --navy:     #1B1342;
    --lime:     #BAFD2C;
    --gray:     #B4B4B4;
    --gray-bg:  #F4F6F5;
    --ink:      #3A3A5A;
    --font: 'Gotham', 'Montserrat', Arial, sans-serif;
  }

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

  body {
    font-family: var(--font);
    font-weight: 400;
    background: var(--white);
    color: var(--navy);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  #conteudo:focus {
    outline: none;
  }

  a { color: inherit; }
  img { max-width: 100%; display: block; }
  ul { list-style: none; }

  :focus-visible {
    outline: 2px solid var(--lime);
    outline-offset: 3px;
  }

  section { padding: 110px 8%; }

  /* ===== divisor de marca: linha + nó (do guia de identidade) ===== */
  .brand-divider {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 3rem;
  }
  .brand-divider .line {
    height: 1px; width: 220px; max-width: 40vw;
    background: currentColor; opacity: .35;
  }
  .brand-divider .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--lime); margin-left: -1px; flex-shrink: 0;
  }
  .brand-divider.on-dark { color: var(--white); }
  .brand-divider.on-light { color: var(--navy); }

  .section-label {
    font-size: .72rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: .6rem;
  }
  .section-label::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--blue);
    display: block;
  }
  .section-label.inverse { color: var(--mint); }
  .section-label.inverse::before { background: var(--lime); }

  .section-title {
    font-family: var(--font);
    font-weight: 900;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.15;
    letter-spacing: -.01em;
    color: var(--navy);
    margin-bottom: 1.4rem;
  }
  .section-title em { font-style: normal; font-weight: 300; color: var(--blue); }
  .section-title.on-dark { color: var(--white); }
  .section-title.on-dark em { color: var(--mint); }

  .section-subtitle {
    max-width: 720px;
    font-size: 1.05rem; font-weight: 300;
    color: var(--ink);
    margin-bottom: 3rem;
  }
  .section-subtitle.on-dark { color: rgba(255,255,255,.72); }

  .body-text { font-size: .98rem; font-weight: 300; color: var(--ink); line-height: 1.85; margin-bottom: 1.2rem; }

  /* ===================== PLACEHOLDER (conteúdo pendente) ===================== */
  .ph {
    background: repeating-linear-gradient(-45deg, rgba(98,144,195,.06), rgba(98,144,195,.06) 4px, transparent 4px, transparent 14px);
    border: 1.5px dashed rgba(98,144,195,.45);
    border-radius: 6px;
    padding: .8rem 1rem;
    color: var(--blue);
    font-size: .78rem; font-style: italic; font-weight: 300;
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: 1rem;
  }
  .ph.on-dark {
    background: repeating-linear-gradient(-45deg, rgba(186,253,44,.06), rgba(186,253,44,.06) 4px, transparent 4px, transparent 14px);
    border-color: rgba(186,253,44,.45);
    color: rgba(255,255,255,.6);
  }

  /* ===================== NAV ===================== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: .7rem 8%;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(27,19,66,.08);
    box-shadow: 0 10px 34px rgba(27,19,66,.08);
  }
  .nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
  .nav-logo img { height: 52px; width: auto; }

  nav ul { display: flex; gap: 1.7rem; align-items: center; }
  nav ul a {
    text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: .07em;
    color: rgba(27,19,66,.78);
    text-transform: uppercase;
    transition: color .2s;
  }
  nav ul a:hover { color: var(--blue); }

  .nav-cta {
    background: var(--lime) !important;
    color: var(--navy) !important;
    padding: .5rem 1.1rem;
    border-radius: 2px;
    font-weight: 700 !important;
  }
  .nav-cta:hover { background: #a8e620 !important; }

  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(27,19,66,.16);
    border-radius: 2px;
    background: rgba(255,255,255,.64);
    cursor: pointer;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    position: relative;
  }

  .nav-toggle span::before,
  .nav-toggle span::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }

  /* ===================== HERO ===================== */
  #inicio {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    padding: 150px 8% 90px;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }
  #inicio::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 55% at 82% 35%, rgba(98,144,195,.20) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 15% 85%, rgba(186,253,44,.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(194,231,218,.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(194,231,218,.05) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 0;
  }

  .hero-text { position: relative; z-index: 1; }
  .hero-eyebrow {
    font-size: .74rem; font-weight: 700; letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 1.4rem;
  }
  .hero-title {
    font-weight: 900;
    font-size: clamp(2.3rem, 4.6vw, 3.7rem);
    line-height: 1.12;
    letter-spacing: -.015em;
    color: var(--white);
    margin-bottom: 1.7rem;
  }
  .hero-title strong { color: var(--mint); font-weight: 300; }

  .hero-desc {
    font-size: 1.05rem; font-weight: 300;
    color: rgba(255,255,255,.72);
    max-width: 480px;
    margin-bottom: 2.4rem;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary, .btn-outline, .btn-solid {
    padding: .9rem 2rem;
    text-decoration: none;
    font-weight: 700; font-size: .88rem;
    letter-spacing: .05em;
    border-radius: 2px;
    display: inline-block;
    transition: background .2s, transform .15s, border-color .2s;
    font-family: var(--font);
    cursor: pointer;
    border: none;
  }
  .btn-primary { background: var(--lime); color: var(--navy); }
  .btn-primary:hover { background: #a8e620; transform: translateY(-1px); }
  .btn-outline { border: 1.5px solid rgba(255,255,255,.32); color: var(--white); background: transparent; }
  .btn-outline:hover { border-color: var(--mint); background: rgba(194,231,218,.08); }
  .btn-solid { background: var(--navy); color: var(--white); border: 1.5px solid var(--navy); }
  .btn-solid:hover { background: var(--blue); border-color: var(--blue); }

  .hero-visual {
    position: absolute;
    top: 52%;
    right: 5%;
    width: min(44vw, 520px);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .86;
    transform: translateY(-50%) rotate(-6deg);
    pointer-events: auto;
    user-select: none;
  }
  .node-graphic {
    width: 100%;
    max-width: 520px;
    overflow: visible;
  }
  .net-node {
    cursor: pointer;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .34s ease, filter .34s ease;
  }
  .net-edge {
    stroke: var(--blue);
    stroke-width: 1.2;
    opacity: .46;
    pointer-events: none;
    stroke-linecap: round;
    transition: stroke .34s ease, opacity .34s ease, stroke-width .34s ease, filter .34s ease;
    animation: network-flow 7s linear infinite;
  }
  .net-edge-mesh {
    stroke: var(--mint);
    stroke-width: .9;
    opacity: .3;
  }
  .node-ring {
    r: var(--r);
    pointer-events: visiblePainted;
    transition: fill .34s ease, stroke .34s ease, stroke-width .34s ease, r .34s cubic-bezier(.2,.8,.2,1), filter .34s ease;
  }
  .node-core {
    pointer-events: visiblePainted;
    transition: fill .34s ease, r .34s cubic-bezier(.2,.8,.2,1), filter .34s ease;
  }
  .net-node:hover,
  .net-node:focus-visible,
  .net-node.is-active {
    outline: none;
    transform: scale(1.12);
    filter:
      drop-shadow(0 0 7px rgba(255,255,255,.28))
      drop-shadow(0 0 14px rgba(194,231,218,.24));
  }
  .net-node:hover .node-ring,
  .net-node:focus-visible .node-ring,
  .net-node.is-active .node-ring {
    fill: #2a1f68;
    stroke: var(--mint);
    stroke-width: 2.8;
    r: calc(var(--r) + 3px);
  }
  .net-node:hover .node-core,
  .net-node:focus-visible .node-core,
  .net-node.is-active .node-core {
    fill: var(--lime);
    r: 5px;
  }
  .net-edge.is-linked {
    stroke: var(--mint);
    opacity: .78;
    stroke-width: 1.55;
    filter: drop-shadow(0 0 5px rgba(194,231,218,.24));
  }
  .node-graphic.network-all-active .net-node:not(.net-hub) {
    opacity: .78;
    transform: scale(1.035);
    filter:
      drop-shadow(0 0 5px rgba(255,255,255,.18))
      drop-shadow(0 0 10px rgba(194,231,218,.16));
  }
  .node-graphic.network-all-active .net-edge {
    stroke: var(--mint);
    opacity: .62;
    stroke-width: 1.35;
    filter: drop-shadow(0 0 4px rgba(194,231,218,.18));
  }
  .node-graphic.network-all-active .net-edge-mesh {
    stroke: var(--mint);
    opacity: .46;
  }
  .node-graphic.network-all-active .node-ring {
    stroke: var(--mint);
    stroke-width: 2;
    r: calc(var(--r) + 1px);
  }
  .node-graphic.network-all-active .net-hub {
    transform: scale(1.1);
  }
  .node-graphic.network-all-active .hub-ring {
    fill: #2a1f68;
    stroke: var(--white);
    stroke-width: 3;
    r: calc(var(--r) + 4px);
  }
  .node-graphic.network-all-active .hub-core {
    fill: var(--white);
    r: 9px;
  }
  @keyframes network-flow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -24; }
  }

  /* ===================== SOBRE ===================== */
  #sobre {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 5rem;
    align-items: start;
  }
  #sobre.sobre-editorial {
    display: block;
  }
  .sobre-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
    gap: 5rem;
    align-items: end;
    max-width: 1180px;
  }
  .sobre-copy .body-text {
    max-width: 720px;
  }
  .sobre-frase {
    position: relative;
    color: var(--navy);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 300;
    line-height: 1.35;
    padding: 2rem 0 0 2rem;
  }
  .sobre-frase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 1px;
    background: var(--lime);
  }
  .sobre-frase::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 72px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
  }
  .valores-editoriais {
    display: grid;
    gap: 0;
    margin-top: 3.2rem;
    max-width: 980px;
    border-top: 1px solid rgba(27,19,66,.12);
  }
  .valores-editoriais p {
    position: relative;
    padding: 1.1rem 0 1.1rem 1.45rem;
    border-bottom: 1px solid rgba(27,19,66,.1);
    font-size: .93rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.75;
  }
  .valores-editoriais p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--navy);
  }
  .valores-editoriais strong {
    color: var(--navy);
    font-weight: 700;
  }

  .valores-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
  .valor-item { display: flex; gap: .9rem; align-items: flex-start; }
  .valor-node {
    flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%;
    background: var(--navy); margin-top: .45rem; position: relative;
  }
  .valor-node::after {
    content: ''; position: absolute; left: 50%; top: 100%;
    width: 1px; height: 1.6rem; background: rgba(27,19,66,.18);
    transform: translateX(-50%);
  }
  .valor-text { font-size: .93rem; font-weight: 300; color: var(--ink); line-height: 1.75; }
  .valor-text strong { font-weight: 700; color: var(--navy); }

  .sobre-side {
    display: grid;
    gap: 1.5rem;
    margin-top: 6.2rem;
  }
  .mvv-card {
    background: var(--gray-bg);
    border-left: 3px solid var(--blue);
    padding: 1.8rem 1.6rem;
    border-radius: 0 6px 6px 0;
    position: relative;
    overflow: hidden;
  }
  .mvv-card::after {
    content: '';
    position: absolute;
    right: -58px;
    bottom: -78px;
    width: 240px;
    aspect-ratio: 1;
    background: url('assets/lucchesi-icon.png') center / contain no-repeat;
    opacity: .085;
    pointer-events: none;
  }
  .mvv-card h3 {
    position: relative;
    z-index: 1;
    font-size: .74rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: .7rem;
  }
  .mvv-card p { position: relative; z-index: 1; font-size: .92rem; font-weight: 300; color: var(--ink); line-height: 1.75; }
  .mvv-card.lime { border-left-color: var(--lime); }
  .mvv-card.lime h3 { color: var(--navy); }

  /* ===================== ÁREAS DE ATUAÇÃO ===================== */
  #atuacao { background: var(--gray-bg); }
  .atuacao-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    border: 1.5px solid rgba(27,19,66,.08);
  }
  .atuacao-card {
    background: var(--white);
    border: 1px solid rgba(27,19,66,.06);
    padding: 2.2rem 1.7rem;
    position: relative;
    overflow: hidden;
    transition: background .25s;
  }
  .atuacao-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--lime);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .atuacao-card:hover { background: var(--gray-bg); }
  .atuacao-card:hover::before { transform: scaleX(1); }
  .atuacao-node {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.4rem;
  }
  .atuacao-node span { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
  .atuacao-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .7rem; }
  .atuacao-card p { font-size: .85rem; font-weight: 300; color: var(--ink); line-height: 1.7; }

  /* ===================== SERVIÇOS ===================== */
  #servicos { background: var(--navy); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5px;
    border: 1.5px solid rgba(194,231,218,.12);
  }
  .service-card {
    padding: 2.3rem 1.8rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(194,231,218,.1);
    position: relative; overflow: hidden;
    transition: background .25s;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--lime);
    transform: scaleY(0); transform-origin: top;
    transition: transform .3s;
  }
  .service-card:hover { background: rgba(255,255,255,.06); }
  .service-card:hover::before { transform: scaleY(1); }
  .service-icon-ph {
    width: 42px; height: 42px;
    border: 1.5px dashed rgba(186,253,44,.4);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem;
    font-size: .6rem; text-align: center; line-height: 1.3;
    color: rgba(255,255,255,.35); font-style: italic; font-weight: 300;
  }
  .service-name { font-size: .98rem; font-weight: 700; color: var(--white); margin-bottom: .6rem; }
  .service-desc { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7; }

  /* ===================== PROJETOS ===================== */
  #projetos { background: var(--white); }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  .project-card {
    background: var(--white);
    border: 1px solid rgba(27,19,66,.1);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .project-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(27,19,66,.12); }
  .project-img {
    width: 100%; height: 200px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .project-img-contain {
    background: var(--gray-bg);
    padding: 1rem;
  }
  .project-img-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .project-img-bg {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, rgba(98,144,195,.1), rgba(98,144,195,.1) 4px, transparent 4px, transparent 18px);
  }
  .project-img-label {
    position: relative; z-index: 1; text-align: center; padding: 1rem;
    font-size: .78rem; font-style: italic; font-weight: 300; color: rgba(255,255,255,.4);
  }
  .project-body { padding: 1.9rem; }
  .project-tag {
    font-size: .68rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: .7rem;
  }
  .project-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
  .project-desc {
    font-size: .9rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.75;
  }
  .project-card-empty {
    border: 1.5px dashed rgba(27,19,66,.22);
    background: transparent;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 3rem; text-align: center; border-radius: 6px;
  }
  .project-card-empty .plus { font-size: 1.8rem; color: rgba(27,19,66,.25); margin-bottom: .8rem; font-weight: 300; }
  .project-card-empty p { font-size: .8rem; color: var(--gray); font-style: italic; font-weight: 300; }

  /* ===================== EQUIPE ===================== */
  #equipe { background: var(--gray-bg); }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  .team-card {
    background: var(--white);
    border: 1.5px solid rgba(27,19,66,.08);
    border-radius: 6px;
    padding: 2.1rem;
    transition: border-color .2s;
  }
  .team-card:hover { border-color: var(--blue); }
  .team-photo {
    display: none;
  }
  .team-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .2rem; }
  .team-role { font-size: .78rem; font-weight: 500; color: var(--blue); letter-spacing: .05em; margin-bottom: 1rem; }
  .team-card .ph {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--ink);
    font-size: .85rem;
    font-style: normal;
    line-height: 1.75;
    display: block;
    cursor: default;
    caret-color: transparent;
  }
  .team-lattes {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .74rem; font-weight: 700; letter-spacing: .05em;
    color: var(--navy); text-decoration: none; text-transform: uppercase;
    border-bottom: 1px solid var(--blue); padding-bottom: 1px;
    transition: color .2s, border-color .2s;
  }
  .team-lattes:hover { color: var(--blue); }

  /* ===================== COMO TRABALHAMOS (processo) ===================== */
  #processo { background: var(--white); }
  .process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
  }
  .process-track::before {
    content: '';
    position: absolute; top: 17px; left: 0; right: calc((100% / 6) - 17px);
    height: 1px;
    background: repeating-linear-gradient(to right, rgba(27,19,66,.25) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .process-step { position: relative; z-index: 1; padding: 0 1rem 0 0; }
  .process-node {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--navy); color: var(--lime);
    display: flex; align-items: center; justify-content: center;
    font-size: .82rem; font-weight: 700;
    margin-bottom: 1.1rem;
  }
  .process-step h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
  .process-step p { font-size: .8rem; font-weight: 300; color: var(--ink); line-height: 1.6; }

  /* ===================== CONTATO ===================== */
  #contato {
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .contact-info-item { margin-bottom: 1.6rem; }
  .contact-info-label {
    font-size: .68rem; font-weight: 700; letter-spacing: .18em;
    text-transform: uppercase; color: rgba(255,255,255,.4);
    margin-bottom: .35rem;
  }
  .contact-info-value { font-size: .98rem; color: var(--white); }
  .contact-info-value a { color: var(--mint); text-decoration: none; }
  .contact-info-value a:hover { color: var(--lime); }

  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: .4rem; }
  .form-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
  .form-input, .form-textarea {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 4px;
    padding: .85rem 1rem;
    color: var(--white);
    font-family: var(--font);
    font-weight: 300;
    font-size: .92rem;
    transition: border-color .2s;
    outline: none;
  }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.32); }
  .form-input:focus, .form-textarea:focus { border-color: var(--lime); }
  .form-textarea { min-height: 130px; resize: vertical; }
  .form-submit {
    background: var(--lime); color: var(--navy); border: 1px solid rgba(186,253,44,.65);
    padding: 1rem 2rem; font-family: var(--font); font-weight: 700; font-size: .9rem;
    letter-spacing: .05em; cursor: pointer; border-radius: 4px;
    box-shadow: 0 10px 26px rgba(186,253,44,.18), 0 2px 8px rgba(0,0,0,.18);
    transition: background .2s, border-color .2s, box-shadow .2s, transform .18s;
    align-self: flex-start;
  }
  .form-submit:hover {
    background: #c4ff3d;
    border-color: rgba(196,255,61,.9);
    box-shadow: 0 14px 34px rgba(186,253,44,.28), 0 5px 14px rgba(0,0,0,.22);
    transform: translateY(-2px);
  }

  /* ===================== FOOTER ===================== */
  footer {
    background: linear-gradient(90deg, #19123f 0%, #120d2d 48%, #120d2d 52%, #19123f 100%);
    padding: 2.6rem 8%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-brand { display: flex; align-items: center; gap: .6rem; }
  .footer-brand img { height: 46px; width: auto; opacity: 1; }
  .footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); font-weight: 300; }
  .footer-meta { font-size: .78rem; color: rgba(255,255,255,.35); font-weight: 300; }

  /* ===================== NETWORK BACKGROUND ===================== */
  .has-network-bg {
    position: relative;
    overflow: hidden;
  }
  .has-network-bg > *:not(.network-bg) {
    position: relative;
    z-index: 1;
  }
  .network-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    opacity: .55;
    pointer-events: none;
  }

  /* ===================== WHATSAPP ===================== */
  .whatsapp-btn {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    text-decoration: none; transition: transform .2s, box-shadow .2s;
  }
  .whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
  .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 980px) {
    #inicio, #sobre, #contato { grid-template-columns: 1fr; }
    .sobre-side { margin-top: 0; }
    .sobre-intro { grid-template-columns: 1fr; gap: 2.5rem; }
    .sobre-frase { max-width: 620px; }
    nav { padding: .65rem 6%; }
    .nav-logo img { height: 44px; }
    nav ul { gap: 1rem; }
    nav ul a { font-size: .72rem; }
    .nav-cta { padding: .45rem .85rem; }
    .atuacao-grid { grid-template-columns: repeat(2, 1fr); }
    .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 2.2rem; }
    .process-track::before { display: none; }
  }
  @media (max-width: 760px) {
    section { padding: 80px 6%; }
    nav { padding: .85rem 6%; flex-wrap: wrap; }
    .nav-logo img { height: 42px; }
    .nav-toggle { display: flex; }
    nav ul {
      display: none;
      flex-basis: 100%;
      width: 100%;
      flex-direction: column;
      align-items: flex-start;
      gap: .85rem;
      padding: .85rem 0 .2rem;
    }
    nav.is-open ul { display: flex; }
    #inicio { padding-top: 120px; }
    .hero-visual {
      top: 58%;
      right: -24%;
      width: 104vw;
      opacity: .18;
    }
    .atuacao-grid { grid-template-columns: 1fr; }
    .process-track { grid-template-columns: 1fr 1fr; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
  }
