/* ════════════════════════════════════════════════════════════════
   PÁGINA "TRABALHE CONOSCO" (.tc-) — peças específicas.
   Reusa o kit de página interna (classes .qs-* de quem.css) para
   hero, seções, eyebrow/title/lead, CTA e reveals. Aqui só o que é
   exclusivo: trio de stats do hero, grids de 3 colunas e pilares.
   ════════════════════════════════════════════════════════════════ */

/* (o trio de estatísticas do hero — .tc-herostats — agora vive no kit
   compartilhado quem.css, para Quem Somos e Trabalhe Conosco usarem) */

/* grids de 3 colunas (pilares e benefícios) */
.tc-grid3 {
  margin-top: 52px; display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px)  { .tc-grid3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .tc-grid3 { grid-template-columns: repeat(3, 1fr); } }

/* lift no hover dos adv-card (esta página não carrega o adv.js) */
.tc-grid3 .adv-card {
  transition: transform 0.4s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.tc-grid3 .adv-card:hover { transform: translateY(-6px); }

/* faixa escura "O ecossistema" (manifesto centralizado, acima dos benefícios) */
.tc-eco {
  position: relative; overflow: hidden;
  background: #08080c; color: #fff;
  padding: clamp(90px, 11vw, 150px) 24px;
  text-align: center;
}
.tc-eco::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(46% 42% at 50% -8%, rgba(139, 92, 246, 0.30), transparent 62%),
    radial-gradient(34% 55% at 8% 0%, rgba(124, 63, 224, 0.16), transparent 60%),
    radial-gradient(34% 55% at 92% 0%, rgba(157, 211, 255, 0.08), transparent 60%);
}
.tc-eco-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.tc-eco-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 28px;
  background: linear-gradient(135deg, #c9b7ff 0%, #8b5cf6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tc-eco-inner p {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.tc-eco-inner p + p { margin-top: 22px; }
.tc-eco-inner strong { color: #fff; font-weight: 600; }

/* pilar de valor (card de vidro claro, sem arco) */
.tc-pillar {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(12, 14, 20, 0.08);
  border-radius: 22px;
  padding: 30px 28px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 8px rgba(12, 14, 20, 0.05),
    0 18px 44px rgba(12, 14, 20, 0.06);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.tc-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 28px 64px rgba(12, 14, 20, 0.10);
}
.tc-pillar-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  color: var(--purple-dark); background: rgba(124, 58, 237, 0.08);
  margin-bottom: 22px;
}
.tc-pillar-ico svg { width: 24px; height: 24px; }
.tc-pillar h3 {
  font-family: var(--f-section); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; color: #0c0e14; margin-bottom: 10px;
}
.tc-pillar p {
  font-family: var(--f-body); font-size: 14px; line-height: 1.6;
  color: rgba(12, 14, 20, 0.62);
}
