    /* ── HERO ── */
    #home {
      min-height: 100vh;
      background: var(--preto);
      display: flex;
      align-items: center;
      padding: 0 5%;
      padding-top: 30px;
      position: relative;
      overflow: hidden;
    }

    .hero-noise {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-glow-1 {
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(147,51,234,.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      bottom: -150px; left: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(147,51,234,.12);
      border: 1px solid rgba(147,51,234,.25);
      padding: .35rem 1rem;
      border-radius: 100px;
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--laranja-claro);
      font-weight: 600;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .7s .15s forwards;
    }

    .hero-title {
      font-family: 'Rubik', sans-serif;
      font-size: clamp(2.8rem, 5.5vw, 4.8rem);
      font-weight: 900;
      color: white;
      line-height: 1.02;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .7s .3s forwards;
    }

    .hero-title .grad {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-desc {
      font-size: 1rem;
      color: #777;
      line-height: 1.8;
      max-width: 480px;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp .7s .45s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp .7s .6s forwards;
    }

    /* ── HERO VISUAL ── */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      animation: fadeUp .7s .4s forwards;
    }

    .hero-orb {
      width: 300px; height: 300px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, var(--roxo-vivo), var(--laranja), var(--roxo-vivo));
      animation: spin-slow 8s linear infinite;
      filter: blur(2px);
      opacity: .7;
    }

    .hero-orb-inner {
      position: absolute;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: var(--preto);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: .5rem;
    }

    .hero-orb-inner img {
      width: 380px;
      filter: drop-shadow(0 0 18px rgba(147,51,234,.25));
}

    .hero-monogram {
      font-family: 'Rubik Mono One', monospace;
      font-size: 4rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }

    .hero-orb-label {
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #555;
    }

    .hero-pill {
      position: absolute;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(8px);
      border-radius: 100px;
      padding: .6rem 1.2rem;
      font-size: .78rem;
      font-weight: 500;
      color: white;
      white-space: nowrap;
    }

    .hero-pill-1 { top: 1rem; right: 1.3rem; color: var(--roxo-vivo); border-color: rgba(180, 96, 248, 0.15); }
    .hero-pill-2 { bottom: 1rem; left: -1rem; color: var(--laranja-claro); border-color: rgba(249,115,22,.3); }

    /* ── SPLIT BANNER ── */
    .split-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .split-side {
      padding: 4rem 5%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .split-side.dev { background: var(--roxo-escuro); }
    .split-side.mkt { background: var(--laranja-escuro); }

    .split-icon { font-size: 2.5rem; }

    .split-side.dev h3 {
      font-family: 'Rubik', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: white;
    }

    .split-side.dev p {
      font-size: .88rem;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
    }

    .split-link {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      color: white;
      font-size: .82rem;
      font-weight: 600;
      text-decoration: none;
      margin-top: .5rem;
      transition: gap .2s;
    }
    .split-link.dev:hover { gap: .8rem; }



    .split-side.mkt h3 {
      font-family: 'Rubik', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--branco);
    }

    .split-side.mkt p {
      font-size: .88rem;
      color: var(--preto);
      line-height: 1.7;
    }

    /* ── SERVIÇOS PREVIEW ── */
    .servicos-preview {
      padding: 6rem 5%;
      background: var(--branco);
    }

    .servicos-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

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

    .serv-card {
      padding: 2rem;
      border-radius: 20px;
      border: 1.5px solid #eee;
      background: white;
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }

    .serv-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 3px;
      transition: width .3s;
    }

    .serv-card.dev-card::before { background: var(--roxo-vivo); }
    .serv-card.mkt-card::before { background: var(--laranja); }

    .serv-card:hover::before { width: 100%; }
    .serv-card:hover {
      border-color: transparent;
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,.1);
    }

    .serv-badge {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: .25rem .75rem;
      border-radius: 100px;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .dev-badge { background: rgba(147,51,234,.1); color: var(--roxo-vivo); }
    .mkt-badge { background: rgba(249,115,22,.1); color: var(--laranja-escuro); }

    .serv-card h3 {
      font-family: 'Rubik', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: .6rem;
    }

    .serv-card p {
      font-size: .83rem;
      color: var(--cinza);
      line-height: 1.7;
    }

    /* ── SOBRE PREVIEW ── */
    .sobre-preview {
      padding: 6rem 5%;
      background: var(--off);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .dupla-visual {
      display: flex;
      gap: 1.5rem;
      position: relative;
    }

    .avatar-box {
      flex: 1;
      aspect-ratio: 3/4;
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .avatar-box img {
    position: absolute; /* Posiciona a imagem para preencher tudo */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ESSENCIAL: Preenche o box sem distorcer */
    z-index: 0; /* Garante que fique atrás de outros conteúdos, se houver */
    }

    .avatar-box.mateus { background: linear-gradient(135deg, var(--roxo-escuro), var(--roxo-vivo)); }
    .avatar-box.eliza  { background: linear-gradient(135deg, var(--laranja-escuro), var(--laranja-claro)); margin-top: 2rem; }

    .avatar-initial {
      font-family: 'Rubik Mono One', monospace;
      font-size: 3.5rem;
      color: rgba(255,255,255,.15);
      position: absolute;
      top: 1rem; left: 1rem;
    }

    .avatar-info { position: relative; z-index: 2; text-align: center; }
    .avatar-info strong { display: block; color: white; font-size: .9rem; font-weight: 700; }
    .avatar-info span { color: rgba(255,255,255,.65); font-size: .72rem; }

    /* ── NÚMEROS ── */
    .numeros {
      padding: 5rem 5%;
      background: var(--preto);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background-color: #1a1a1a;
    }

    .numero-item {
      background: var(--preto);
      padding: 3rem 2rem;
      text-align: center;
      transition: background .2s;
    }
    .numero-item:hover { background: #111; }

    .numero-val {
      font-family: 'Rubik Mono One', monospace;
      font-size: 2.8rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
      margin-bottom: .5rem;
    }

    .numero-label {
      font-size: .72rem;
      color: #555;
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    /* ── CTA ── */
    .cta-band {
      padding: 6rem 5%;
      background: var(--grad);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-band::before {
      content: 'EE';
      position: absolute;
      font-family: 'Rubik Mono One', monospace;
      font-size: 20rem;
      color: rgba(255,255,255,.04);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      white-space: nowrap;
    }

    .cta-band h2 {
      font-family: 'Rubik', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      color: white;
      margin-bottom: 1rem;
      position: relative;
    }

    .cta-band p {
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      position: relative;
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: white;
      color: var(--roxo-vivo);
      padding: .9rem 2.2rem;
      border-radius: 100px;
      font-weight: 700;
      font-size: .92rem;
      text-decoration: none;
      transition: all .3s;
      position: relative;
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .hero-grid { grid-template-columns: 1fr; margin-bottom: 20px;}
      .hero-visual { display: none; }
      .split-banner { grid-template-columns: 1fr; }
      .servicos-grid { grid-template-columns: 1fr 1fr; }
      .sobre-preview { grid-template-columns: 1fr; gap: 3rem; }
      .numeros { grid-template-columns: 1fr 1fr; }
      
    }
    @media (max-width: 560px) {
      .servicos-grid { grid-template-columns: 1fr; }
      /* .numeros { grid-template-columns: 1fr 1fr; } */
      .numeros { grid-template-columns: 1fr 1fr; gap: 1px; }
      .numero-item { padding: 2rem 1rem; min-width: 0; }
      .numero-val { font-size: 1.8rem; word-break: break-word; }
    }