:root {
  --navy-950: #021a35;
  --navy-900: #062e5e;
  --navy-800: #0a3b74;
  --navy-700: #0e4c8f;
  --green-600: #00a65a;
  --green-500: #16be6d;
  --green-100: #dcf8ea;
  --ink: #112238;
  --muted: #5c6978;
  --line: #dce4ec;
  --soft: #f3f7fa;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(4, 39, 78, .08);
  --shadow-md: 0 20px 60px rgba(3, 31, 63, .14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy-950);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 84px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: var(--white); background: var(--navy-950); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-600);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #62efaa; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(2.55rem, 7vw, 5.2rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 3.55rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
p { color: var(--muted); }
.section-dark p, .coverage-section p, .proposal-section p { color: rgba(255,255,255,.76); }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--green-600), var(--green-500)); box-shadow: 0 14px 36px rgba(0,166,90,.28); }
.btn-primary:hover { box-shadow: 0 18px 42px rgba(0,166,90,.36); }
.btn-secondary { color: var(--white); background: var(--navy-900); }
.btn-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.btn-sm { min-height: 42px; padding: 10px 18px; font-size: .9rem; }
.btn-full { width: 100%; border: 0; }

 .site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 30px rgba(2,26,53,.08);
  backdrop-filter: blur(14px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.97); border-color: var(--line); box-shadow: 0 8px 30px rgba(2,26,53,.08); backdrop-filter: blur(14px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--navy-900); }
.brand img { width: 52px; height: 52px; object-fit: contain; flex: 0 0 auto; }
.brand span { display: grid; line-height: 1; }
.brand strong { color: var(--navy-900); font-size: 1.08rem; letter-spacing: .09em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .18em; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--ink); font-size: .93rem; font-weight: 700; }
.site-header.scrolled .main-nav { color: var(--ink); }
.main-nav > a:not(.btn) { position: relative; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green-500); transition: right .2s ease; }
.main-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: var(--soft); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }
.site-header.scrolled .menu-toggle { background: var(--soft); }
.site-header.scrolled .menu-toggle span { background: var(--navy-900); }

.hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 52px) 0 70px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 10%, rgba(0,166,90,.16), transparent 32%), linear-gradient(120deg, rgba(4,53,105,.4), transparent 56%); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .35; }
.hero-glow-one { width: 380px; height: 380px; right: -120px; top: 80px; background: #0f7bd5; }
.hero-glow-two { width: 270px; height: 270px; left: -100px; bottom: 10%; background: var(--green-600); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); gap: 64px; align-items: center; }
.hero-copy > p { max-width: 630px; margin-bottom: 30px; font-size: clamp(1.05rem, 2vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-points { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.84); font-size: .94rem; }
.check { display: inline-grid; width: 22px; height: 22px; place-items: center; margin-right: 8px; border-radius: 50%; color: var(--navy-950); background: var(--green-500); font-size: .77rem; font-weight: 900; }

.hero-gallery { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, 250px); gap: 16px; }
.hero-card { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.hero-card-main { grid-row: 1 / span 2; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.hero-card:hover img { transform: scale(1.04); }
.hero-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(2,26,53,.88)); }
.hero-card figcaption { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 18px; font-weight: 800; }

.stats { position: relative; z-index: 2; margin-top: -34px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-md); overflow: hidden; }
.stat { padding: 28px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--navy-900); font-size: clamp(1.7rem,3vw,2.45rem); line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .88rem; }

.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading p { max-width: 680px; font-size: 1.05rem; }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.solution-card { display: flex; min-height: 100%; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.solution-card:hover { transform: translateY(-7px); border-color: rgba(0,166,90,.38); box-shadow: var(--shadow-md); }
.solution-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft); }
.solution-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .55s ease; }
.solution-card:hover .solution-image img { transform: scale(1.04); }
.card-hospital .solution-image img { object-position: center 10%; }
.card-portaria .solution-image img { object-position: center 10%; }
.card-admin .solution-image img { object-position: center top; }
.solution-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.solution-body h3 span { display: block; margin-top: 5px; color: var(--green-600); font-size: .78em; }
.card-number { display: block; margin-bottom: 14px; color: var(--green-600); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.solution-body ul { display: grid; gap: 8px; margin: 4px 0 24px; padding-left: 19px; color: var(--muted); font-size: .92rem; }
.text-link { margin-top: auto; color: var(--navy-900); font-weight: 850; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.about-media { position: relative; min-height: 650px; }
.about-main { width: 82%; height: 650px; object-fit: cover; object-position: center top; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-float { position: absolute; right: 0; bottom: 42px; width: 46%; padding: 8px; border-radius: 22px; background: white; box-shadow: var(--shadow-md); }
.about-float img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 16px; }
.about-copy > p { font-size: 1.04rem; }
.feature-list { display: grid; gap: 14px; margin-top: 28px; }
.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-top: 1px solid var(--line); }
.feature-list span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--green-600); background: var(--green-100); font-size: .8rem; font-weight: 900; }
.feature-list p { margin: 7px 0 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.benefit:hover { transform: translateY(-4px); border-color: var(--green-500); background: linear-gradient(180deg,#fff,#f3fff8); }
.benefit-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 22px; border-radius: 14px; color: white; background: var(--navy-900); font-size: 1.15rem; }
.benefit p { margin-bottom: 0; }

.coverage-section { position: relative; overflow: hidden; color: white; background: linear-gradient(135deg,var(--navy-950),var(--navy-800)); }
.coverage-section::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; bottom: -260px; border-radius: 50%; background: rgba(0,166,90,.22); filter: blur(20px); }
.coverage-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.coverage-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.coverage-cards article { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.coverage-cards strong, .coverage-cards span { display: block; }
.coverage-cards strong { color: #65efad; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.coverage-cards span { margin: 5px 0 8px; font-size: 1.3rem; font-weight: 850; }
.coverage-cards p { margin: 0; font-size: .9rem; }
.coverage-visual { position: relative; display: grid; aspect-ratio: 1; max-width: 490px; place-items: center; margin-inline: auto; }
.coverage-visual img { position: relative; z-index: 2; filter: drop-shadow(0 24px 30px rgba(0,0,0,.24)); }
.coverage-logo { width: min(78%, 420px); height: auto; padding: 22px 24px; border-radius: 28px; background: rgba(255,255,255,.96); box-shadow: 0 24px 60px rgba(1,19,38,.28); }
.radar-ring { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: rotate 18s linear infinite; }
.ring-one { width: 42%; height: 42%; }
.ring-two { width: 68%; height: 68%; animation-direction: reverse; }
.ring-three { width: 94%; height: 94%; }
.pulse-dot { position: absolute; width: 13px; height: 13px; border: 3px solid rgba(255,255,255,.85); border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 8px rgba(22,190,109,.16); animation: pulse 2s ease-in-out infinite; }
.dot-one { top: 16%; right: 24%; }
.dot-two { bottom: 24%; left: 12%; animation-delay: .7s; }
.dot-three { right: 6%; bottom: 38%; animation-delay: 1.3s; }

.process-list { display: grid; grid-template-columns: repeat(4,1fr); margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.process-list li { position: relative; padding: 24px; border-top: 2px solid var(--line); }
.process-list li::before { content: ""; position: absolute; top: -7px; left: 24px; width: 12px; height: 12px; border: 3px solid white; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 1px var(--green-500); }
.process-list li span { display: block; margin-bottom: 36px; color: var(--green-600); font-size: .8rem; font-weight: 900; letter-spacing: .15em; }
.process-list li p { margin-bottom: 0; font-size: .92rem; }

.careers-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.careers-image img { width: 100%; max-height: 640px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.role-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 30px; }
.role-chips span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy-900); background: white; font-size: .84rem; font-weight: 750; }
.microcopy { margin: 14px 0 0; font-size: .83rem; }

.proposal-section { color: white; background: var(--navy-950); }
.proposal-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.contact-block { display: grid; gap: 9px; margin-top: 34px; color: rgba(255,255,255,.9); }
.contact-block a { width: fit-content; border-bottom: 1px solid rgba(255,255,255,.2); }
.proposal-form { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.07); box-shadow: var(--shadow-md); backdrop-filter: blur(10px); }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.proposal-form label { display: grid; gap: 8px; margin-bottom: 14px; color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 700; }
.proposal-form input, .proposal-form select, .proposal-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; outline: 0; color: white; background: rgba(2,26,53,.56); transition: border-color .2s ease, box-shadow .2s ease; }
.proposal-form input, .proposal-form select { min-height: 48px; padding: 0 13px; }
.proposal-form textarea { padding: 13px; resize: vertical; }
.proposal-form input:focus, .proposal-form select:focus, .proposal-form textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(22,190,109,.18); }
.proposal-form option { color: var(--ink); background: white; }
.proposal-form ::placeholder { color: rgba(255,255,255,.43); }
.consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.4; }
.consent input { width: 18px; min-height: 18px; margin-top: 1px; accent-color: var(--green-500); }
.consent a { text-decoration: underline; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #8df4bf !important; font-size: .86rem; }

.site-footer { padding: 58px 0 88px; color: rgba(255,255,255,.84); background: #011326; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1.35fr .9fr .8fr; gap: 38px; }
.footer-grid h2 { margin-bottom: 14px; color: white; font-size: 1rem; letter-spacing: 0; }
.footer-grid p, .footer-grid a { display: block; color: rgba(255,255,255,.62); font-size: .88rem; }
.footer-grid a { width: fit-content; margin-bottom: 9px; }
.footer-grid a:hover { color: white; }
.footer-brand img { width: 140px; height: auto; object-fit: contain; object-position: left center; }
.footer-logo { padding: 12px 14px; border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: 0 18px 32px rgba(0,0,0,.14); }
.footer-brand p { max-width: 250px; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.47); font-size: .8rem; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(.9); opacity: .7; } 50% { transform: scale(1.2); opacity: 1; } }

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: calc(var(--header-h) + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a { padding: 13px 12px; }
  .main-nav > a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 8px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 45px); }
  .hero-grid, .about-grid, .coverage-grid, .careers-grid, .proposal-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-gallery { grid-template-columns: repeat(3, minmax(260px, 78vw)); grid-template-rows: 390px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 0 12px; scrollbar-width: none; }
  .hero-gallery::-webkit-scrollbar { display: none; }
  .hero-card, .hero-card-main { grid-row: auto; scroll-snap-align: center; }
  .stats { margin-top: -12px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .stat:nth-child(4) { border-top: 1px solid var(--line); }
  .solution-grid, .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid, .careers-grid, .proposal-grid { gap: 42px; }
  .about-media { min-height: 560px; }
  .about-main { height: 560px; }
  .coverage-visual { max-width: 430px; }
  .process-list { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --radius-md: 20px; --radius-lg: 26px; }
  body { padding-bottom: 68px; }
  .section { padding: 66px 0; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding-bottom: 46px; }
  .hero-copy > p { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-gallery { grid-template-columns: repeat(3, minmax(280px, 88vw)); grid-template-rows: 370px; }
  .stats-grid { border-radius: 18px; }
  .stat { padding: 20px 12px; }
  .stat span { font-size: .76rem; }
  .section-heading { margin-bottom: 30px; }
  .solution-grid, .benefits-grid, .coverage-cards, .process-list, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .solution-body { padding: 22px; }
  .solution-image { aspect-ratio: 4 / 5; }
  .about-media { min-height: 480px; }
  .about-main { width: 88%; height: 480px; }
  .about-float { width: 48%; bottom: 24px; }
  .benefit { padding: 22px; }
  .coverage-visual { max-width: 330px; }
  .process-list li { min-height: auto; }
  .process-list li + li { margin-top: 10px; }
  .careers-image img { max-height: 520px; }
  .proposal-form { padding: 20px; }
  .footer-bottom { flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 950;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg,var(--green-600),var(--green-500));
    box-shadow: 0 15px 40px rgba(0,67,41,.35);
    font-weight: 850;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


.inner-page { background: var(--soft); }
.page-shell { padding: calc(var(--header-h) + 32px) 0 84px; }
.page-hero { padding: 26px 0 24px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--navy-900); font-size: .92rem; font-weight: 700; }
.back-link:hover { color: var(--green-600); }
.page-hero p { max-width: 760px; font-size: 1.02rem; }
.job-page-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.job-side-card, .job-form-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.job-side-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 22px; margin-bottom: 22px; }
.job-side-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.job-side-card li + li { margin-top: 8px; }
.job-form-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.job-form { display: grid; gap: 0; }
.job-form .form-row { margin-bottom: 0; }
.job-form label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--ink); font-size: .9rem; font-weight: 700; }
.job-form input, .job-form select, .job-form textarea { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; outline: 0; color: var(--ink); background: white; transition: border-color .2s ease, box-shadow .2s ease; }
.job-form textarea { min-height: 110px; padding: 14px; resize: vertical; }
.job-form input:focus, .job-form select:focus, .job-form textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(22,190,109,.12); }
.file-field input { padding: 12px; min-height: auto; }
.file-note { display: block; margin-top: 6px; color: var(--muted); font-size: .79rem; font-weight: 500; }
.job-form .consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; margin: 8px 0 18px; }
.job-form .consent input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--green-500); }
.job-form .consent span { color: var(--muted); font-size: .88rem; font-weight: 500; line-height: 1.45; }
.job-form button { border: 0; }
.form-status.is-success { color: var(--green-600) !important; }
.form-status.is-error { color: #d13f3f !important; }
@media (max-width: 980px) { .job-page-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .brand img { width: 42px; height: 42px; } .brand strong { font-size: .92rem; } .brand small { font-size: .54rem; } .page-shell { padding: calc(var(--header-h) + 20px) 0 74px; } .job-side-card, .job-form-card { padding: 22px; } }
/* Ética e qualidade */
.governance-section { background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%); }
.governance-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.governance-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.governance-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -100px;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(22,190,109,.09);
}
.governance-card:hover { transform: translateY(-6px); border-color: rgba(0,166,90,.36); box-shadow: var(--shadow-md); }
.governance-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 18px;
  color: white;
  background: var(--navy-900);
  font-size: 1.35rem;
  font-weight: 800;
}
.governance-quality .governance-icon { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.governance-label { margin-bottom: 10px; color: var(--green-600); font-size: .75rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.governance-card h3 { max-width: 520px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.governance-card p { max-width: 620px; }
.governance-card .text-link { position: relative; z-index: 1; margin-top: auto; padding-top: 20px; }

/* Páginas institucionais */
.document-hero {
  position: relative;
  padding: calc(var(--header-h) + 58px) 0 70px;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.document-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -300px;
  border-radius: 50%;
  background: rgba(22,190,109,.18);
  filter: blur(10px);
}
.document-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; gap: 54px; align-items: center; }
.document-hero h1 { max-width: 900px; font-size: clamp(2.55rem, 6vw, 4.8rem); }
.document-hero p { max-width: 760px; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.document-hero .back-link { color: rgba(255,255,255,.78); }
.document-hero .back-link:hover { color: #79f0b4; }
.document-emblem {
  display: grid;
  min-height: 310px;
  place-items: center;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.document-emblem img {
  width: 150px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.document-emblem span { color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.document-section { background: var(--soft); }
.narrow-container { max-width: 1040px; }
.document-intro { max-width: 780px; margin-bottom: 42px; }
.document-kicker { display: block; margin-bottom: 12px; color: var(--green-600); font-size: .76rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.ethics-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.ethics-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 24px rgba(4,39,78,.05);
}
.ethics-item > span {
  grid-row: 1 / span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
  font-size: .78rem;
  font-weight: 800;
}
.ethics-item h3 { margin-top: 7px; font-size: 1.12rem; letter-spacing: -.02em; }
.ethics-item p { grid-column: 2; margin-bottom: 0; font-size: .91rem; }
.ethics-statement {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 34px;
  border-radius: var(--radius-md);
  color: white;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
}
.statement-mark { color: var(--green-500); font-family: Georgia, serif; font-size: 6rem; line-height: .7; }
.ethics-statement h2 { font-size: clamp(1.6rem, 3.5vw, 2.45rem); }
.ethics-statement p { margin-bottom: 0; color: rgba(255,255,255,.76); }
.document-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Certificado institucional */
.quality-seal {
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  box-shadow: 0 30px 60px rgba(0,0,0,.2);
}
.quality-seal-inner {
  display: grid;
  width: 196px;
  height: 196px;
  place-items: center;
  align-content: center;
  border: 2px solid rgba(101,239,173,.75);
  border-radius: 50%;
  color: white;
  background: radial-gradient(circle, rgba(22,190,109,.18), transparent 68%);
}
.quality-seal-inner span { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 10px; border-radius: 50%; color: var(--navy-950); background: var(--green-500); font-size: 1.35rem; font-weight: 900; }
.quality-seal-inner strong { font-size: .88rem; letter-spacing: .15em; }
.quality-seal-inner small { margin-top: 5px; color: rgba(255,255,255,.65); font-size: .64rem; letter-spacing: .18em; }
.certificate-section { background: var(--soft); }
.certificate-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr); gap: 34px; align-items: start; }
.certificate-card { padding: 14px; border-radius: 30px; background: linear-gradient(135deg, var(--navy-900), var(--green-600)); box-shadow: var(--shadow-md); }
.certificate-border { padding: 42px; border: 1px solid rgba(6,46,94,.18); border-radius: 22px; background: #fff; }
.certificate-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.certificate-header img { width: 170px; height: 100px; object-fit: contain; }
.certificate-number { display: grid; justify-items: end; gap: 3px; color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.certificate-number strong { color: var(--navy-900); font-size: .86rem; }
.certificate-title { margin: 22px 0 24px; text-align: center; }
.certificate-title > span { color: var(--green-600); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.certificate-title h2 { margin-top: 8px; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 500; letter-spacing: -.025em; }
.certificate-lead, .certificate-text { color: #394b5f; font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; line-height: 1.75; text-align: center; }
.certificate-pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 28px 0; }
.certificate-pillars span { padding: 8px 11px; border: 1px solid #d8e6df; border-radius: 999px; color: #284b3b; background: #f0fbf5; font-size: .76rem; font-weight: 650; }
.certificate-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.certificate-meta div { display: grid; gap: 4px; text-align: center; }
.certificate-meta span { color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.certificate-meta strong { color: var(--navy-900); font-size: .82rem; }
.status-active { color: var(--green-600) !important; }
.certificate-signature { display: grid; justify-items: center; margin-top: 42px; text-align: center; }
.signature-line { width: 240px; margin-bottom: 9px; border-top: 1px solid #8290a0; }
.certificate-signature strong { color: var(--navy-900); }
.certificate-signature span { margin-top: 3px; color: var(--muted); font-size: .76rem; }
.certificate-explainer { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-sm); }
.certificate-explainer h2 { font-size: clamp(1.85rem, 3.5vw, 2.75rem); }
.quality-principles { display: grid; gap: 2px; margin-top: 26px; }
.quality-principles article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.quality-principles article > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--green-600); background: var(--green-100); font-size: .75rem; font-weight: 800; }
.quality-principles h3 { margin: 4px 0 6px; font-size: 1rem; }
.quality-principles p { margin: 0; font-size: .88rem; }
.certificate-disclaimer { margin-top: 24px; padding: 20px; border-left: 4px solid var(--green-500); border-radius: 0 14px 14px 0; background: #f3f8fb; }
.certificate-disclaimer strong { display: block; margin-bottom: 7px; color: var(--navy-900); }
.certificate-disclaimer p { margin: 0; font-size: .83rem; }

@media (max-width: 980px) {
  .governance-grid, .document-hero-grid, .certificate-layout { grid-template-columns: 1fr; }
  .document-emblem { min-height: 240px; }
  .quality-seal { width: 220px; height: 220px; }
  .quality-seal-inner { width: 168px; height: 168px; }
}

@media (max-width: 640px) {
  .governance-card { min-height: auto; padding: 26px; }
  .document-hero { padding: calc(var(--header-h) + 38px) 0 52px; }
  .document-emblem { min-height: 210px; }
  .document-emblem img { width: 112px; }
  .ethics-grid { grid-template-columns: 1fr; }
  .ethics-item { grid-template-columns: 44px 1fr; padding: 20px; }
  .ethics-statement { grid-template-columns: 1fr; padding: 26px; }
  .statement-mark { font-size: 4.5rem; }
  .document-actions { display: grid; grid-template-columns: 1fr; }
  .document-actions .btn { width: 100%; }
  .quality-seal { width: 190px; height: 190px; }
  .quality-seal-inner { width: 146px; height: 146px; }
  .certificate-card { padding: 8px; border-radius: 22px; }
  .certificate-border { padding: 24px 18px; border-radius: 16px; }
  .certificate-header { align-items: center; }
  .certificate-header img { width: 126px; height: 78px; }
  .certificate-number { font-size: .62rem; }
  .certificate-number strong { font-size: .72rem; }
  .certificate-meta { grid-template-columns: 1fr; gap: 14px; }
  .certificate-title h2 { font-size: 2.25rem; }
  .certificate-lead, .certificate-text { font-size: .94rem; }
  .certificate-explainer { padding: 24px; }
}

/* Novas frentes de atuação */
.service-expansion-heading { margin-top: 72px; }
.service-expansion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-expansion-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-expansion-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,166,90,.38);
  box-shadow: var(--shadow-md);
}
.service-expansion-card picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}
.service-expansion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s ease;
}
.service-expansion-card:hover img { transform: scale(1.04); }
.service-expansion-card > div { padding: 24px; }
.service-expansion-card h3 { color: var(--navy-900); }
.service-expansion-card p { margin-bottom: 18px; font-size: .94rem; }
.service-expansion-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: .9rem;
}
.service-expansion-card li {
  position: relative;
  padding-left: 22px;
}
.service-expansion-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-600);
  font-weight: 900;
}

@media (max-width: 980px) {
  .service-expansion-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .service-expansion-heading { margin-top: 50px; }
  .service-expansion-grid { grid-template-columns: 1fr; }
  .service-expansion-card > div { padding: 22px; }
}
