.page-hero {
      min-height: 48vh;
      display: flex;
      align-items: center;
      padding: 0 5%;
      padding-top: 100px;
      background: var(--preto);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 40%, rgba(147,51,234,.2) 0%, transparent 55%),
        radial-gradient(circle at 15% 80%, rgba(249,115,22,.15) 0%, transparent 50%);
    }
    .page-hero-content { position: relative; z-index: 2; margin: 100px;}
    .page-hero h1 {
      font-family: 'Rubik', sans-serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: white;
      line-height: 1.08;
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp .7s .2s forwards;
    }
    .page-hero h1 .grad {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-hero p {
      color: #666;
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.8;
      opacity: 0;
      animation: fadeUp .7s .4s forwards;
    }

    .blocosWrapper {
      padding: 100px;
    }

 /* ── ABAS DE FILTRO ── */
/* ── CONTAINER GERAL ── */
.servicos-container {
  position: relative;
}

.servicos-tabs {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 5%;
  padding-top: 3rem;
  background: transparent;
  position: relative;
  z-index: 2;
  /* fundo padrão = roxo (dev é o primeiro) */
  background-color: #111;
  /* transition: background-color .4s; */
}

.servicos-tabs.bg-dev    { background-color: var(--roxo-vivo); }
.servicos-tabs.bg-mkt    { background-color: var(--laranja); }
.servicos-tabs.bg-combos { background-color: #111; }

.tab-btn {
  padding: .5rem 1.3rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: transparent;
  font-family: 'Rubik', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.836);
  cursor: pointer;
  transition: all .25s;
}

.tab-btn:hover {
  border-color: white;
  color: white;
}

.tab-btn.active {
  background: white;
  border-color: white;
  /* cor do texto acompanha o fundo da seção */
  color: var(--roxo-vivo);
}

.servicos-tabs.bg-mkt    .tab-btn.active { color: var(--laranja); }
.servicos-tabs.bg-combos .tab-btn.active { color: #111; }

/* ── BLOCO COMBOS ── */
.bloco-combos {
  background: #111;
}

.bloco-combos .bloco-header {
  border-color: #333;
}

.bloco-combos .bloco-header h2 {
  color: white;
}

.bloco-combos .serv-full {
  background: #1a1a1a;
  border-color: #2a2a2a;
}

.bloco-combos .serv-full:hover {
  border-color: rgba(147,51,234,.4);
}

.bloco-combos .serv-full h3 {
  color: white;
}

.bloco-combos .serv-lista li::before {
  content: '▸';
  color: var(--roxo-vivo);
  font-size: .7rem;
}

/* ── SEÇÃO OCULTA ── */
.bloco.hidden {
  display: none;
}

    /* ── BLOCO DEV ── */
    .bloco {
      padding: 3rem 5%;
    }
    .bloco-dev { background: #111; }
    .bloco-mkt { background: #111; }

    .bloco-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 3rem;
      padding-bottom: 1.5rem;
      border-bottom: 2px solid;
    }
    .bloco-dev .bloco-header { border-color: #333 }
    .bloco-mkt .bloco-header { border-color: #333; }

    .bloco-header-icon { font-size: 2rem; }

    .bloco-header h2 {
      font-family: 'Rubik', sans-serif;
      font-size: 1.8rem;
      font-weight: 800;
    }

    .bloco-dev .bloco-header h2 { color: var(--off); }
    .bloco-mkt .bloco-header h2 { color: var(--off); }

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

    .serv-full {
      padding: 2rem;
      border-radius: 18px;
      background: #1a1a1a;
      border: 1.5px solid #2a2a2a;
      transition: all .3s;
    }
    .bloco-mkt .serv-full { background: #1a1a1a; border-color: 2a2a2a; }

    .serv-full:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 48px rgba(0,0,0,.08);
    }

    .bloco-dev .serv-full:hover { border-color: rgba(147,51,234,.3); }
    .bloco-mkt .serv-full:hover { border-color: rgba(249,115,22,.3); }

    .serv-full-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

    .serv-full h3 {
      font-family: 'Rubik', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--off);
    }

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

    .serv-lista {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .serv-lista li {
      font-size: .78rem;
      color: var(--cinza);
      display: flex;
      align-items: center;
      gap: .4rem;
    }
    .bloco-dev .serv-lista li::before { content: '▸'; color: var(--roxo-vivo); font-size: .7rem; }
    .bloco-mkt .serv-lista li::before { content: '▸'; color: var(--laranja); font-size: .7rem; }

    /* ── PROCESSO ── */
    .processo {
      padding: 6rem 5%;
      background: var(--preto);
    }
    .processo .section-title { color: white; }

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

    .passo {
      padding: 2rem 1.5rem;
      background: #111;
      border-radius: 16px;
      border: 1px solid #1a1a1a;
      transition: background .2s;
    }
    .passo:hover { background: #161616; }

    .passo-num {
      font-family: 'Rubik Mono One', monospace;
      font-size: 2.5rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 1rem;
    }

    .passo h4 {
      font-family: 'Rubik', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      color: white;
      margin-bottom: .4rem;
    }

    .passo p { font-size: .8rem; color: #555; line-height: 1.6; }

    /* ── CTA ── */
    .serv-cta {
      padding: 5rem 5%;
      background: var(--off);
      text-align: center;
    }

    @media (max-width: 860px) {
      .bloco-grid { grid-template-columns: 1fr 1fr; }
      .processo-grid { grid-template-columns: 1fr 1fr; }
      .page-hero-content { margin: 20px;}
    }
    @media (max-width: 560px) {
      .bloco-grid { grid-template-columns: 1fr; }
      .page-hero-content { margin: 20px;}
    }