/* ============================================================
   MOZCONTRATA · Landing page
   ============================================================ */

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(16, 24, 32, 0.03);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__links a {
  padding: 0.5rem 0.85rem;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: var(--fs-md);
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover { color: var(--brand-600); background: var(--brand-50); }
.nav__actions { display: flex; align-items: center; gap: 0.6rem; }
.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav__burger { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); color: var(--ink); }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: var(--surface);
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 0.8rem 1rem; }
  .nav__actions .btn--primary { display: none; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--space-12));
  padding-bottom: var(--space-12);
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--brand-100) 0%, transparent 55%),
    radial-gradient(40rem 26rem at -10% 110%, var(--brand-50) 0%, transparent 50%),
    var(--surface);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-8);
  align-items: center;
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.hero h1 .accent-word {
  color: var(--brand-500);
}
.hero__sub {
  margin-top: var(--space-4);
  font-size: var(--fs-xl);
  color: var(--slate);
  max-width: 34rem;
}
.hero__cta { margin-top: var(--space-6); display: flex; gap: 0.75rem; flex-wrap: wrap; }
.hero__proof {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--slate);
}
.hero__proof .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15); }

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--nav-h) + var(--space-8)); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero__media { order: -1; }
  .hero__cta .btn { flex: 1 1 auto; }
}

/* Composição visual do hero (abstrata) */
.hero__media { position: relative; }
.hero-canvas {
  position: relative;
  aspect-ratio: 1 / 0.92;
  display: grid;
  place-items: center;
}
.hc-orbit {
  position: absolute;
  inset: 4%;
  border: 1px dashed var(--brand-200);
  border-radius: 50%;
}
.hc-hub {
  position: absolute;
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--brand-300), var(--brand-500) 68%);
  box-shadow: 0 10px 30px rgba(10, 86, 230, 0.35);
  display: grid;
  place-items: center;
}
.hc-hub svg { width: 3.6rem; height: 3.6rem; color: #fff; }
.hc-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  animation: float 7s ease-in-out infinite;
}
.hc-card .ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.hc-card .ico svg { width: 18px; height: 18px; }
.hc-card small { display: block; font-weight: 500; color: var(--slate); font-size: var(--fs-xs); }
.hc-card--1 { top: 6%; left: 2%; animation-delay: 0s; }
.hc-card--2 { top: 30%; right: -2%; animation-delay: 1.4s; }
.hc-card--3 { bottom: 10%; left: -2%; animation-delay: 2.6s; }
.hc-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  animation: float 8s ease-in-out infinite;
}
.hc-chip--ok { bottom: 2%; right: 6%; background: var(--ok); animation-delay: 2s; }
.hc-chip--accent { top: 2%; right: 12%; background: var(--accent-500); animation-delay: 0.8s; }
.hc-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Como funciona ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.step-card {
  padding: var(--space-5);
  position: relative;
}
.step-card .num {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--brand-100);
  line-height: 1;
}
.step-card .ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  color: var(--brand-600);
  display: grid;
  place-items: center;
  margin: var(--space-4) 0 var(--space-3);
}
.step-card .ico svg { width: 22px; height: 22px; }
.step-card h3 { font-size: var(--fs-lg); }
.step-card p { margin-top: 0.35rem; color: var(--slate); font-size: var(--fs-sm); }
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Para candidatos / empresas ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.split--flip .split__media { order: 2; }
.split__panel h2 { font-size: var(--fs-3xl); letter-spacing: -0.03em; }
.split__panel > p { margin-top: var(--space-3); font-size: var(--fs-lg); color: var(--slate); }
.split__cta { margin-top: var(--space-5); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--space-6); }
  .split--flip .split__media { order: 0; }
}

.benefit-list { margin-top: var(--space-5); display: grid; gap: 0.6rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-weight: 500; color: var(--ink-soft); font-size: var(--fs-md); }
.benefit-list .ic {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand-600);
  display: grid; place-items: center; flex: none; margin-top: 0.15rem;
}
.benefit-list .ic svg { width: 13px; height: 13px; }

.split__media .feature-card {
  padding: var(--space-5);
}
.feature-card .fc-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: var(--space-4); }
.feature-card .fc-head .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--brand-500); color: #fff; display: grid; place-items: center; flex: none;
}
.feature-card .fc-head .ic svg { width: 20px; height: 20px; }
.feature-card .fc-head h3 { font-size: var(--fs-base); }
.feature-card .fc-head span { font-size: var(--fs-xs); color: var(--slate); font-weight: 500; }
.feature-card .fc-mini {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: var(--space-3);
}
.fc-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: var(--fs-sm); }
.fc-row:last-child { border-bottom: none; }
.fc-row .fcr-ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-2); color: var(--brand-600); flex: none; }
.fc-row .fcr-ico svg { width: 16px; height: 16px; }
.fc-row b { font-size: var(--fs-sm); display: block; }
.fc-row small { color: var(--slate); }

/* ---------- Estatísticas ---------- */
.stats-band { background: var(--brand-900); border-radius: var(--radius-xl); padding: var(--space-10) var(--space-6); }
.stats-band h2 { color: #fff; text-align: center; }
.stats-band .sub { color: #b7c6e2; text-align: center; margin-top: var(--space-2); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.stat-tile { text-align: center; padding: var(--space-5); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); }
.stat-tile .num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; line-height: 1.1; }
.stat-tile .lbl { color: #b7c6e2; font-size: var(--fs-sm); margin-top: 0.3rem; }
@media (max-width: 800px) {
  .stats-band { padding: var(--space-8) var(--space-5); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- CTA final ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(46rem 26rem at 15% 120%, rgba(10, 86, 230, 0.35), transparent 55%),
    radial-gradient(40rem 22rem at 95% -10%, rgba(255, 80, 0, 0.22), transparent 55%),
    linear-gradient(120deg, var(--brand-700), var(--brand-500) 58%, var(--brand-600));
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: var(--fs-3xl); max-width: 42rem; margin-inline: auto; }
.cta-band p { color: #dbe8ff; margin-top: var(--space-3); }
.cta-band .cta-btns { margin-top: var(--space-6); display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-band .cta-brand { position: absolute; right: -3rem; bottom: -3rem; opacity: 0.12; }
@media (max-width: 640px) {
  .cta-band { padding: var(--space-8) var(--space-5); }
}

/* ---------- Footer ---------- */
.footer { background: var(--brand-950); color: #aebada; padding-top: var(--space-10); padding-bottom: var(--space-6); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer h4 { color: #fff; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-3); }
.footer a { color: #aebada; font-size: var(--fs-sm); }
.footer a:hover { color: #fff; }
.footer__cols li { margin-bottom: 0.55rem; }
.footer .brand-logo { margin-bottom: var(--space-3); }
.footer__tag { margin-bottom: var(--space-4); font-size: var(--fs-sm); }
.socials { display: flex; gap: 0.5rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid; place-items: center; color: #cfd9ea;
  transition: all var(--transition);
}
.socials a:hover { background: var(--brand-500); border-color: var(--brand-500); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--fs-sm);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}