/* ============================================================
   SEOSP Vagas — Landing Page CSS
   Cores: azul escuro, azul claro, verde, branco
   ============================================================ */

:root {
  --bg:           #060B16;
  --bg-2:         #0D1526;
  --bg-3:         #152035;
  --bg-card:      rgba(255,255,255,0.04);
  --bg-card-h:    rgba(255,255,255,0.07);
  --blue:         #2563EB;
  --blue-light:   #3B82F6;
  --blue-bright:  #93C5FD;
  --blue-dark:    #1B2D4F;
  --green:        #10B981;
  --green-light:  #34D399;
  --white:        #FFFFFF;
  --text:         #E2E8F0;
  --text-muted:   #94A3B8;
  --border:       rgba(255,255,255,0.08);
  --border-blue:  rgba(37,99,235,0.3);
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-blue:  0 8px 32px rgba(37,99,235,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.25s ease;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-bright); }

/* ─── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { color: var(--text); line-height: 1.8; }

/* ─── Utilities ──────────────────────────────────────────────── */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.text-center  { text-align: center; }
.text-green   { color: var(--green); }
.text-blue    { color: var(--blue-light); }
.text-muted   { color: var(--text-muted); }
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(16,185,129,0.4);
}
.btn-primary:hover {
  background: var(--green-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  background: rgba(37,99,235,0.08);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ─── Sticky CTA (mobile) ─────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: rgba(6,11,22,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 999;
}
.sticky-cta .btn { width: 100%; }
@media(max-width:768px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
}

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(6,11,22,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: white;
}
.navbar-cta { font-size: 0.9rem; padding: 10px 22px; }

/* ─── Hero Section ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(16,185,129,0.08) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.6;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: var(--green-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 { margin-bottom: 20px; max-width: 750px; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat .num span { color: var(--green); }

/* ─── Urgência Banner ──────────────────────────────────────── */
.urgencia-bar {
  background: var(--bg-2);
  padding: 12px 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}
.urgencia-bar span { color: var(--green-light); }

/* ─── Section Header ─────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--blue-bright);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc  { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; }

/* ─── Sobre Section ──────────────────────────────────────────── */
.sobre { background: var(--bg-2); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: var(--border-blue);
  background: var(--bg-card-h);
}
.stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-light);
}
.stat-card .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.sobre-image-wrap {
  position: relative;
}
.sobre-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: 0;
}
.sobre-image {
  position: relative;
  z-index: 1;
  background: var(--bg-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  text-align: center;
}
.sobre-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.service-tag {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.25);
  color: var(--blue-bright);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ─── O Que Vai Fazer Section ────────────────────────────────── */
.atividades { background: var(--bg); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.activity-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  cursor: default;
}
.activity-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.activity-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.activity-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.activity-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Requisitos Section ─────────────────────────────────────── */
.requisitos { background: var(--bg-2); }
.nao-iniciante {
  background: linear-gradient(135deg, rgba(239,68,68,0.15), rgba(239,68,68,0.05));
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.nao-iniciante .icon { font-size: 2.5rem; }
.nao-iniciante h3 {
  color: #FCA5A5;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.nao-iniciante p {
  color: #94A3B8;
  font-size: 0.9rem;
  margin: 0;
}
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.req-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.req-item:hover {
  border-color: var(--border-blue);
  background: var(--bg-card-h);
}
.req-check {
  width: 24px;
  height: 24px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 2px;
}
.req-item span { font-size: 0.92rem; color: var(--text); }

/* ─── Diferenciais Section ───────────────────────────────────── */
.diferenciais { background: var(--bg); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.diff-card:hover {
  border-left-color: var(--green);
  background: var(--bg-card-h);
  transform: translateX(4px);
}
.diff-card .icon { font-size: 1.5rem; }
.diff-card span { font-size: 0.92rem; font-weight: 500; }

/* ─── Oportunidade Section ───────────────────────────────────── */
.oportunidade { background: var(--bg-2); }
.oport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.oport-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.oport-card:hover {
  border-color: var(--border-blue);
  background: var(--bg-card-h);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.oport-card .oport-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.oport-card .oport-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.oport-card .oport-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.oport-card.highlight {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05));
  border-color: rgba(16,185,129,0.35);
}
.oport-card.highlight .oport-value { color: var(--green-light); font-size: 1.6rem; }
.oport-crescimento {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(16,185,129,0.06));
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.oport-crescimento p { color: var(--text); font-size: 1.05rem; margin: 0; }

/* ─── Formulário Multi-Etapas ────────────────────────────────── */
.form-section { background: var(--bg); }
.form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

/* Progress */
.form-progress {
  background: var(--bg-3);
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
}
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 16px;
}
.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.step-dot.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.2);
}
.step-dot.done {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background 0.3s ease;
  min-width: 20px;
}
.step-line.done { background: var(--green); }
.progress-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 2px;
  transition: width 0.4s ease;
}
.step-label {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
}
.step-label strong { color: var(--blue-bright); }

/* Form steps */
.form-step { display: none; padding: 32px; }
.form-step.active { display: block; }

/* Form fields */
.field-group { margin-bottom: 20px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
label .req { color: var(--green); margin-left: 2px; }
.form-control {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--blue-light);
  background: rgba(37,99,235,0.06);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-control.error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.form-control.success { border-color: var(--green); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
select.form-control option { background: var(--bg-3); }
textarea.form-control { resize: vertical; min-height: 100px; }
.field-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; }
.field-error { font-size: 0.78rem; color: #FCA5A5; margin-top: 4px; display: none; }
.field-error.show { display: block; }

/* Checkbox custom */
.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition);
}
.check-item:hover { border-color: var(--border-blue); }
.check-item input[type=checkbox] { display: none; }
.check-box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 11px;
}
.check-item input[type=checkbox]:checked ~ .check-box {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.check-item input[type=checkbox]:checked ~ .check-text { color: var(--white); }
.check-text { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }

/* Radio options */
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.radio-card:hover { border-color: var(--border-blue); }
.radio-card input[type=radio] { display: none; }
.radio-circle {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.radio-card input[type=radio]:checked ~ .radio-circle {
  border-color: var(--blue);
}
.radio-card input[type=radio]:checked ~ .radio-circle::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.radio-card input[type=radio]:checked ~ .radio-label { color: var(--white); }
.radio-label { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }

/* Upload area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.upload-area:hover, .upload-area.dragover {
  border-color: var(--blue-light);
  background: rgba(37,99,235,0.06);
}
.upload-area input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.upload-area h4 { font-size: 1rem; margin-bottom: 6px; }
.upload-area p  { font-size: 0.82rem; color: var(--text-muted); }
.upload-preview {
  display: none;
  margin-top: 12px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--green-light);
  text-align: left;
}
.upload-preview.show { display: flex; align-items: center; gap: 8px; }

/* LGPD */
.lgpd-box {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.lgpd-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 12px; }
.lgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.lgpd-check input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: var(--blue);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.lgpd-check span { font-size: 0.85rem; color: var(--text); }

/* Form navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.btn-next, .btn-prev, .btn-submit {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-next, .btn-submit {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-next:hover, .btn-submit:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
}
.btn-submit { background: var(--green); box-shadow: 0 4px 16px rgba(16,185,129,0.35); }
.btn-submit:hover { background: var(--green-light); box-shadow: 0 6px 24px rgba(16,185,129,0.45); }
.btn-prev {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-prev:hover { border-color: var(--blue-light); color: var(--blue-light); }
.step-counter { font-size: 0.82rem; color: var(--text-muted); }

/* Social proof counter */
.candidatos-counter {
  text-align: center;
  margin-bottom: 48px;
  padding: 20px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--radius);
}
.candidatos-counter .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
}
.candidatos-counter .txt { font-size: 0.9rem; color: var(--text-muted); margin-top: 4px; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.footer p { font-size: 0.88rem; color: var(--text-muted); }
.footer a { color: var(--blue-light); }

/* ─── Scroll Animations ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsividade ───────────────────────────────────────── */
@media(max-width:768px) {
  .section     { padding: 64px 0; }
  .sobre-grid  { grid-template-columns: 1fr; gap: 40px; }
  .req-grid    { grid-template-columns: 1fr; }
  .field-row   { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr; }
  .hero-stats  { gap: 24px; }
  .form-step   { padding: 24px 20px; }
  .form-nav    { padding: 16px 20px 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
}

@media(max-width:480px) {
  h1 { font-size: 2rem; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .progress-steps { gap: 4px; }
  .step-dot { width: 28px; height: 28px; font-size: 0.72rem; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
}

/* ─── Loading State ────────────────────────────────────────── */
.btn-submit.loading {
  opacity: 0.8;
  pointer-events: none;
}
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
