:root {
  --portal-navy: #092f63;
  --portal-navy-2: #0c3d7a;
  --portal-blue: #0b63ce;
  --portal-cyan: #13a9d4;
  --portal-sky: #eaf6ff;
  --portal-ink: #172033;
  --portal-muted: #637083;
  --portal-line: #dce5ef;
  --portal-bg: #f5f8fb;
  --portal-white: #ffffff;
  --portal-success: #0a7a55;
  --portal-warning: #f6b73c;
  --portal-radius-sm: 12px;
  --portal-radius: 18px;
  --portal-radius-lg: 28px;
  --portal-shadow: 0 18px 55px rgba(9, 47, 99, .10);
  --portal-shadow-sm: 0 8px 30px rgba(9, 47, 99, .08);
  --portal-container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.portal-body {
  margin: 0;
  color: var(--portal-ink);
  background: var(--portal-bg);
  font-family: 'Inter', 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.portal-body a { text-decoration: none; }
body.portal-body button,
body.portal-body input,
body.portal-body select { font: inherit; }
body.portal-body img { max-width: 100%; }

.portal-container {
  width: min(calc(100% - 32px), var(--portal-container));
  margin-inline: auto;
}

.portal-skip {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 999999;
  padding: 12px 16px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: top .18s ease;
}
.portal-skip:focus { top: 12px; }

.portal-utility {
  background: #061f42;
  color: #dce9f8;
  font-size: 12px;
}
.portal-utility__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.portal-utility__group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.portal-utility a,
.portal-utility button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 9px;
  color: inherit;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}
.portal-utility a:hover,
.portal-utility button:hover,
.portal-utility a:focus-visible,
.portal-utility button:focus-visible {
  background: rgba(255,255,255,.10);
  color: #fff;
  outline: none;
}
.portal-utility__official {
  color: #fff;
  font-weight: 700;
  letter-spacing: .02em;
}
.portal-utility__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #42d39a;
  box-shadow: 0 0 0 4px rgba(66,211,154,.12);
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(9,47,99,.09);
  backdrop-filter: blur(14px);
}
.portal-header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.portal-brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.portal-brand img { width: 245px; height: auto; display: block; }
.portal-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.portal-nav__link,
.portal-nav__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #213650;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.portal-nav__link:hover,
.portal-nav__button:hover,
.portal-nav__link:focus-visible,
.portal-nav__button:focus-visible {
  background: var(--portal-sky);
  color: var(--portal-blue);
  outline: none;
}
.portal-nav__item { position: relative; }
.portal-nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 260px;
  max-width: 340px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--portal-line);
  border-radius: 16px;
  box-shadow: var(--portal-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: .16s ease;
}
.portal-nav__item:hover .portal-nav__dropdown,
.portal-nav__item:focus-within .portal-nav__dropdown,
.portal-nav__item.is-open .portal-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.portal-nav__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #31425a;
  font-size: 13px;
  font-weight: 650;
}
.portal-nav__dropdown a:hover,
.portal-nav__dropdown a:focus-visible { background: #f1f7fd; color: var(--portal-blue); outline: none; }
.portal-nav__dropdown hr { border: 0; border-top: 1px solid var(--portal-line); margin: 8px 4px; }
.portal-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  margin-left: 7px;
  background: var(--portal-blue);
  color: #fff;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(11,99,206,.18);
}
.portal-header__cta:hover { background: var(--portal-navy-2); color: #fff; }
.portal-menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--portal-line);
  border-radius: 12px;
  background: #fff;
  color: var(--portal-navy);
  cursor: pointer;
}

.portal-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 78px 0 96px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(19,169,212,.40), transparent 32%),
    radial-gradient(circle at 12% 105%, rgba(34,197,94,.18), transparent 32%),
    linear-gradient(132deg, #072956 0%, #0a4487 54%, #0967a6 100%);
}
.portal-hero::before,
.portal-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
}
.portal-hero::before { width: 540px; height: 540px; right: -190px; top: -270px; }
.portal-hero::after { width: 380px; height: 380px; right: 120px; top: -250px; }
.portal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(310px, .6fr);
  gap: 56px;
  align-items: center;
}
.portal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #dff7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.portal-kicker__mark { width: 8px; height: 8px; border-radius: 50%; background: #4bd5ff; box-shadow: 0 0 0 5px rgba(75,213,255,.12); }
.portal-hero h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.03;
  letter-spacing: -.035em;
  font-weight: 820;
}
.portal-hero__lead {
  max-width: 670px;
  margin: 0 0 30px;
  color: #d9e9f8;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
}
.portal-search {
  max-width: 760px;
  display: flex;
  align-items: center;
  padding: 7px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}
.portal-search__icon { width: 24px; height: 24px; margin-left: 14px; color: #728096; flex: 0 0 auto; }
.portal-search input {
  min-width: 0;
  flex: 1;
  height: 54px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--portal-ink);
  background: transparent;
  font-size: 16px;
}
.portal-search button {
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--portal-blue);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.portal-search button:hover { background: var(--portal-navy-2); }
.portal-search button:focus-visible { outline: 3px solid #7edfff; outline-offset: 2px; }
.portal-search-suggestions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-top: 15px; color: #c8def1; font-size: 12px; }
.portal-search-suggestions a { padding: 6px 9px; color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(255,255,255,.06); }
.portal-search-suggestions a:hover { background: rgba(255,255,255,.14); }
.portal-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(5,32,67,.34);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}
.portal-hero__panel-title { margin: 0 0 5px; color: #fff; font-size: 16px; font-weight: 800; }
.portal-hero__panel-copy { margin: 0 0 16px; color: #bcd5ea; font-size: 13px; line-height: 1.5; }
.portal-hero__shortcuts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.portal-hero__shortcut {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
  color: #fff;
  transition: transform .18s ease, background .18s ease;
}
.portal-hero__shortcut:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); color: #fff; }
.portal-hero__shortcut svg { width: 22px; height: 22px; color: #62dcff; }
.portal-hero__shortcut span { font-size: 12px; font-weight: 800; line-height: 1.25; }

.portal-main { position: relative; }
.portal-section { padding: 76px 0; }
.portal-section--white { background: #fff; }
.portal-section--soft { background: var(--portal-bg); }
.portal-section--blue { background: #072956; color: #fff; }
.portal-section--tight { padding: 54px 0; }
.portal-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.portal-section-heading__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--portal-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.portal-section-heading h2 {
  margin: 0;
  color: var(--portal-navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 820;
}
.portal-section-heading p { max-width: 620px; margin: 9px 0 0; color: var(--portal-muted); line-height: 1.65; }
.portal-section-heading__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  color: var(--portal-blue);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
}
.portal-section-heading__link:hover { background: var(--portal-sky); }

.portal-services-wrap {
  margin-top: -36px;
  position: relative;
  z-index: 3;
}
.portal-services-shell {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(9,47,99,.08);
  border-radius: 24px;
  box-shadow: var(--portal-shadow);
}
.portal-services-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 20px; }
.portal-services-top h2 { margin: 0; color: var(--portal-navy); font-size: 20px; font-weight: 820; }
.portal-services-top p { margin: 4px 0 0; color: var(--portal-muted); font-size: 13px; }
.portal-services-all { display: inline-flex; align-items: center; gap: 7px; color: var(--portal-blue); font-size: 13px; font-weight: 800; }
.portal-service-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.portal-service-card {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--portal-line);
  border-radius: 16px;
  background: #fff;
  color: var(--portal-navy);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.portal-service-card:hover { transform: translateY(-3px); border-color: #9bc9f4; box-shadow: var(--portal-shadow-sm); background: #fbfdff; color: var(--portal-navy); }
.portal-service-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--portal-sky);
  color: var(--portal-blue);
}
.portal-service-card__icon svg { width: 22px; height: 22px; }
.portal-service-card span { font-size: 12px; line-height: 1.3; font-weight: 800; }
.portal-service-card small { color: #7b8899; font-size: 10px; }

.portal-news-grid { display: grid; grid-template-columns: 1.45fr .95fr; gap: 22px; }
.portal-news-featured {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 24px;
  background: #dbe8f3;
  box-shadow: var(--portal-shadow-sm);
}
.portal-news-featured > a { position: absolute; inset: 0; }
.portal-news-featured img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.portal-news-featured:hover img { transform: scale(1.025); }
.portal-news-featured__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,28,59,.95) 4%, rgba(4,28,59,.68) 43%, rgba(4,28,59,.04) 80%); pointer-events: none; }
.portal-news-featured__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px; color: #fff; pointer-events: none; }
.portal-news-featured__content a { pointer-events: auto; color: inherit; }
.portal-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: var(--portal-cyan); color: #03233c; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.portal-news-featured h3 { margin: 12px 0 9px; color: #fff; font-size: clamp(23px, 3vw, 34px); line-height: 1.15; font-weight: 820; }
.portal-news-featured p { max-width: 690px; margin: 0; color: #d6e3ee; line-height: 1.55; }
.portal-news-meta { display: flex; align-items: center; gap: 7px; margin-top: 14px; color: #d4e4f1; font-size: 12px; }
.portal-news-list { display: grid; grid-template-columns: 1fr; gap: 11px; }
.portal-news-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--portal-line);
  border-radius: 17px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.portal-news-item:hover { transform: translateY(-2px); border-color: #a9d3f6; box-shadow: var(--portal-shadow-sm); }
.portal-news-item__image { height: 100%; min-height: 90px; overflow: hidden; border-radius: 12px; background: #dce8f2; }
.portal-news-item__image img { width: 100%; height: 100%; object-fit: cover; }
.portal-news-item__content { display: flex; flex-direction: column; justify-content: center; padding: 4px 8px 4px 0; }
.portal-news-item__category { margin-bottom: 5px; color: var(--portal-blue); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.portal-news-item h4 { margin: 0; color: #23354d; font-size: 14px; line-height: 1.35; font-weight: 800; }
.portal-news-item:hover h4 { color: var(--portal-blue); }
.portal-news-item time { margin-top: 7px; color: #8793a2; font-size: 10px; }
.portal-empty { padding: 28px; border: 1px dashed #b9c8d7; border-radius: 16px; color: var(--portal-muted); background: #fff; }

.portal-banner-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.portal-banner {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--portal-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--portal-shadow-sm);
}
.portal-banner a { display: block; height: 100%; }
.portal-banner img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; display: block; transition: transform .3s ease; }
.portal-banner:hover img { transform: scale(1.015); }

.portal-tabs-head {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 28px;
  padding: 6px;
  width: fit-content;
  max-width: 100%;
  background: #eaf0f6;
  border-radius: 14px;
}
.portal-tab-button {
  min-height: 44px;
  padding: 9px 18px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #526176;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.portal-tab-button.is-active { background: #fff; color: var(--portal-blue); box-shadow: 0 4px 16px rgba(9,47,99,.10); }
.portal-tab-panel { display: none; }
.portal-tab-panel.is-active { display: grid; }
.portal-link-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 13px; }
.portal-link-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--portal-line);
  border-radius: 16px;
  background: #fff;
  color: #2c3e55;
  transition: .18s ease;
}
.portal-link-card:hover { border-color: #9dccf5; box-shadow: var(--portal-shadow-sm); transform: translateY(-2px); color: var(--portal-blue); }
.portal-link-card__icon { width: 45px; height: 45px; flex: 0 0 45px; display: grid; place-items: center; border-radius: 13px; background: var(--portal-sky); color: var(--portal-blue); }
.portal-link-card__icon svg { width: 21px; height: 21px; }
.portal-link-card strong { display: block; font-size: 13px; line-height: 1.3; }
.portal-link-card small { display: block; margin-top: 3px; color: #8390a1; font-size: 10px; line-height: 1.35; }

.portal-department-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; align-items: stretch; }
.portal-department-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(145deg, #082f63, #0c5b99);
  color: #fff;
}
.portal-department-card::after { content: ''; position: absolute; width: 240px; height: 240px; right: -90px; top: -100px; border-radius: 50%; background: rgba(66,213,255,.11); }
.portal-department-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 14px; background: rgba(255,255,255,.10); color: #69dcff; }
.portal-department-card h2 { position: relative; margin: 0 0 10px; color: #fff; font-size: 29px; line-height: 1.15; font-weight: 820; z-index: 1; }
.portal-department-card p { position: relative; max-width: 480px; margin: 0 0 25px; color: #c9dceb; line-height: 1.6; z-index: 1; }
.portal-select-wrap { position: relative; z-index: 1; }
.portal-select-wrap select { width: 100%; height: 52px; padding: 0 45px 0 15px; border: 1px solid rgba(255,255,255,.20); border-radius: 12px; background: rgba(255,255,255,.10); color: #fff; outline: none; appearance: none; }
.portal-select-wrap option { color: #1c3048; background: #fff; }
.portal-select-wrap svg { position: absolute; right: 15px; top: 50%; width: 18px; transform: translateY(-50%); pointer-events: none; }
.portal-department-button { position: relative; z-index: 1; width: 100%; min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; border-radius: 12px; background: #fff; color: var(--portal-navy); font-size: 12px; font-weight: 850; }
.portal-department-button:hover { background: #dff5ff; color: var(--portal-navy); }
.portal-institutional-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.portal-institutional-card { min-height: 165px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 21px; border: 1px solid var(--portal-line); border-radius: 18px; background: #fff; color: var(--portal-navy); transition: .18s ease; }
.portal-institutional-card:hover { transform: translateY(-2px); border-color: #acd5f7; box-shadow: var(--portal-shadow-sm); color: var(--portal-blue); }
.portal-institutional-card svg { width: 25px; height: 25px; color: var(--portal-blue); }
.portal-institutional-card strong { font-size: 14px; line-height: 1.3; }
.portal-institutional-card small { display: block; margin-top: 4px; color: var(--portal-muted); font-size: 10px; line-height: 1.4; }

.portal-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.portal-gallery-card { position: relative; min-height: 350px; overflow: hidden; border-radius: 23px; background: #dce7f1; box-shadow: var(--portal-shadow-sm); }
.portal-gallery-card > a { position: absolute; inset: 0; }
.portal-gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.portal-gallery-card:hover img { transform: scale(1.035); }
.portal-gallery-card__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,28,59,.94), rgba(4,28,59,.08) 70%); pointer-events: none; }
.portal-gallery-card__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 25px; color: #fff; pointer-events: none; }
.portal-gallery-card__content a { color: #fff; pointer-events: auto; }
.portal-gallery-card h3 { margin: 10px 0 0; color: #fff; font-size: 22px; line-height: 1.2; font-weight: 820; }

.portal-transparency-cta { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: center; padding: 36px; border-radius: 26px; background: linear-gradient(135deg, #082b5b, #0a5794); color: #fff; box-shadow: var(--portal-shadow); }
.portal-transparency-cta__eyebrow { color: #76ddff; font-size: 11px; font-weight: 900; letter-spacing: .10em; text-transform: uppercase; }
.portal-transparency-cta h2 { margin: 8px 0 9px; color: #fff; font-size: 31px; line-height: 1.15; font-weight: 820; }
.portal-transparency-cta p { margin: 0; color: #c8dced; line-height: 1.6; }
.portal-transparency-cta__actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.portal-btn { min-height: 47px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 15px; border-radius: 12px; font-size: 12px; font-weight: 850; transition: .18s ease; }
.portal-btn--light { background: #fff; color: var(--portal-navy); }
.portal-btn--light:hover { background: #dcf4ff; color: var(--portal-navy); }
.portal-btn--ghost { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.07); color: #fff; }
.portal-btn--ghost:hover { background: rgba(255,255,255,.15); color: #fff; }

.portal-footer { margin-top: 0; background: #061f42; color: #c9d7e7; }
.portal-footer__top { padding: 62px 0 42px; }
.portal-footer__grid { display: grid; grid-template-columns: 1.2fr .75fr 1fr .7fr; gap: 42px; }
.portal-footer__brand img { width: 230px; max-height: 85px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.portal-footer__brand p { max-width: 330px; margin: 0; color: #9db2c9; font-size: 13px; line-height: 1.65; }
.portal-footer h4 { margin: 2px 0 17px; color: #fff; font-size: 13px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.portal-footer ul { list-style: none; padding: 0; margin: 0; }
.portal-footer li { margin-bottom: 10px; }
.portal-footer a { color: #b8c9da; font-size: 13px; }
.portal-footer a:hover { color: #fff; }
.portal-footer__contact li { display: flex; gap: 10px; align-items: flex-start; color: #b8c9da; font-size: 12px; line-height: 1.5; }
.portal-footer__contact svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; color: #5cd8ff; }
.portal-socials { display: flex; gap: 8px; }
.portal-socials a { width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 11px; background: rgba(255,255,255,.05); color: #fff; }
.portal-socials a:hover { background: rgba(255,255,255,.12); }
.portal-socials svg { width: 18px; height: 18px; }
.portal-footer__bottom { border-top: 1px solid rgba(255,255,255,.10); }
.portal-footer__bottom-inner { min-height: 70px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #8fa6bd; font-size: 11px; }
.portal-footer__bottom-links { display: flex; gap: 14px; flex-wrap: wrap; }

.portal-cookie {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 99999;
  width: min(calc(100% - 28px), 820px);
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 19px;
  transform: translateX(-50%);
  border: 1px solid #d7e1eb;
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 20px 70px rgba(5,30,62,.24);
  color: #405066;
  font-size: 12px;
}
.portal-cookie.is-visible { display: grid; }
.portal-cookie p { margin: 0; line-height: 1.55; }
.portal-cookie a { color: var(--portal-blue); font-weight: 750; }
.portal-cookie button { min-height: 42px; padding: 8px 16px; border: 0; border-radius: 10px; background: var(--portal-blue); color: #fff; font-weight: 800; cursor: pointer; }

/* Compatibilidade e modernização das páginas internas existentes */
body.portal-body main,
body.portal-body .content,
body.portal-body .main-content { max-width: 100%; }
body.portal-body .component_pt-pageTitle h2 {
  color: var(--portal-navy) !important;
  font-family: 'Inter', 'Open Sans', sans-serif !important;
  letter-spacing: -.02em;
}
body.portal-body .component_pt-cardItemBig .card {
  border-radius: 16px !important;
  border-color: #dde6ef !important;
  box-shadow: 0 8px 28px rgba(9,47,99,.06) !important;
}
body.portal-body .component_pt-cardItemBig .card:hover { box-shadow: 0 14px 38px rgba(9,47,99,.12) !important; transform: translateY(-2px); }
body.portal-body table { max-width: 100%; }
body.portal-body input:focus-visible,
body.portal-body select:focus-visible,
body.portal-body textarea:focus-visible,
body.portal-body a:focus-visible,
body.portal-body button:focus-visible { outline: 3px solid rgba(19,169,212,.45); outline-offset: 2px; }

html.alto-contraste { filter: invert(1) hue-rotate(180deg); }
html.alto-contraste img,
html.alto-contraste svg,
html.alto-contraste [vw] { filter: invert(1) hue-rotate(180deg); }

@media (max-width: 1100px) {
  .portal-brand img { width: 210px; }
  .portal-nav__link, .portal-nav__button { padding-inline: 9px; font-size: 12px; }
  .portal-service-grid { grid-template-columns: repeat(4, 1fr); }
  .portal-hero__grid { grid-template-columns: 1fr 330px; gap: 32px; }
}

@media (max-width: 920px) {
  .portal-utility__inner { min-height: 42px; }
  .portal-utility__group:first-child a:not(:first-of-type) { display: none; }
  .portal-header__inner { min-height: 76px; }
  .portal-brand img { width: 205px; }
  .portal-menu-toggle { display: inline-flex; }
  .portal-header__cta { margin-left: auto; }
  .portal-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 12px 16px 20px;
    background: #fff;
    border-top: 1px solid var(--portal-line);
    box-shadow: 0 18px 35px rgba(9,47,99,.13);
  }
  .portal-nav.is-open { display: flex; }
  .portal-nav__link, .portal-nav__button { width: 100%; justify-content: space-between; min-height: 45px; padding: 10px 12px; }
  .portal-nav__item { width: 100%; }
  .portal-nav__dropdown { position: static; display: none; min-width: 0; max-width: none; margin: 2px 0 7px; padding: 6px; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: #f6f9fc; }
  .portal-nav__item.is-open .portal-nav__dropdown { display: block; }
  .portal-hero { padding: 58px 0 80px; }
  .portal-hero__grid { grid-template-columns: 1fr; }
  .portal-hero__panel { max-width: 620px; }
  .portal-news-grid { grid-template-columns: 1fr; }
  .portal-news-featured { min-height: 440px; }
  .portal-link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .portal-department-grid { grid-template-columns: 1fr; }
  .portal-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .portal-transparency-cta { grid-template-columns: 1fr; }
  .portal-transparency-cta__actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .portal-container { width: min(calc(100% - 24px), var(--portal-container)); }
  .portal-utility__inner { justify-content: center; }
  .portal-utility__group:first-child { display: none; }
  .portal-utility__group { width: 100%; justify-content: space-between; gap: 0; }
  .portal-utility a, .portal-utility button { padding-inline: 6px; font-size: 10px; }
  .portal-header__inner { gap: 8px; }
  .portal-brand img { width: 174px; }
  .portal-header__cta { display: none; }
  .portal-menu-toggle { margin-left: auto; }
  .portal-hero { padding: 45px 0 68px; }
  .portal-hero h1 { font-size: 39px; }
  .portal-hero__lead { font-size: 15px; }
  .portal-search { display: grid; grid-template-columns: 35px 1fr; padding: 7px; }
  .portal-search__icon { margin-left: 8px; }
  .portal-search input { height: 48px; padding-inline: 7px; font-size: 14px; }
  .portal-search button { grid-column: 1 / -1; width: 100%; height: 46px; }
  .portal-search-suggestions span { width: 100%; }
  .portal-hero__panel { padding: 18px; }
  .portal-hero__shortcut { min-height: 90px; }
  .portal-services-shell { padding: 20px 16px; border-radius: 20px; }
  .portal-services-top { align-items: flex-start; }
  .portal-services-all { display: none; }
  .portal-service-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-service-card { min-height: 126px; }
  .portal-section { padding: 58px 0; }
  .portal-section--tight { padding: 40px 0; }
  .portal-section-heading { display: block; margin-bottom: 22px; }
  .portal-section-heading__link { margin-top: 12px; padding-left: 0; }
  .portal-news-featured { min-height: 400px; }
  .portal-news-featured__content { padding: 21px; }
  .portal-news-featured p { display: none; }
  .portal-news-item { grid-template-columns: 104px 1fr; }
  .portal-banner-grid { grid-template-columns: 1fr; }
  .portal-tabs-head { width: 100%; overflow-x: auto; justify-content: flex-start; }
  .portal-tab-button { flex: 0 0 auto; }
  .portal-link-grid { grid-template-columns: 1fr; }
  .portal-institutional-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-gallery-grid { grid-template-columns: 1fr; }
  .portal-gallery-card { min-height: 310px; }
  .portal-transparency-cta { padding: 25px 21px; }
  .portal-transparency-cta h2 { font-size: 25px; }
  .portal-footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .portal-footer__bottom-inner { padding: 18px 0; display: block; line-height: 1.6; }
  .portal-footer__bottom-links { margin-top: 8px; }
  .portal-cookie { grid-template-columns: 1fr; gap: 12px; bottom: 10px; }
  .portal-cookie button { width: 100%; }
}

/* Área da Transparência: nova camada visual sobre as funcionalidades existentes */
body.portal-body .grid-column-with-filters {
  width: min(calc(100% - 32px), var(--portal-container)) !important;
  margin: 38px auto 72px !important;
  padding: 0 !important;
  grid-template-columns: 290px minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
  box-sizing: border-box !important;
}
body.portal-body .grid-column-with-filters .arq-list,
body.portal-body .grid-column-with-filters .rightContent,
body.portal-body .grid-column-with-filters > .container {
  min-width: 0;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.portal-body .component_pt-pageTitle {
  margin: 34px 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
}
body.portal-body .component_pt-pageTitle:first-child { margin-top: 0 !important; }
body.portal-body .component_pt-pageTitle h2 {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--portal-navy) !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 820 !important;
  text-transform: none !important;
}
body.portal-body .component_pt-pageTitle h2 > span:first-child {
  width: 28px !important;
  height: 5px !important;
  display: inline-block !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: var(--portal-cyan) !important;
  color: transparent !important;
  font-size: 0 !important;
}
body.portal-body .component_pt-cardItemBig {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 13px !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.portal-body .component_pt-cardItemBig .card {
  position: relative !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 205px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 21px !important;
  overflow: hidden !important;
  border: 1px solid var(--portal-line) !important;
  border-radius: 17px !important;
  background: #fff !important;
  color: var(--portal-ink) !important;
  text-align: left !important;
  text-decoration: none !important;
  box-shadow: 0 8px 26px rgba(9,47,99,.055) !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease !important;
}
body.portal-body .component_pt-cardItemBig .card:hover {
  transform: translateY(-3px) !important;
  border-color: #a8d4f7 !important;
  box-shadow: 0 15px 36px rgba(9,47,99,.11) !important;
}
body.portal-body .component_pt-cardItemBig .card__icon {
  width: 46px !important;
  height: 46px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 0 3px !important;
  border-radius: 13px !important;
  background: var(--portal-sky) !important;
  color: var(--portal-blue) !important;
  font-size: 22px !important;
}
body.portal-body .component_pt-cardItemBig .card__icon span { color: var(--portal-blue) !important; }
body.portal-body .component_pt-cardItemBig .card__title {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--portal-navy) !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
}
body.portal-body .component_pt-cardItemBig .card__description {
  display: block !important;
  margin: 0 !important;
  padding: 0 32px 0 0 !important;
  color: var(--portal-muted) !important;
  font-size: 11px !important;
  line-height: 1.55 !important;
  font-weight: 450 !important;
}
body.portal-body .component_pt-cardItemBig .card__arrowLink {
  position: absolute !important;
  right: 17px !important;
  bottom: 17px !important;
  width: 32px !important;
  height: 32px !important;
  display: grid !important;
  place-items: center !important;
  margin: 0 !important;
  border-radius: 10px !important;
  background: #eef7ff !important;
  color: var(--portal-blue) !important;
}
body.portal-body .component_pt-cardItemBig .card__arrowLink span { color: var(--portal-blue) !important; }
body.portal-body .single_title {
  color: var(--portal-navy) !important;
  font-size: clamp(22px, 3vw, 30px) !important;
  line-height: 1.25 !important;
  font-weight: 820 !important;
}
body.portal-body iframe {
  max-width: 100%;
  border-radius: 16px;
  background: #fff;
}
body.portal-body .arq-list-filters-forms form {
  border-radius: 15px !important;
  border-color: var(--portal-line) !important;
  box-shadow: 0 7px 24px rgba(9,47,99,.045);
}
body.portal-body .inputSearchTitle,
body.portal-body .select-filtro-data,
body.portal-body input[type="text"],
body.portal-body input[type="search"],
body.portal-body input[type="date"],
body.portal-body select {
  border-radius: 10px;
}

@media (max-width: 1050px) {
  body.portal-body .component_pt-cardItemBig { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 768px) {
  body.portal-body .grid-column-with-filters {
    width: min(calc(100% - 24px), var(--portal-container)) !important;
    margin: 24px auto 50px !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  body.portal-body .component_pt-cardItemBig { grid-template-columns: 1fr !important; }
  body.portal-body .component_pt-cardItemBig .card { min-height: 170px !important; }
  body.portal-body .component_pt-pageTitle h2 { font-size: 19px !important; }
}
