/* ═══════════════════════════════════════════════════════════════════
   VAGAS.CSS — Trabalhe Conosco Landing Page
   Prefix: vg-
   ═══════════════════════════════════════════════════════════════════ */

/* ── Colour tokens ── */
:root {
  --vg-accent: #6366f1;
  --vg-accent-light: #818cf8;
  --vg-accent-dim: rgba(99, 102, 241, .12);
  --vg-accent-glow: rgba(99, 102, 241, .28);
}

/* ── Gradient text ── */
.vg-tg {
  background: linear-gradient(135deg, #818cf8, #6366f1, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge ── */
.vg-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .8rem;
  background: var(--vg-accent-dim);
  color: var(--vg-accent-light);
  border: 1px solid rgba(99, 102, 241, .22);
}

/* ── Section header (centered) ── */
.vg-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vg-section-header h2 {
  font-family: var(--wf-font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--wf-text-1);
  margin: 0 0 .75rem;
  line-height: 1.2;
}
.vg-section-header p {
  color: var(--wf-text-2);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
.vg-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.vg-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.vg-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .22;
}
.vg-hero__orb--1 { width: 500px; height: 500px; background: #6366f1; top: -100px; left: -120px; }
.vg-hero__orb--2 { width: 400px; height: 400px; background: #a78bfa; top: 20%; right: -80px; }
.vg-hero__orb--3 { width: 300px; height: 300px; background: #818cf8; bottom: -60px; left: 40%; }

.vg-hero__content {
  max-width: 740px;
}
.vg-hero__title {
  font-family: var(--wf-font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--wf-text-1);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.vg-hero__desc {
  font-size: 1.1rem;
  color: var(--wf-text-2);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2rem;
}
.vg-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Stats strip */
.vg-hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.vg-hero__stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.vg-hero__stat-value {
  font-family: var(--wf-font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--vg-accent-light);
  line-height: 1;
}
.vg-hero__stat-label {
  font-size: .78rem;
  color: var(--wf-text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.vg-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(99,102,241,.2);
}

/* ══════════════════════════════════════════════════
   JOB CARDS
   ══════════════════════════════════════════════════ */
.vg-jobs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.vg-job-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(99,102,241,.15);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.vg-job-card:hover {
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 8px 32px rgba(99,102,241,.12);
  transform: translateY(-3px);
}

.vg-job-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vg-job-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--vg-accent-dim);
  color: var(--vg-accent-light);
  flex-shrink: 0;
}
.vg-job-card__icon--indigo { background: rgba(99,102,241,.12); color: #818cf8; }
.vg-job-card__icon--emerald { background: rgba(16,185,129,.1); color: #34d399; }
.vg-job-card__icon--violet  { background: rgba(167,139,250,.12); color: #c4b5fd; }

.vg-job-card__tag {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .2rem .55rem;
  border-radius: 999px;
}
.vg-job-card__tag--tech    { background: rgba(99,102,241,.1); color: #818cf8; border: 1px solid rgba(99,102,241,.2); }
.vg-job-card__tag--process { background: rgba(20,184,166,.1); color: #2dd4bf; border: 1px solid rgba(20,184,166,.2); }
.vg-job-card__tag--ai      { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.2); }
.vg-job-card__tag--cs      { background: rgba(167,139,250,.1); color: #c4b5fd; border: 1px solid rgba(167,139,250,.2); }

.vg-job-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin: 0;
  line-height: 1.3;
}
.vg-job-card__desc {
  font-size: .88rem;
  color: var(--wf-text-2);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.vg-job-card__meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.vg-job-card__meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--wf-text-3);
}
.vg-job-card__meta i { font-size: .9rem; color: var(--vg-accent-light); }

.vg-job-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--vg-accent-light);
  text-decoration: none;
  padding: .5rem .85rem;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 8px;
  transition: background .15s, border-color .15s;
  margin-top: auto;
}
.vg-job-card__cta:hover {
  background: var(--vg-accent-dim);
  border-color: rgba(99,102,241,.45);
}

/* Jobs footer */
.vg-jobs__footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(99,102,241,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.vg-jobs__footer p {
  color: var(--wf-text-2);
  font-size: .95rem;
}

/* ══════════════════════════════════════════════════
   BENEFITS
   ══════════════════════════════════════════════════ */
.vg-benefits-section {
  background: linear-gradient(180deg, transparent, rgba(99,102,241,.04), transparent);
}

.vg-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.vg-benefit {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: border-color .2s, transform .2s;
}
.vg-benefit:hover {
  border-color: rgba(99,102,241,.32);
  transform: translateY(-3px);
}
.vg-benefit__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--vg-accent-dim);
  color: var(--vg-accent-light);
}
.vg-benefit h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin: 0;
}
.vg-benefit p {
  font-size: .88rem;
  color: var(--wf-text-2);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════ */
.vg-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vg-review {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: relative;
}
.vg-review::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3rem;
  color: rgba(99,102,241,.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.vg-review__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--vg-accent-dim);
  color: var(--vg-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.vg-review h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--wf-text-1);
  margin: 0;
}
.vg-review p {
  font-size: .88rem;
  color: var(--wf-text-2);
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.vg-review__source {
  font-size: .7rem;
  color: var(--wf-text-3);
  font-style: normal;
  padding-top: .5rem;
  border-top: 1px solid rgba(99,102,241,.1);
}

/* Culture seals */
.vg-culture-seals {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.vg-culture-seal {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .85rem;
  border-radius: 999px;
  background: rgba(99,102,241,.07);
  border: 1px solid rgba(99,102,241,.18);
  font-size: .8rem;
  color: var(--vg-accent-light);
}
.vg-culture-seal i { font-size: .9rem; }

/* ══════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════ */
.vg-cta {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 4rem 3rem;
  border: 1px solid rgba(99,102,241,.2);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(167,139,250,.05));
  text-align: center;
}
.vg-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.vg-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
}
.vg-cta__orb--1 { width: 320px; height: 320px; background: #6366f1; top: -80px; left: -60px; }
.vg-cta__orb--2 { width: 280px; height: 280px; background: #a78bfa; bottom: -60px; right: -40px; }

.vg-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.vg-cta__content h3 {
  font-family: var(--wf-font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--wf-text-1);
  margin: 0;
}
.vg-cta__content p {
  color: var(--wf-text-2);
  max-width: 520px;
  font-size: .98rem;
  line-height: 1.7;
}
.vg-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .vg-benefits { grid-template-columns: repeat(2, 1fr); }
  .vg-reviews  { grid-template-columns: 1fr; }
  .vg-jobs     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .vg-hero { min-height: auto; padding: 7rem 0 3rem; }
  .vg-hero__title { font-size: 2rem; }
  .vg-hero__ctas  { flex-direction: column; }
  .vg-benefits    { grid-template-columns: 1fr; }
  .vg-jobs        { grid-template-columns: 1fr; }
  .vg-cta         { padding: 2.5rem 1.5rem; }
  .vg-cta__actions { flex-direction: column; align-items: center; }
}
