@font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayXXThin.ttf') format('truetype'); font-weight: 100; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayXXThinItalic.ttf') format('truetype'); font-weight: 100; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayXThin.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayXThinItalic.ttf') format('truetype'); font-weight: 200; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayThin.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayThinItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayRoman.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayRomanItalic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayMediu.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayMediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayBold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayBoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayBlack.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
    @font-face { font-family: 'Neue Haas Grotesk Display'; src: url('fonts/NeueHaasDisplayBlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black: #0a0a0a; --white: #ffffff; --green: #57f82a;
      --bg-dark: #0a0a0a; --dark-text: #ffffff; --dark-text-soft: rgba(255,255,255,0.55); --dark-border: rgba(255,255,255,0.1);
      --dark-card: #141414; --dark-card-hover: #1c1c1c;
      --font-display: 'Neue Haas Grotesk Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --font: 'Neue Haas Grotesk Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --radius: 100px; --radius-card: 16px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); font-weight: 300; line-height: 1.6; overflow-x: hidden; background: var(--bg-dark); color: var(--dark-text); }
    h1, h2, .heading { font-family: var(--font-display); letter-spacing: -0.015em; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* NAV (igual ao restante do site) */
    #navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 1rem 5vw; background: #ffffff; transition: box-shadow 0.35s; border-bottom: 1px solid rgba(0,0,0,0.07); }
    #navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
    .nav-logo { display: flex; align-items: center; text-decoration: none; color: #0a0a0a; }
    .nav-logo-img { height: 32px; width: auto; display: block; }
    .nav-links { display: flex; gap: 0; list-style: none; background: #0a0a0a; border-radius: 100px; padding: 0.45rem 0.5rem; align-items: center; }
    .nav-links li a { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #ffffff !important; padding: 0.4rem 1.1rem; border-radius: 100px; transition: color 0.2s, background 0.2s; white-space: nowrap; text-decoration: none; }
    .nav-links li a:hover, .nav-links li a.active { color: #0a0a0a !important; background: var(--green); }
    .nav-right { display: flex; align-items: center; gap: 1.2rem; }
    .nav-cta { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #0a0a0a !important; background: transparent; border: 1.5px solid #0a0a0a; padding: 0.55rem 1.4rem; border-radius: 100px; transition: background 0.2s, color 0.2s, border-color 0.2s; white-space: nowrap; }
    .nav-cta:hover { background: var(--green); border-color: var(--green); color: #0a0a0a; }
    .nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--black); transition: all 0.3s; }
    .mobile-menu { display: none; position: fixed; inset: 0; background: var(--black); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-size: 1.5rem; font-weight: 600; color: #fff; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--green); }
    .mobile-close { position: absolute; top: 1.5rem; right: 5vw; font-size: 1.4rem; cursor: pointer; color: rgba(255,255,255,0.4); }

    .label { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green); margin-bottom: 1.2rem; }
    .label::before { content: ''; display: inline-block; width: 18px; height: 1.5px; background: var(--green); flex-shrink: 0; }

    /* HERO DA PÁGINA */
    .projetos-hero { padding: 11rem 5vw 4rem; }
    .projetos-hero h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 700; line-height: 1.05; color: #fff; margin-bottom: 1.2rem; }
    .projetos-hero p { font-size: clamp(1rem, 1.3vw, 1.2rem); color: rgba(255,255,255,0.75); max-width: 620px; line-height: 2; }

    /* GRID DE PROJETOS */
    .projetos-grid-section { padding: 2rem 5vw 8rem; }
    .projetos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .projeto-card { display: block; border-radius: var(--radius-card); overflow: hidden; background: var(--dark-card); border: 1px solid var(--dark-border); transition: transform 0.3s ease, background 0.3s ease; }
    .projeto-card:hover { transform: translateY(-4px); background: var(--dark-card-hover); }
    .projeto-card-img { aspect-ratio: 4/3; overflow: hidden; }
    .projeto-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .projeto-card:hover .projeto-card-img img { transform: scale(1.05); }
    .projeto-card-info { padding: 1.6rem 1.8rem 2rem; display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; }
    .projeto-card-name { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
    .projeto-card-tag { font-size: 1.05rem; color: rgba(255,255,255,0.75); }
    .projeto-card-arrow { font-size: 1.3rem; color: var(--green); flex-shrink: 0; transition: transform 0.3s ease; }
    .projeto-card:hover .projeto-card-arrow { transform: translate(3px,-3px); }

    /* placeholder — card "em breve" */
    .projeto-card-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; aspect-ratio: 4/3; border: 1.5px dashed rgba(255,255,255,0.12); border-radius: var(--radius-card); color: rgba(255,255,255,0.25); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

    footer { background: var(--bg-dark); padding: 3rem 5vw; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; border-top: 1px solid var(--dark-border); }
    .footer-copy { font-size: 0.7rem; font-weight: 400; color: var(--dark-text-soft); }
    .footer-logo-center { display: flex; justify-content: center; }
    .footer-social { display: flex; gap: 2rem; justify-content: flex-end; }
    .footer-social a { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-text-soft); transition: color 0.2s; }
    .footer-social a:hover { color: var(--green); }

    @media (max-width: 700px) {
      .projetos-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-cta-desk { display: none; }
      .nav-burger { display: flex; }
      footer { grid-template-columns: 1fr; gap: 1rem; }
      .footer-logo-center { display: none; }
      .footer-social { justify-content: flex-start; }
    }
