:root {
  --vp-teal: #58bfc7;
  --vp-teal-dark: #2f9ea8;
  --vp-teal-soft: #e9f8f9;
  --vp-navy: #12336b;
  --vp-navy-dark: #081f3d;
  --vp-text: #173257;
  --vp-body: #5c6f84;
  --vp-muted: #8293a6;
  --vp-bg: #f3f7fa;
  --vp-line: #dce6ec;
  --vp-white: #fff;
  --vp-success: #1d8c69;
  --vp-danger: #b63c48;
  --vp-shadow: 0 18px 46px rgba(18, 51, 107, .09);
  --vp-shadow-soft: 0 10px 28px rgba(18, 51, 107, .06);
  --vp-radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.vagas-publicas-body {
  margin: 0;
  color: var(--vp-text);
  background: var(--vp-bg);
  font-family: "Exo", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.vagas-publicas-body a { color: inherit; text-decoration: none; }
body.vagas-publicas-body button,
body.vagas-publicas-body input,
body.vagas-publicas-body select { font: inherit; }
body.vagas-publicas-body svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.vp-wrap { width: min(1180px, calc(100% - 42px)); margin: 0 auto; }

/* Header */
.vp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--vp-line);
  backdrop-filter: blur(14px);
}
.vp-header-in {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.vp-logo img { display: block; width: 152px; height: auto; }
.vp-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 800; }
.vp-nav a { position: relative; padding: 28px 0 25px; }
.vp-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--vp-teal);
  transform: scaleX(0);
  transition: .2s ease;
}
.vp-nav a:hover,
.vp-nav a.is-active { color: var(--vp-teal-dark); }
.vp-nav a:hover:after,
.vp-nav a.is-active:after { transform: scaleX(1); }
.vp-actions { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.vp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: .2s ease;
  white-space: nowrap;
}
.vp-btn:hover { transform: translateY(-1px); }
.vp-btn-primary {
  color: #fff;
  background: var(--vp-teal);
  box-shadow: 0 10px 24px rgba(88,191,199,.22);
}
.vp-btn-primary:hover { background: var(--vp-teal-dark); }
.vp-btn-secondary { color: var(--vp-text); background: #fff; border-color: var(--vp-line); }
.vp-btn-secondary:hover { color: var(--vp-teal-dark); border-color: var(--vp-teal); }
.vp-btn-light { color: var(--vp-navy); background: #fff; }
.vp-btn-block { width: 100%; }
.vp-btn-large { min-height: 52px; padding: 0 28px; }

/* Search hero */
.vp-search-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(124deg, var(--vp-navy-dark), var(--vp-navy));
}
.vp-search-hero-bg {
  position: absolute;
  inset: 0;
  opacity: .95;
  background:
    radial-gradient(circle at 82% 18%, rgba(88,191,199,.34), transparent 25%),
    radial-gradient(circle at 92% 100%, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
}
.vp-search-hero-in { position: relative; z-index: 1; padding: 66px 0 48px; }
.vp-hero-copy { max-width: 810px; }
.vp-eyebrow {
  margin: 0 0 13px;
  color: var(--vp-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.vp-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.vp-hero-copy > p:last-child {
  margin: 20px 0 0;
  max-width: 690px;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  line-height: 1.72;
}
.vp-search-box {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(230px, .85fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 31px;
  padding: 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 26px 60px rgba(4,20,42,.28);
}
.vp-search-control {
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--vp-muted);
  border-right: 1px solid var(--vp-line);
}
.vp-search-control svg { flex: 0 0 auto; }
.vp-search-control input,
.vp-search-control select {
  min-width: 0;
  width: 100%;
  height: 50px;
  border: 0;
  outline: 0;
  color: var(--vp-text);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
}
.vp-search-control input::placeholder { color: #91a0af; }
.vp-search-control select { cursor: pointer; }
.vp-search-submit { min-height: 54px; padding: 0 29px; }
.vp-hero-note {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.vp-hero-note strong { color: #fff; font-size: 21px; }

/* Main portal */
.vp-main { padding: 42px 0 78px; }
.vp-portal-layout {
  display: grid;
  grid-template-columns: 272px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}
.vp-mobile-filter-bar { display: none; }
.vp-filter-sidebar {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: var(--vp-radius);
  box-shadow: var(--vp-shadow-soft);
  overflow: hidden;
}
.vp-filter-sidebar form { padding: 22px; }
.vp-filter-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 21px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--vp-line);
}
.vp-filter-head span {
  display: block;
  color: var(--vp-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.vp-filter-head strong { display: block; margin-top: 3px; font-size: 20px; }
.vp-filter-head a { color: var(--vp-teal-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.vp-filter-field { display: grid; gap: 7px; margin-bottom: 16px; }
.vp-filter-field > span {
  color: var(--vp-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.vp-filter-field select {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border: 1px solid var(--vp-line);
  border-radius: 10px;
  outline: 0;
  color: var(--vp-text);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}
.vp-filter-field select:focus { border-color: var(--vp-teal); box-shadow: 0 0 0 3px rgba(88,191,199,.12); }
.vp-check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--vp-body);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.vp-check-field input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--vp-teal); }

.vp-results-toolbar {
  min-height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}
.vp-results-toolbar.is-minimal { justify-content: flex-end; }
.vp-results-context { display: grid; gap: 5px; }
.vp-results-context p { margin: 0; color: var(--vp-body); font-size: 13px; }
.vp-sort-form label { display: grid; gap: 6px; }
.vp-sort-form span { color: var(--vp-muted); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.vp-sort-form select {
  min-width: 190px;
  height: 42px;
  padding: 0 12px;
  color: var(--vp-text);
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  font-weight: 700;
}

/* Cards */
.vp-jobs { display: grid; gap: 14px; }
.vp-job-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: 17px;
  box-shadow: var(--vp-shadow-soft);
  transition: .22s ease;
}
.vp-job-card:hover {
  border-color: #b7dfe2;
  box-shadow: var(--vp-shadow);
  transform: translateY(-2px);
}
.vp-job-card-link { position: absolute; inset: 0; z-index: 1; }
.vp-job-main { position: relative; padding: 23px 24px 20px; }
.vp-job-topline { display: block; }
.vp-job-heading { min-width: 0; }
.vp-job-labels { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin-bottom: 7px; }
.vp-status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  color: #147c85;
  background: var(--vp-teal-soft);
  border: 1px solid #c3e8ea;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vp-status-badge.is-pcd { color: #9f3943; background: #fff1f3; border-color: #f1cbd0; }
.vp-job-area { color: var(--vp-muted); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.vp-job-area.is-light { color: rgba(255,255,255,.68); }
.vp-job-heading h3 {
  margin: 0;
  color: var(--vp-text);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.vp-company-name { margin: 5px 0 0; color: var(--vp-body); font-size: 13px; font-weight: 700; }
.vp-job-information {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: var(--vp-body);
  font-size: 12px;
  font-weight: 600;
}
.vp-job-information span { display: inline-flex; align-items: center; gap: 7px; }
.vp-job-information svg { width: 16px; height: 16px; color: var(--vp-teal-dark); }
.vp-job-summary { margin: 17px 0 0; color: var(--vp-body); font-size: 13px; line-height: 1.68; }
.vp-job-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
  padding-top: 16px;
  border-top: 1px solid #edf2f5;
}
.vp-job-financial { display: grid; gap: 4px; }
.vp-job-financial strong { color: var(--vp-navy); font-size: 14px; }
.vp-job-financial span { color: var(--vp-muted); font-size: 11px; }
.vp-job-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.vp-job-cta small { color: var(--vp-muted); font-size: 10px; font-weight: 700; }
.vp-job-cta .vp-btn { position: relative; z-index: 2; min-height: 40px; padding: 0 18px; }

/* Empty and CTA */
.vp-empty {
  padding: 62px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: var(--vp-radius);
  box-shadow: var(--vp-shadow-soft);
}
.vp-empty-page { max-width: 720px; margin: 35px auto; }
.vp-empty-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--vp-teal-dark);
  background: var(--vp-teal-soft);
  border-radius: 50%;
}
.vp-empty-icon svg { width: 28px; height: 28px; }
.vp-empty h1,
.vp-empty h3 { margin: 0 0 8px; font-size: 27px; }
.vp-empty p { margin: 0 auto 22px; max-width: 520px; color: var(--vp-body); line-height: 1.65; }
.vp-empty-actions { display: flex; justify-content: center; gap: 9px; flex-wrap: wrap; }
.vp-talent-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 32px 34px;
  color: #fff;
  background: linear-gradient(125deg, var(--vp-navy-dark), var(--vp-navy));
  border-radius: 20px;
  box-shadow: var(--vp-shadow);
}
.vp-talent-cta span { color: var(--vp-teal); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.vp-talent-cta h2 { margin: 5px 0 7px; font-size: 24px; letter-spacing: -.03em; }
.vp-talent-cta p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.6; }
.vp-talent-button {
  min-width: 190px;
  color: #fff;
  background: var(--vp-teal);
  border-color: var(--vp-teal);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.vp-talent-button:hover { color: #fff; background: var(--vp-teal-dark); border-color: var(--vp-teal-dark); }

/* Detail page */
.vp-job-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(88,191,199,.31), transparent 27%),
    linear-gradient(128deg, var(--vp-navy-dark), var(--vp-navy));
}
.vp-job-hero .vp-wrap { padding-top: 30px; padding-bottom: 44px; }
.vp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 29px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.vp-breadcrumb a:hover { color: var(--vp-teal); }
.vp-job-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 40px;
  align-items: end;
}
.vp-job-hero h1 {
  margin: 0;
  max-width: 810px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.vp-job-hero-subtitle { margin: 14px 0 0; max-width: 760px; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.65; }
.vp-job-hero-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; }
.vp-job-hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.vp-job-hero-meta svg { width: 17px; height: 17px; color: var(--vp-teal); }
.vp-job-hero-action { min-width: 210px; display: grid; gap: 11px; }
.vp-share-button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.vp-share-button svg { width: 16px; height: 16px; }
.vp-detail-main { padding: 34px 0 82px; }
.vp-detail-grid { display: grid; grid-template-columns: minmax(0,1fr) 332px; gap: 27px; align-items: start; }
.vp-detail-content { min-width: 0; }
.vp-overview-card {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: 16px;
  box-shadow: var(--vp-shadow-soft);
  overflow: hidden;
}
.vp-overview-item { min-width: 0; padding: 18px; border-right: 1px solid var(--vp-line); }
.vp-overview-item:last-child { border-right: 0; }
.vp-overview-item span { display: block; color: var(--vp-muted); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.vp-overview-item strong { display: block; margin-top: 5px; color: var(--vp-text); font-size: 13px; line-height: 1.4; }
.vp-content-card,
.vp-company-card,
.vp-application-card {
  background: #fff;
  border: 1px solid var(--vp-line);
  border-radius: 18px;
  box-shadow: var(--vp-shadow-soft);
}
.vp-content-card { padding: 31px 33px; }
.vp-content-section + .vp-content-section { margin-top: 31px; padding-top: 29px; border-top: 1px solid var(--vp-line); }
.vp-content-section h2 { margin: 0 0 14px; font-size: 22px; letter-spacing: -.025em; }
.vp-rich-text { color: var(--vp-body); line-height: 1.82; font-size: 14px; }
.vp-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.vp-list li { position: relative; padding-left: 24px; color: var(--vp-body); line-height: 1.68; font-size: 14px; }
.vp-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--vp-teal-dark);
  font-weight: 900;
}
.vp-benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.vp-benefit-item { display: flex; gap: 10px; padding: 14px; border-radius: 11px; background: #f7fafc; border: 1px solid #e6edf1; }
.vp-benefit-item > span { color: var(--vp-teal-dark); font-weight: 900; }
.vp-benefit-item strong { display: block; font-size: 13px; }
.vp-benefit-item small { display: block; margin-top: 3px; color: var(--vp-body); line-height: 1.45; }
.vp-company-card { display: block; margin-top: 18px; padding: 23px; }
.vp-company-card span { color: var(--vp-teal-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.vp-company-card h2 { margin: 4px 0 6px; font-size: 20px; }
.vp-company-card p { margin: 0; color: var(--vp-body); font-size: 13px; line-height: 1.65; }
.vp-application-card { position: sticky; top: 96px; overflow: hidden; }
.vp-application-card-head { padding: 24px; color: #fff; background: var(--vp-navy); }
.vp-application-card-head > span { color: var(--vp-teal); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.vp-application-card-head h2 { margin: 7px 0 8px; font-size: 20px; line-height: 1.35; }
.vp-application-card-head p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.55; }
.vp-application-card-body { padding: 22px; }
.vp-facts { display: grid; gap: 14px; margin-bottom: 21px; }
.vp-fact { display: grid; gap: 4px; padding-bottom: 13px; border-bottom: 1px solid #edf2f5; }
.vp-fact:last-child { padding-bottom: 0; border-bottom: 0; }
.vp-fact span { color: var(--vp-muted); font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.vp-fact strong { color: var(--vp-text); font-size: 13px; line-height: 1.45; }
.vp-side-note { margin: 12px 0 0; color: var(--vp-muted); font-size: 10px; line-height: 1.55; text-align: center; }
.vp-mobile-apply { display: none; }

/* Footer */
.vp-footer { color: var(--vp-body); background: #fff; border-top: 1px solid var(--vp-line); }
.vp-footer-in {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1.2fr .7fr auto;
  align-items: center;
  gap: 35px;
}
.vp-footer img { width: 134px; }
.vp-footer p { margin: 9px 0 0; max-width: 430px; color: var(--vp-muted); font-size: 11px; line-height: 1.6; }
.vp-footer-in > div:nth-child(2) { display: grid; gap: 8px; font-size: 12px; font-weight: 700; }
.vp-footer-in > div:nth-child(2) a:hover { color: var(--vp-teal-dark); }
.vp-footer-in > span { color: var(--vp-muted); font-size: 10px; text-align: right; }

/* Application form integration */
.vaga-selecionada-card {
  margin: 0 0 26px;
  padding: 18px 20px;
  border: 1px solid #b9e2e5;
  border-radius: 14px;
  background: #edf9fa;
}
.vaga-selecionada-card small { display: block; margin-bottom: 5px; color: #328f98; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.vaga-selecionada-card strong { display: block; color: var(--vp-text); font-size: 18px; line-height: 1.35; }
.vaga-selecionada-card span { display: block; margin-top: 5px; color: var(--vp-body); font-size: 13px; }
.vaga-selecionada-card a { display: inline-block; margin-top: 11px; color: var(--vp-teal-dark); font-size: 12px; font-weight: 800; }
.vaga-escolha-inicial { display: grid; gap: 12px; margin-top: 24px; padding: 18px; border: 1px solid #dce8ed; border-radius: 14px; background: #f8fbfc; }
.vaga-escolha-inicial p { margin: 0; color: #5b6f84; line-height: 1.6; }
.vaga-escolha-acoes { display: flex; flex-wrap: wrap; gap: 10px; }
.vaga-link-form { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px; border-radius: 999px; background: #58bfc7; color: #fff !important; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.vaga-link-form.is-secondary { color: #183357 !important; background: #fff; border: 1px solid #d9e7ee; }
.vaga-perguntas-box { margin: 28px 0 0; padding: 22px; border: 1px solid #d9e7ee; border-radius: 15px; background: #f8fbfc; }
.vaga-perguntas-box h4 { margin: 0 0 6px; color: #183357; font-size: 19px; }
.vaga-perguntas-box > p { margin: 0 0 20px; color: #6b7d90; line-height: 1.6; }
.vaga-pergunta-item + .vaga-pergunta-item { margin-top: 18px; }
.vaga-pergunta-item label { display: block; margin-bottom: 7px; font-weight: 600; }
.vaga-pergunta-item input,
.vaga-pergunta-item select { width: 100%; min-height: 50px; border: 1px solid #d7e2e8; border-radius: 8px; background: #fff; padding: 10px 14px; }

@media (max-width: 1020px) {
  .vp-search-box { grid-template-columns: 1fr 1fr; border-radius: 24px; }
  .vp-search-submit { grid-column: 1 / -1; }
  .vp-search-control:nth-child(2) { border-right: 0; }
  .vp-portal-layout { grid-template-columns: 238px minmax(0,1fr); gap: 20px; }
  .vp-overview-card { grid-template-columns: repeat(3, 1fr); }
  .vp-overview-item:nth-child(3) { border-right: 0; }
  .vp-overview-item:nth-child(n+4) { border-top: 1px solid var(--vp-line); }
}

@media (max-width: 860px) {
  .vp-nav { display: none; }
  .vp-mobile-filter-bar { display: block; margin-bottom: 14px; }
  .vp-filter-toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: var(--vp-text);
    background: #fff;
    border: 1px solid var(--vp-line);
    border-radius: 999px;
    font-weight: 800;
  }
  .vp-filter-toggle svg { width: 18px; height: 18px; }
  .vp-portal-layout { grid-template-columns: 1fr; }
  .vp-filter-sidebar { display: none; position: static; }
  .vp-filter-sidebar.is-open { display: block; }
  .vp-detail-grid { grid-template-columns: 1fr; }
  .vp-application-card { position: static; }
  .vp-job-hero-grid { grid-template-columns: 1fr; }
  .vp-job-hero-action { width: 100%; min-width: 0; grid-template-columns: 1fr 1fr; }
  .vp-footer-in { grid-template-columns: 1fr 1fr; padding: 28px 0; }
  .vp-footer-in > span { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 680px) {
  .vp-wrap { width: min(100% - 28px, 1180px); }
  .vp-header-in { min-height: 66px; }
  .vp-logo img { width: 126px; }
  .vp-actions .vp-btn { min-height: 40px; padding: 0 14px; font-size: 10px; }
  .vp-search-hero-in { padding: 48px 0 38px; }
  .vp-hero-copy h1 { font-size: 35px; }
  .vp-hero-copy > p:last-child { font-size: 14px; }
  .vp-search-box { grid-template-columns: 1fr; padding: 7px; border-radius: 22px; }
  .vp-search-control { min-height: 48px; border-right: 0; border-bottom: 1px solid var(--vp-line); }
  .vp-search-control input,
  .vp-search-control select { height: 46px; }
  .vp-search-submit { grid-column: auto; min-height: 50px; }
  .vp-main { padding: 28px 0 60px; }
  .vp-results-toolbar { align-items: stretch; flex-direction: column; min-height: 0; }
  .vp-results-toolbar.is-minimal { align-items: stretch; }
  .vp-sort-form select { width: 100%; }
  .vp-job-main { padding: 20px 18px 17px; }
  .vp-job-heading h3 { font-size: 18px; }
  .vp-job-information { display: grid; gap: 9px; }
  .vp-job-bottom { align-items: stretch; flex-direction: column; }
  .vp-job-cta { align-items: stretch; justify-content: space-between; }
  .vp-job-cta .vp-btn { flex: 1; }
  .vp-talent-cta { align-items: stretch; flex-direction: column; padding: 26px 22px; }
  .vp-talent-button { width: 100%; min-width: 0; }
  .vp-job-hero .vp-wrap { padding-top: 22px; padding-bottom: 34px; }
  .vp-job-hero h1 { font-size: 34px; }
  .vp-job-hero-action { grid-template-columns: 1fr; }
  .vp-overview-card { grid-template-columns: 1fr 1fr; }
  .vp-overview-item { border-top: 1px solid var(--vp-line); }
  .vp-overview-item:nth-child(-n+2) { border-top: 0; }
  .vp-overview-item:nth-child(2n) { border-right: 0; }
  .vp-overview-item:nth-child(3) { border-right: 1px solid var(--vp-line); }
  .vp-content-card { padding: 24px 20px; }
  .vp-benefit-grid { grid-template-columns: 1fr; }
  .vp-company-card { padding: 20px; }
  .vp-mobile-apply {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,.97);
    border-top: 1px solid var(--vp-line);
    box-shadow: 0 -12px 30px rgba(18,51,107,.1);
    backdrop-filter: blur(12px);
  }
  .vp-mobile-apply div { min-width: 0; }
  .vp-mobile-apply small { display: block; color: var(--vp-muted); font-size: 9px; }
  .vp-mobile-apply strong { display: block; margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
  .vp-mobile-apply .vp-btn { min-height: 42px; padding: 0 15px; font-size: 10px; }
  .vp-footer { padding-bottom: 70px; }
  .vp-footer-in { grid-template-columns: 1fr; gap: 20px; }
  .vp-footer-in > span { grid-column: auto; }
  .vp-empty-actions { display: grid; }
  .vp-empty-actions .vp-btn { width: 100%; }
  .vaga-escolha-acoes { display: grid; }
}


/* Rodapé público unificado */
.vagas-publicas-body .vp-footer,
.vagas-publicas-body .vp-footer * {
  box-sizing: border-box;
}
.vagas-publicas-body .vp-footer::before,
.vagas-publicas-body .vp-footer::after,
.vagas-publicas-body .vp-footer *::before,
.vagas-publicas-body .vp-footer *::after {
  content: none !important;
  display: none !important;
}
.vp-footer {
  padding: 0;
  color: var(--vp-body);
  background: #fff;
  border-top: 1px solid var(--vp-line);
}
.vp-footer-in {
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(340px, 1.45fr) minmax(170px, .65fr) minmax(270px, auto);
  align-items: center;
  gap: 40px;
  padding: 28px 0;
}
.vp-footer-brand {
  min-width: 0;
  display: block;
}
.vp-footer-logo {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 0 12px;
}
.vp-footer-brand p {
  max-width: 470px;
  margin: 0;
  color: var(--vp-muted);
  font-size: 11px;
  line-height: 1.6;
}
.vp-footer-links {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.vp-footer-links a:hover {
  color: var(--vp-teal-dark);
}
.vp-footer-copy {
  justify-self: end;
  margin: 0;
  color: var(--vp-muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .vp-footer-in {
    grid-template-columns: 1fr 1fr;
    gap: 24px 34px;
    padding: 26px 0;
  }
  .vp-footer-copy {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .vp-footer {
    padding-bottom: 0;
  }
  .vp-footer-in {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0;
  }
  .vp-footer-logo {
    width: 64px;
    margin-bottom: 10px;
  }
  .vp-footer-copy {
    grid-column: auto;
  }
}

/* Neutraliza regras legadas de style.css carregadas no formulário de currículo */
.vagas-publicas-body .vp-footer p,
.vagas-publicas-body .vp-footer-brand p,
.vagas-publicas-body .vp-footer-copy {
  float: none !important;
  padding: 0 !important;
}
.vagas-publicas-body .vp-footer-brand p {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
}
.vagas-publicas-body .vp-footer-copy {
  display: block !important;
  margin: 0 !important;
}
