﻿:root {
  --ink: #06111d;
  --ink-2: #001f33;
  --blue: #0077ff;
  --blue-strong: #008cff;
  --blue-2: #173965;
  --orange: #ff9a45;
  --paper: #f3f6f9;
  --paper-2: #eef3f7;
  --muted: #6c7886;
  --line: #d6dde5;
  --white: #fff;
  --soft-blue: #eaf4ff;
  --cyan: #21a6ff;
  --yellow: #ffcc21;
  --shadow: 0 18px 45px rgba(0, 31, 51, .14);
  --shadow-strong: 0 28px 70px rgba(0, 20, 38, .24);
  --radius: 8px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 100vh;
  background: #000a14;
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(360px, 72vw);
  min-height: 142px;
}

.site-loader-mark img {
  position: relative;
  width: min(310px, 64vw);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, .38));
  animation: loaderPulse 1.7s ease-in-out infinite;
}

.site-loader-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.site-loader-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #0d91f8;
  opacity: .45;
  animation: loaderDot 1s ease-in-out infinite;
}

.site-loader-dots span:nth-child(2) { animation-delay: .16s; }
.site-loader-dots span:nth-child(3) { animation-delay: .32s; }

.loader-pending body {
  overflow: hidden;
}

.loader-seen .site-loader,
.loader-done .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(.985); opacity: .88; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes loaderDot {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(-4px); opacity: 1; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 0 8vw;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0, rgba(0, 119, 255, .22), transparent 28%),
    var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.brand img {
  width: 195px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.main-nav > a,
.nav-parent {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-group:hover .nav-parent {
  background: #00172a;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 265px;
  display: none;
  background: #06243b;
  border-top: 1px solid #0e3a60;
  box-shadow: var(--shadow);
}

.nav-group:hover > .submenu,
.nav-group:focus-within > .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 800;
}

.submenu a:hover {
  background: #0b314f;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 119, 255, .24);
}

.button.dark {
  background: var(--ink);
  box-shadow: 0 14px 26px rgba(0, 17, 29, .2);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.button.green {
  background: #21c35b;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: grid;
  place-items: center;
  padding: 72px 8vw;
  color: var(--white);
  text-align: center;
  background-image:
    linear-gradient(90deg, rgba(6, 17, 29, .92), rgba(0, 31, 51, .66)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: 0;
  width: min(560px, 54vw);
  height: 78px;
  background: linear-gradient(90deg, var(--blue), var(--blue-strong));
  transform: skewX(-18deg);
  opacity: .9;
}

.hero::after {
  content: "";
  position: absolute;
  top: 72px;
  right: 8vw;
  width: 92px;
  height: 92px;
  opacity: .55;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .75) 1.5px, transparent 1.7px);
  background-size: 12px 12px;
}

.hero > div {
  position: relative;
  z-index: 1;
}

.hero.home {
  min-height: 520px;
  justify-items: start;
  text-align: left;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 6vw, 72px);
  line-height: .98;
  text-transform: uppercase;
}

.hero p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: end;
  gap: 42px;
  padding: min(13vh, 120px) 8vw 72px;
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(0, 20, 34, .96) 0%, rgba(0, 27, 46, .82) 42%, rgba(0, 21, 36, .48) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 82px;
  width: 112px;
  height: 112px;
  opacity: .4;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .85) 1.4px, transparent 1.8px);
  background-size: 12px 12px;
}

.home-hero__content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.home-hero__content {
  max-width: 820px;
}

.home-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: .94;
  text-transform: uppercase;
}

.home-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(0, 29, 49, .82);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(12px);
}

.hero-panel strong,
.hero-panel span,
.hero-panel a {
  display: block;
}

.hero-panel strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
}

.hero-panel span {
  color: rgba(255, 255, 255, .82);
}

.hero-panel a {
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: #12314d;
}

.metric {
  min-height: 128px;
  display: grid;
  align-content: center;
  padding: 28px 8vw;
  background: var(--ink);
}

.metric + .metric {
  padding-left: 36px;
}

.metric strong {
  color: var(--blue-strong);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 8vw;
  background: var(--white);
}

.quick-link {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(0, 31, 51, .1);
  border-radius: var(--radius);
  background: #f8fbfe;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.quick-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, .35);
  box-shadow: 0 14px 34px rgba(0, 31, 51, .12);
}

.quick-link span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.quick-link strong {
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow,
.breadcrumb {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  letter-spacing: .02em;
}

.breadcrumb {
  color: rgba(255, 255, 255, .92);
  text-transform: none;
}

.section {
  position: relative;
  padding: 82px 8vw;
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section.blue {
  color: var(--white);
  background: var(--blue);
}

.section-title {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title.left {
  margin-left: 0;
  text-align: left;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
  text-transform: uppercase;
}

.section-title h2 strong,
.hero h1 strong {
  color: var(--blue);
}

.section-title p {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
}

.section.dark .section-title p,
.section.blue .section-title p {
  color: rgba(255, 255, 255, .85);
}

.rule {
  width: 95px;
  height: 3px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 1;
}

.section-title.left .rule {
  margin-left: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 58px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split.reverse {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1fr);
}

.copy p {
  margin: 0 0 16px;
}

.copy strong {
  font-weight: 900;
}

.media-frame {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-story {
  background: var(--paper);
}

.feature-photo {
  border-radius: 18px 18px 18px 4px;
}

.story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.story-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(0, 31, 51, .12);
  border-radius: 999px;
  color: var(--blue-2);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.editorial-band {
  padding-top: 74px;
  padding-bottom: 74px;
  background:
    linear-gradient(135deg, #021421 0%, #04233a 54%, #00111d 100%);
}

.feature-banner {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  text-transform: uppercase;
}

.feature-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

.banner-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.banner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  pointer-events: none;
}

.banner-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-services {
  background: var(--white);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.card.dark-card {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 100%, rgba(0, 119, 255, .24), transparent 40%),
    var(--ink);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  text-transform: uppercase;
}

.card p,
.card li {
  color: var(--muted);
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, .86);
}

.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
}

.service-card {
  overflow: hidden;
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.service-card::before {
  content: "";
  position: absolute;
  left: -26px;
  right: -26px;
  bottom: -54px;
  height: 116px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(90deg, rgba(0, 119, 255, .9), rgba(33, 166, 255, .5));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 18px;
}

.refined-service {
  min-height: 390px;
  align-content: start;
  gap: 18px;
  padding: 34px 28px;
}

.refined-service::before {
  display: none;
}

.refined-service::after {
  width: 100%;
  height: 4px;
}

.refined-service img {
  width: 138px;
  height: 138px;
  margin-bottom: 2px;
}

.refined-service p {
  min-height: 82px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.news-grid,
.assoc-grid,
.people-grid,
.gallery-grid,
.logo-grid {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assoc-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.people-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.news-media {
  position: relative;
}

.news-media-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.news-title-link {
  color: inherit;
  text-decoration: none;
}

.news-title-link:hover,
.news-title-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 51, .08), rgba(0, 31, 51, .78));
  pointer-events: none;
}

.news-card img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
}

.post-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-body {
  position: relative;
  padding: 22px;
}

.news-card h3 {
  min-height: 78px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.26;
}

.news-card small {
  color: rgba(255, 255, 255, .74);
}

.read-more {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-news {
  background:
    linear-gradient(180deg, #021827 0%, #00111d 100%);
}

.news-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.news-feature {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .8fr);
  min-height: 360px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.news-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.news-feature > div {
  position: relative;
  display: grid;
  align-content: center;
  padding: 34px;
}

.news-feature .post-pill {
  position: static;
  width: fit-content;
  margin-bottom: 18px;
}

.news-feature h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.news-feature p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.home-news-list {
  display: grid;
  gap: 14px;
}

.news-detail {
  max-width: 860px;
}

.news-detail__meta {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.news-detail__lead {
  max-width: 720px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.55;
}

.news-detail__body {
  margin: 28px 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.compact-news {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  min-height: 118px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  transition: transform .2s ease, background .2s ease;
}

.compact-news:hover {
  transform: translateX(3px);
  background: rgba(255, 255, 255, .1);
}

.compact-news img {
  grid-row: 1 / 4;
  width: 110px;
  height: 90px;
  border-radius: 6px;
  object-fit: cover;
}

.compact-news span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.compact-news strong {
  display: block;
  margin: 4px 0;
  line-height: 1.2;
}

.compact-news small {
  color: rgba(255, 255, 255, .64);
}

.assoc-card,
.person-card,
.mini-card,
.logo-card {
  display: grid;
  justify-items: center;
  text-align: center;
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 31, 51, .1);
}

.assoc-card {
  min-height: 275px;
  border: 1px solid rgba(0, 31, 51, .08);
}

.assoc-card img,
.logo-card img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--soft-blue);
  padding: 12px;
}

.logo-fallback {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--blue-2);
  background: var(--white);
  font-weight: 900;
}

.assoc-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.2;
}

.assoc-card p {
  margin: 4px 0;
  color: #1d3850;
  font-size: 13px;
}

.person-card {
  color: var(--white);
  background: var(--ink);
}

.person-card img {
  width: 190px;
  height: 235px;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
  background: #39566e;
}

.person-card h3 {
  margin: 18px 0 4px;
  font-size: 17px;
}

.person-card p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1030px;
  margin: 0 auto;
}

.mini-card {
  min-height: 82px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.plan {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.plan.highlight {
  background: var(--blue);
}

.plan h3 {
  margin: 0 0 18px;
}

.plan ul {
  padding-left: 18px;
}

.table-wrap {
  overflow: auto;
  max-width: 1120px;
  margin: 0 auto 72px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th {
  color: var(--white);
  background: var(--ink);
  text-align: left;
}

th,
td {
  padding: 14px 18px;
}

tr:nth-child(even) td {
  background: #e3e3e3;
}

.cta-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 62px 8vw;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 255, 255, .18), transparent 20%),
    linear-gradient(135deg, var(--blue), #006ee8);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -8vw;
  top: 0;
  width: 34vw;
  height: 100%;
  background: rgba(255, 255, 255, .1);
  transform: skewX(-18deg);
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 36px;
  padding: 56px 8vw;
}

.footer-top img {
  width: 170px;
  margin-bottom: 20px;
}

.footer-top h3 {
  margin: 0 0 22px;
  font-size: 16px;
}

.footer-top h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 18px;
  background: var(--blue);
}

.footer-top p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icons a {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-bottom {
  padding: 28px 8vw;
  text-align: center;
  background: #001625;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: #22c55e;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.whatsapp svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--blue-2);
  color: var(--white);
}

.form-panel {
  padding: 70px 8vw;
}

.form-panel form {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.form-panel input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  color: var(--white);
  background: transparent;
}

.form-panel input::placeholder {
  color: rgba(255, 255, 255, .74);
}

.form-image {
  background-image: linear-gradient(rgba(0, 31, 51, .25), rgba(0, 31, 51, .25)), var(--form-image);
  background-size: cover;
  background-position: center;
}

.filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 0 28px;
}

.filter {
  border: 0;
  color: var(--blue-2);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.gallery-block {
  max-width: 1180px;
  margin: 0 auto 80px;
  padding: 54px;
  border-radius: 16px;
  background: #ededed;
}

.gallery-block h2 {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-size: 32px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: #c8d1d8;
}

.placeholder-art {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 2.65;
  color: #7d8b95;
  background:
    radial-gradient(circle at 25% 35%, #f3f7fa 0 7%, transparent 8%),
    linear-gradient(135deg, transparent 0 42%, #eef3f6 43% 58%, transparent 59%),
    #c6d0d7;
  font-weight: 900;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 190px auto 1fr;
    gap: 16px;
    padding: 0 5vw;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    height: auto;
    flex-direction: column;
    background: var(--ink);
    padding: 16px 5vw 26px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-parent {
    min-height: 50px;
    justify-content: space-between;
    padding: 0;
  }

  .submenu {
    position: static;
    display: block;
    min-width: 0;
    box-shadow: none;
  }

  .header-cta {
    justify-self: end;
  }

  .home-hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: auto;
    padding: 92px 5vw 54px;
  }

  .hero-panel {
    max-width: 560px;
  }

  .metric-strip,
  .quick-access,
  .feature-banner,
  .news-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric {
    padding: 26px 5vw;
  }

  .metric + .metric {
    padding-left: 26px;
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .news-feature img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 165px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 82px;
  }

  .hero,
  .hero.home {
    min-height: 360px;
    padding: 58px 6vw;
  }

  .home-hero {
    padding: 64px 6vw 42px;
    background-image:
      linear-gradient(180deg, rgba(0, 20, 34, .86) 0%, rgba(0, 18, 31, .96) 100%),
      var(--hero-image);
  }

  .home-hero::after {
    display: none;
  }

  .home-hero h1 {
    font-size: 42px;
    line-height: .98;
  }

  .home-hero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 6vw;
  }

  .split,
  .split.reverse,
  .form-section,
  .cta-band,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .news-grid,
  .assoc-grid,
  .people-grid,
  .gallery-grid,
  .logo-grid,
  .mini-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .metric-strip,
  .quick-access,
  .feature-banner,
  .news-feature-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 104px;
    padding: 24px 6vw;
  }

  .metric + .metric {
    padding-left: 6vw;
  }

  .quick-access {
    padding: 22px 6vw;
  }

  .feature-copy h2 {
    font-size: 32px;
  }

  .refined-service {
    min-height: 0;
  }

  .refined-service p {
    min-height: 0;
  }

  .compact-news {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .compact-news img {
    width: 92px;
    height: 86px;
  }

  .form-image {
    min-height: 330px;
  }

  .gallery-block {
    padding: 30px;
  }
}

/* Fase de espelhamento visual do site atual SESCAP/CE */
.site-header {
  grid-template-columns: 230px minmax(0, 1fr) auto;
  min-height: 120px;
  padding: 0 clamp(42px, 5.7vw, 92px);
  gap: 28px;
  background: #001F33;
  box-shadow: none;
}

.brand img {
  width: 218px;
}

.main-nav {
  gap: 0;
}

.main-nav > a,
.nav-parent {
  min-height: 120px;
  padding: 0 18px;
  font-size: 12.6px;
  letter-spacing: 0;
}

.nav-group:hover .nav-parent,
.main-nav > a:hover,
.main-nav > a.active {
  background: #001727;
}

.submenu {
  min-width: 244px;
  background: #fff;
  border-top: 1px solid rgba(0, 31, 51, .1);
}

.submenu a {
  padding: 17px 22px;
  color: #001f33;
  border-bottom-color: rgba(0, 31, 51, .08);
  font-size: 12.6px;
}

.submenu a:hover {
  color: #001f33;
  background: #f1f5f8;
}

.submenu-item {
  position: relative;
}

.submenu-trigger-row {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: stretch;
}

.submenu-item .submenu-trigger {
  padding-right: 10px;
}

.submenu-flyout-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  border: 0;
  color: #001f33;
  background: transparent;
  cursor: pointer;
}

.submenu-flyout-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.submenu-flyout-toggle:hover {
  background: #f1f5f8;
}

.submenu .submenu-child {
  top: 0;
  left: 100%;
  display: none;
  min-width: 230px;
  border-top: 0;
  border-left: 1px solid rgba(0, 31, 51, .1);
}

.submenu-item:hover > .submenu-child,
.submenu-item.open > .submenu-child {
  display: block;
}

.header-cta {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0785ff 0%, #1298ff 52%, #28aaff 100%);
  box-shadow: 0 14px 26px rgba(0, 119, 255, .22);
  font-size: 16px;
  text-transform: none;
}


@media (min-width: 861px) {
  .site-header.header-over-hero {
    grid-template-columns: 230px minmax(0, 1fr) 0;
  }

  .site-header.header-over-hero .main-nav {
    justify-content: flex-end;
    justify-self: end;
    padding-right: clamp(18px, 3vw, 54px);
  }

  .site-header.header-over-hero .header-cta {
    display: none;
  }
}

.button {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 4px;
  box-shadow: none;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.home-slider {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #06111d;
}

.home-slider::before {
  content: "";
  position: absolute;
  inset: -7%;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: hero-motion 18s ease-in-out infinite alternate;
}

@keyframes hero-motion {
  from {
    transform: scale(1.04) translate3d(-1.5%, -1%, 0);
  }
  to {
    transform: scale(1.16) translate3d(1.5%, 1%, 0);
  }
}

.home-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .58);
  pointer-events: none;
}


.home-history {
  padding-top: 112px;
  padding-bottom: 112px;
  background: #f2f2f2;
}

.home-history__grid {
  max-width: 1120px;
  grid-template-columns: minmax(0, .93fr) minmax(410px, .92fr);
  gap: 78px;
}

.home-history .section-title {
  margin-bottom: 22px;
}

.home-history .section-title h2 {
  color: #001f33;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 .01px currentColor;
}

.home-history .rule {
  display: none;
}

.home-history .copy p {
  margin-bottom: 13px;
  color: #163148;
  font-size: 15.4px;
  line-height: 1.45;
}

.home-history .button {
  margin-top: 12px;
}

.home-history .media-frame {
  border-radius: 12px;
  box-shadow: none;
}

.home-history .media-frame img {
  min-height: 310px;
}

.history-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 310px;
  overflow: hidden;
  background: #001f33;
}

.history-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.home-carousel {
  position: relative;
  padding: 48px clamp(52px, 10.5vw, 150px) 72px;
  background: #001f33;
}

.carousel-frame {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 48%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 54px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 44px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.carousel-arrow.prev {
  left: clamp(22px, 6vw, 96px);
}

.carousel-arrow.next {
  right: clamp(22px, 6vw, 96px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin-top: 28px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
}

.slider-dots .active {
  background: #008cff;
}

.mirror-services {
  padding-top: 86px;
  padding-bottom: 104px;
  background: #f2f2f2;
}

.mirror-services .section-title {
  margin-bottom: 56px;
}

.mirror-services .section-title h2,
.mirror-news .section-title h2 {
  color: #001f33;
  font-size: 30px;
  letter-spacing: 0;
}

.mirror-services .section-title h2 {
  font-weight: 900;
  text-shadow: 0 0 .01px currentColor;
}

.mirror-services .rule,
.mirror-news .rule {
  display: none;
}

.mirror-services .card-grid {
  max-width: 1090px;
  gap: 68px;
}

.card.mirror-service {
  color: #001f33;
  background: #fff;
}

.mirror-service {
  min-height: 350px;
  padding: 18px 34px 28px;
  border: 1px solid rgba(0, 31, 51, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 31, 51, .12);
}

.mirror-service::before,
.mirror-service::after {
  display: none;
}

.mirror-service img {
  width: 162px;
  height: 162px;
  padding: 0;
  margin-bottom: 2px;
  background: #fff;
}

.mirror-service p {
  display: -webkit-box;
  max-width: 235px;
  min-height: 64px;
  margin: 0 0 8px;
  overflow: hidden;
  color: #33485a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.mirror-service .button {
  min-width: 144px;
  min-height: 44px;
  border-radius: 6px;
  color: #fff;
  background: #001F33;
  box-shadow: 0 12px 24px rgba(0, 31, 51, .18);
  font-weight: 900;
}

.section.dark.mirror-news {
  background: #02314f;
  background-color: #02314f;
}

.mirror-news {
  padding-top: 102px;
  padding-bottom: 96px;
  background: #02314f;
  background-color: #02314f;
}

.mirror-news .section-title h2 {
  color: #fff;
  font-weight: 900;
  text-shadow: 0 0 .01px currentColor;
}

.news-section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 1120px;
  margin-bottom: 46px;
}

.news-section-heading h2 {
  margin: 0;
}

.news-top-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  opacity: .94;
  transition: opacity .2s ease, transform .2s ease;
}

.news-top-link:hover {
  opacity: 1;
  transform: translateX(2px);
}

.news-top-link span {
  font-size: 24px;
  line-height: .7;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #3f4650;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.news-media::after,
.news-card .post-pill {
  display: none;
}

.news-card img,
.gallery-item img {
  aspect-ratio: 4 / 2.65;
}

.news-body {
  flex: 1;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 22px;
}

.news-date {
  margin: 0 0 12px;
}

.news-card h3 {
  min-height: 0;
  margin: 0 0 28px;
  color: #02314f;
  font-size: 15.7px;
  line-height: 1.32;
  text-transform: none;
}

.news-card small {
  color: #a1a8ae;
  font-size: 13px;
  font-weight: 700;
}

.news-card .read-more {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  background: #001F33;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 31, 51, .18);
}

.mirror-news .news-grid {
  max-width: 980px;
  gap: 28px;
}

.news-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 58px;
}

.news-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.news-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.news-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 56px) / 3);
  grid-template-columns: none;
  max-width: none;
  margin: 0;
  overflow: visible;
}

.news-carousel-track .news-card {
  scroll-snap-align: start;
}

.news-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 58px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.news-carousel-arrow.prev {
  left: 0;
}

.news-carousel-arrow.next {
  right: 0;
}

.news-carousel-arrow img {
  width: 19px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.cta-band {
  padding: 72px clamp(52px, 8vw, 130px);
  background: #008cff;
}

.cta-band::after {
  display: none;
}

.cta-band h2 {
  font-size: 32px;
}

.cta-band p {
  max-width: 660px;
  margin: 0;
  font-size: 15.4px;
}

.site-footer {
  background: #001f33;
}

.footer-top {
  padding: 54px clamp(52px, 8vw, 130px);
}

.footer-bottom {
  background: #001625;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 210px auto 1fr;
    min-height: 96px;
    padding: 0 5vw;
  }

  .brand img {
    width: 190px;
  }

  .main-nav {
    top: 96px;
  }

  .main-nav > a,
  .nav-parent {
    min-height: 50px;
  }

  .home-slider {
    min-height: 500px;
  }

  .home-video {
    width: max(100vw, 890px);
    height: max(56.25vw, 500px);
  }

  .home-history__grid {
    gap: 46px;
  }

  .mirror-services .card-grid {
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .brand img {
    width: 165px;
  }

  .main-nav {
    top: 82px;
  }

  .home-slider {
    min-height: 330px;
    background-position: center;
  }

  .home-video {
    width: max(100vw, 590px);
    height: max(56.25vw, 330px);
  }

  .home-history,
  .home-carousel,
  .mirror-services,
  .mirror-news {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .home-history__grid {
    grid-template-columns: 1fr;
  }

  .home-history .media-frame img,
  .history-video-frame {
    min-height: 230px;
  }

  .home-carousel {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .carousel-arrow {
    display: none;
  }

  .mirror-service {
    min-height: 320px;
  }

  .news-body {
    min-height: 210px;
  }
}

/* Official SESCAP/CE assets */
.nav-parent::after {
  width: 10px;
  height: 10px;
  border: 0;
  background: currentColor;
  -webkit-mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
  mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
  transform: none;
}

.menu-toggle img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.carousel-frame picture {
  display: block;
}

.carousel-frame img {
  transition: opacity .2s ease;
}

.carousel-arrow {
  cursor: pointer;
}

.carousel-arrow img {
  width: 19px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  cursor: pointer;
}

.slider-dots button.active {
  background: #008cff;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.whatsapp {
  background: transparent;
  box-shadow: none;
}

.whatsapp img {
  width: 54px;
  height: 54px;
}

.news-all-link {
  gap: 8px;
}

.news-all-link img {
  width: 14px;
  height: 14px;
}

@media (max-width: 700px) {
  .news-section-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .news-section-heading > span {
    display: none;
  }

  .news-top-link {
    justify-self: center;
  }

  .news-carousel {
    max-width: min(330px, calc(100vw - 88px));
    padding: 0;
  }

  .news-carousel-track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .news-carousel-track .news-card {
    width: 100%;
    min-width: 0;
  }

  .news-carousel-arrow {
    width: 32px;
    height: 48px;
  }

  .news-carousel-arrow.prev {
    left: -42px;
  }

  .news-carousel-arrow.next {
    right: -42px;
  }

  .news-carousel-arrow img {
    width: 14px;
    height: 24px;
  }

  .news-carousel .news-body {
    min-height: 220px;
    padding: 20px 18px 18px;
  }

  .carousel-frame img {
    aspect-ratio: 4 / 5;
  }
}
/* Urgent stabilization flows */
[hidden] {
  display: none !important;
}

.soft-section {
  background: #f2f2f2;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f19c4e;
}

.feature-symbol {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #f19c4e;
  background: rgba(255, 255, 255, .1);
  font-size: 13px;
  font-weight: 900;
}

.cert-feature {
  text-align: center;
}

.dpn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.dpn-grid article {
  padding: 28px;
  border-left: 3px solid var(--blue);
  background: #f4f5f6;
}

.directory-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto 36px;
}

.directory-toolbar h2 {
  margin: 6px 0 0;
}

.search-field {
  display: grid;
  gap: 8px;
  width: min(100%, 390px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #c8d1d8;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto 28px;
}

.filter-tabs button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #c8d1d8;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-tabs button.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.filter-empty {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 22px;
  text-align: center;
  background: #f2f4f6;
}

.convention-cards .card {
  text-align: center;
}

.associate-logo {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
}

.associate-logo img,
.associate-logo .logo-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.associate-logo img {
  object-fit: contain;
  background: #fff;
}

.associate-logo .logo-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 25px;
  font-weight: 900;
}

.logo-card {
  overflow: hidden;
}

.logo-card img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
}

.form-field {
  display: grid;
  gap: 4px;
}

.form-field label {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
}

.form-panel input {
  border-radius: 0;
}

.form-panel input:focus,
.search-field input:focus {
  outline: 3px solid rgba(0, 140, 255, .28);
  outline-offset: 2px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.45;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-weight: 800;
}

.form-status.success {
  color: #73e39b;
}

.form-status.error {
  color: #ffb4b4;
}

.news-detail__content {
  max-width: 820px;
  margin: 0 auto;
}

.news-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gallery-item small {
  display: block;
  padding: 10px 4px 0;
  color: #466076;
}

@media (max-width: 1120px) {
  .nav-group .submenu {
    display: none;
  }

  .nav-group.open .submenu {
    display: block;
  }

  .nav-group.open .nav-parent {
    color: var(--cyan);
  }

  .submenu-trigger-row {
    grid-template-columns: 1fr;
  }

  .submenu-flyout-toggle {
    display: none;
  }

  .submenu .submenu-child {
    position: static;
    display: block;
    padding-left: 14px;
    border-left: 0;
    box-shadow: none;
  }

  .submenu .submenu-child a {
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .directory-toolbar {
    display: grid;
    align-items: stretch;
  }

  .search-field {
    width: 100%;
  }

  .dpn-grid {
    grid-template-columns: 1fr;
  }
}
/* Work Office visual mirror */
body[data-route="work-office"] main {
  background: #fff;
}

.work-page {
  color: #011a2f;
  background: #fff;
}

.work-page h1,
.work-page h2,
.work-page h3,
.work-page p,
.work-page figure {
  margin-top: 0;
}

.work-hero {
  position: relative;
  display: grid;
  place-items: center;
  height: 502px;
  background-image:
    linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)),
    var(--hero-image);
  background-position: center 66%;
  background-repeat: no-repeat;
  background-size: cover;
}

.work-hero img {
  display: block;
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  transform: translateY(-24px);
}

.work-intro {
  padding: 100px 0 166px;
  background: #fff;
}

.work-intro-inner,
.work-differentials-inner,
.work-plans-inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.work-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.work-intro-copy {
  padding-right: 68px;
}

.work-kicker {
  margin-bottom: 9px;
  color: #f19c4e;
  font-family: "Poppins", sans-serif;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 42px;
  text-transform: uppercase;
}

.work-intro h1 {
  margin-bottom: 0;
  color: #7a7a7a;
  font-family: "Poppins", sans-serif;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 42px;
  text-transform: uppercase;
}

.work-rule,
.work-plans-rule {
  width: 76px;
  height: 3px;
  background: #f19c4e;
}

.work-rule {
  margin: 26px 0 34px;
}

.work-intro-copy > p:not(.work-kicker) {
  margin-bottom: 16px;
  color: #011a2f;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-align: justify;
}

.work-intro-copy > p:last-child {
  margin-bottom: 0;
}

.work-intro-media {
  margin: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.work-intro-media img {
  display: block;
  width: 95%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 25px;
}

.work-differentials {
  padding: 98px 0 113px;
  background: #1d1d1d;
}

.work-differentials h2 {
  margin-bottom: 76px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 42px;
  text-align: center;
}

.work-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 20px;
}

.work-feature {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 118px;
  padding: 20px;
  border-radius: 20px;
  background: #181717;
  text-align: center;
}

.work-feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: #f19c4e;
}

.work-feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.work-feature h3 {
  margin-bottom: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.work-plans-section {
  padding: 104px 0 126px;
  background: #fff;
}

.work-plans-inner > h2 {
  margin-bottom: 23px;
  color: #7a7a7a;
  font-family: "Poppins", sans-serif;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 42px;
  text-align: center;
  text-transform: uppercase;
}

.work-plans-rule {
  margin: 0 auto 92px;
}

.work-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 510px));
  justify-content: center;
  align-items: stretch;
  gap: 52px 64px;
  margin-bottom: 64px;
}

.work-plan {
  padding: 44px 44px 48px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 14px rgba(13, 45, 153, .35);
}

.work-plan-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  border-radius: 50%;
  color: #fff;
}

.work-plan-icon.green { background: #4b9f55; }
.work-plan-icon.purple { background: #634dad; }
.work-plan-icon.yellow { background: #f2bb23; }
.work-plan-icon.gray { background: #4d4d4d; }

.work-plan-icon svg {
  width: 37px;
  height: 37px;
  fill: currentColor;
}

.work-plan h3 {
  margin-bottom: 34px;
  color: #7a7a7a;
  font-family: "Poppins", sans-serif;
  font-size: 19.2px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.work-plan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-plan li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 15px;
  color: #7a7a7a;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.work-plan li:last-child {
  margin-bottom: 0;
}

.work-plan li > span {
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  color: #011a2f;
}

.work-plan li svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.work-plan li.is-note > span svg {
  transform: rotate(0deg);
}

.work-schedule {
  display: flex;
  justify-content: center;
}

.work-schedule a {
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 11px;
  padding: 25px 40px;
  border-radius: 8px;
  background: #011a2f;
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 19.2px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s ease;
}

.work-schedule a:hover,
.work-schedule a:focus-visible {
  background: #0e426d;
}

.work-schedule svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .work-hero {
    height: 300px;
    background-position: center;
  }

  .work-hero img {
    width: 150px;
    height: 150px;
    transform: none;
  }

  .work-intro {
    padding: 58px 0 72px;
  }

  .work-intro-inner,
  .work-differentials-inner,
  .work-plans-inner {
    width: calc(100% - 40px);
  }

  .work-intro-inner {
    grid-template-columns: 1fr;
  }

  .work-intro-media {
  margin: 0;
    grid-row: 1;
    margin-bottom: 42px;
  }

  .work-intro-media img {
    width: 100%;
  }

  .work-intro-copy {
    grid-row: 2;
    padding-right: 0;
  }

  .work-kicker,
  .work-intro h1 {
    font-size: 24px;
    line-height: 1.35;
  }

  .work-intro-copy > p:not(.work-kicker) {
    font-size: 15px;
    line-height: 1.65;
  }

  .work-differentials {
    padding: 64px 0 76px;
  }

  .work-differentials h2 {
    margin-bottom: 46px;
    font-size: 27px;
  }

  .work-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-feature {
    min-height: 122px;
  }

  .work-plans-section {
    padding: 72px 0 86px;
  }

  .work-plans-inner > h2 {
    font-size: 27px;
  }

  .work-plans-rule {
    margin-bottom: 58px;
  }

  .work-plan-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 54px;
  }

  .work-plan {
    padding: 38px 28px 42px;
  }

  .work-plan li {
    font-size: 15px;
  }

  .work-schedule a {
    width: 100%;
    justify-content: center;
    padding: 22px 24px;
    font-size: 16px;
  }
}

/* Associados visual mirror */
.associates-directory {
  padding-top: 68px;
  padding-bottom: 92px;
  background: #fff;
}

.associates-mirror-grid {
  max-width: 900px;
  gap: 90px 76px;
}

.associates-mirror-grid .assoc-card {
  min-height: 410px;
  padding: 38px 22px 28px;
  border: 0;
  border-radius: 8px;
  background: #d9d9d9;
  box-shadow: none;
}

.associates-mirror-grid .associate-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
}

.associates-mirror-grid .assoc-card img,
.associates-mirror-grid .logo-fallback {
  width: 92px;
  height: 92px;
  margin-bottom: 0;
  background: #fff;
}

.associates-mirror-grid .assoc-card img {
  padding: 14px;
}

.associates-mirror-grid .assoc-card h3 {
  max-width: 210px;
  margin-bottom: 16px;
  color: #00263f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  text-transform: uppercase;
}

.associates-mirror-grid .assoc-card p {
  max-width: 220px;
  margin: 7px 0;
  color: #00263f;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.28;
}

@media (max-width: 900px) {
  .associates-directory {
    padding-top: 44px;
    padding-bottom: 70px;
  }

  .associates-mirror-grid {
    max-width: 280px;
    gap: 34px;
  }

  .associates-mirror-grid .assoc-card {
    min-height: 338px;
  }
}


/* Home hero V1: editorial copy + clickable banners */
.home-hero-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .64fr) minmax(560px, 1.36fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: 46px clamp(56px, 8vw, 118px) 54px;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, .14), transparent 34%),
    linear-gradient(135deg, #12384F 0%, #245C73 55%, #6B8FA3 100%);
}

.home-hero-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 28, 40, .42), rgba(16, 28, 40, .16)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .16;
  animation: none;
  transform: none;
}

.home-hero-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 19, 29, .22), rgba(10, 19, 29, .06));
  pointer-events: none;
}

.home-hero-copy,
.home-hero-editorial .hero-carousel {
  position: relative;
  z-index: 2;
}

.home-hero-copy {
  max-width: 430px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 12px;
  border-radius: 4px;
  color: #fff;
  background: #008cff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero-copy h1 {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(18px, 2.1vw, 29px);
  font-weight: 900;
  line-height: 1.06;
  text-transform: uppercase;
}

.home-hero-copy p {
  max-width: 430px;
  margin: 20px 0 26px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 1.58;
  text-align: left;
}

.home-hero-copy .hero-main-cta {
  min-height: 56px;
  padding: 0 26px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #0785ff 0%, #1298ff 52%, #28aaff 100%);
  box-shadow: 0 14px 26px rgba(0, 119, 255, .22);
  font-size: 13px;
}

.home-hero-editorial .home-carousel {
  padding: 0;
  background: transparent;
}

.home-hero-editorial .carousel-frame {
  display: block;
  max-width: none;
  overflow: hidden;
  border-radius: 8px;
  background: #001f33;
  box-shadow: 0 28px 68px rgba(0, 18, 31, .34);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-hero-editorial .carousel-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 78px rgba(0, 18, 31, .42);
}

.home-hero-editorial .carousel-frame picture,
.home-hero-editorial .carousel-frame img {
  display: block;
  width: 100%;
}

.home-hero-editorial .carousel-frame img {
  aspect-ratio: 16 / 9;
  background: #001f33;
  object-fit: contain;
  object-position: center;
}

.home-hero-editorial .carousel-arrow {
  z-index: 3;
  top: 50%;
  width: 42px;
  height: 58px;
  border-radius: 4px;
  background: rgba(0, 31, 51, .24);
  transform: translateY(-50%);
}

.home-hero-editorial .carousel-arrow.prev {
  left: -22px;
}

.home-hero-editorial .carousel-arrow.next {
  right: -22px;
}

.home-hero-editorial .carousel-arrow img {
  width: 15px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.home-hero-editorial .slider-dots {
  margin-top: 18px;
}

.home-hero-editorial .slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .66);
}

.home-hero-editorial .slider-dots button.active {
  background: #fff;
}

@media (max-width: 980px) {
  .home-hero-editorial {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 48px 6vw 56px;
  }

  .home-hero-copy h1 {
    font-size: 19px;
  }

  .home-hero-copy p {
    font-size: 16px;
  }

  .home-hero-editorial .carousel-arrow.prev {
    left: 8px;
  }

  .home-hero-editorial .carousel-arrow.next {
    right: 8px;
  }

  .home-hero-editorial .carousel-frame img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
  }
}

/* Menu desktop no padrão institucional de referência */
@media (min-width: 1121px) {
  .site-header {
    min-height: 115px;
  }

  .main-nav {
    align-items: center;
    height: auto;
  }

  .main-nav > a,
  .nav-parent,
  .nav-group {
    min-height: 50px;
    height: 50px;
  }

  .main-nav > a,
  .nav-parent {
    padding: 0 20px;
    font-size: 13px;
  }

  .nav-group:hover .nav-parent,
  .nav-group.open .nav-parent,
  .main-nav > a:hover,
  .main-nav > a.active {
    color: #fff;
    background: #001625;
  }

  .submenu {
    top: 50px;
    min-width: 220px;
    background: #001f33;
    border-top: 1px solid #0b3a59;
    box-shadow: 0 16px 28px rgba(0, 16, 28, .22);
  }

  .submenu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 20px;
    color: #fff;
    border-bottom: 1px solid rgba(43, 133, 196, .2);
    background: #001f33;
    font-size: 13px;
    line-height: 1.2;
  }

  .submenu a:hover,
  .submenu-trigger-row:hover,
  .submenu-flyout-toggle:hover {
    color: #fff;
    background: #062b46;
  }

  .submenu-trigger-row {
    grid-template-columns: 1fr 42px;
    min-height: 42px;
    background: #001f33;
    border-bottom: 1px solid rgba(43, 133, 196, .2);
  }

  .submenu-trigger-row .submenu-trigger {
    border-bottom: 0;
    background: transparent;
  }

  .submenu-flyout-toggle {
    height: 42px;
    color: #fff;
  }

  .submenu-flyout-toggle::after {
    width: 9px;
    height: 9px;
    border: 0;
    background: currentColor;
    -webkit-mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
    mask: url("./assets/icons/chevron-down.svg") center / contain no-repeat;
    transform: none;
  }

  .submenu .submenu-child {
    top: 0;
    left: 100%;
    min-width: 230px;
    background: #001f33;
    border-top: 0;
    border-left: 1px solid #0b3a59;
  }
}

/* Certificacao Digital - espelhamento da referencia */
body[data-route="certificacao-digital"],
body[data-route="certificacao-digital"] button,
body[data-route="certificacao-digital"] input,
body[data-route="certificacao-digital"] textarea {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.cert-page {
  color: #011a2f;
  background: #f1f1f1;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

.cert-page > .hero {
  min-height: 353px;
  padding: 126px 0;
  background-image: linear-gradient(rgba(1, 26, 47, .66), rgba(1, 26, 47, .66)), var(--hero-image);
  background-position: center center;
}

.cert-page > .hero::before,
.cert-page > .hero::after {
  display: none;
}

.cert-page > .hero h1 {
  max-width: none;
  font-size: clamp(28px, 2.75vw, 35.2px);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.cert-page > .hero p {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.cert-intro,
.cert-features,
.cert-dpn {
  background: #f1f1f1;
}

.cert-intro {
  padding: 149px 0 87px;
}

.cert-intro-inner,
.cert-features-inner,
.cert-dpn-inner {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.cert-intro-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.cert-intro-copy {
  padding-right: 68px;
  transform: translateY(-18px);
}

.cert-intro-copy h2,
.cert-dpn-copy h2 {
  margin: 0;
  color: #011a2f;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 1.54;
  text-transform: uppercase;
}

.cert-intro-copy h2 span {
  display: inline;
  color: #f19c4e;
}

.cert-rule {
  width: 70px;
  height: 3px;
  margin: 27px 0 31px;
  background: #011a2f;
}

.cert-intro-copy > p,
.cert-dpn-copy p {
  margin: 0;
  color: #011a2f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.cert-check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cert-check-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  color: #011a2f;
  font-size: 14px;
  line-height: 1.5;
}

.cert-check-list span,
.cert-check-list svg {
  display: block;
  width: 16px;
  height: 16px;
}

.cert-check-list span {
  margin-top: 2px;
  color: #f19c4e;
}

.cert-check-list svg,
.cert-feature-icon svg,
.cert-whatsapp-button svg,
.cert-dpn-actions svg {
  fill: currentColor;
}

.cert-intro-media {
  width: 91.67%;
  justify-self: center;
  overflow: hidden;
  border-radius: 25px;
}

.cert-intro-media img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.cert-features {
  padding: 116px 0;
}

.cert-features-inner > h2 {
  margin: 0 0 40px;
  color: #011a2f;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.cert-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 331px));
  justify-content: center;
  gap: 42px;
}

.cert-feature-card {
  min-height: 369px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 33px;
  border-radius: 20px;
  color: #fff;
  background: #011a2f;
  text-align: center;
}

.cert-feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 17px;
  color: #f19c4e;
}

.cert-feature-icon svg {
  width: 54px;
  height: 54px;
}

.cert-feature-card h3 {
  min-height: 48px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.cert-feature-card p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.cert-contact {
  display: grid;
  grid-template-columns: 60.2% 39.8%;
  min-height: 362px;
  padding: 0;
  color: #fff;
  background: #011a2f;
}

.cert-contact-copy {
  display: grid;
  place-items: center;
  padding: 63px 0;
}

.cert-contact-copy > div {
  width: min(533px, calc(100% - 72px));
}

.cert-contact h2 {
  max-width: 530px;
  margin: 0;
  color: #f19c4e;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.cert-contact p {
  margin: 23px 0 29px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.cert-whatsapp-button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: #2cc149;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.cert-whatsapp-button svg {
  width: 15px;
  height: 17px;
}

.cert-contact-media {
  min-height: 362px;
  overflow: hidden;
}

.cert-contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cert-dpn {
  padding: 102px 0;
}

.cert-dpn-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cert-dpn-copy {
  padding-right: 68px;
}

.cert-dpn-copy h2 span {
  color: #f19c4e;
}

.cert-dpn-copy .cert-rule {
  margin-top: 27px;
  margin-bottom: 31px;
}

.cert-dpn-copy p + p {
  margin-top: 25px;
}

.cert-dpn-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding-top: 24px;
}

.cert-dpn-actions a {
  width: min(307px, 100%);
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  color: #fff;
  background: #011a2f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.cert-dpn-actions svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.cert-page .site-footer {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
}

@media (max-width: 760px) {
  .cert-page > .hero {
    min-height: 295px;
    padding: 50px 24px;
    background-position: center center;
  }

  .cert-page > .hero h1 {
    max-width: 440px;
    font-size: clamp(34px, 9vw, 45px);
    line-height: 1.18;
  }

  .cert-page > .hero p {
    margin-top: 24px;
    font-size: 20px;
  }

  .cert-intro {
    padding: 96px 24px 88px;
    background: #fff;
  }

  .cert-intro-inner,
  .cert-features-inner,
  .cert-dpn-inner {
    width: 100%;
  }

  .cert-intro-inner,
  .cert-dpn-inner {
    grid-template-columns: 1fr;
  }

  .cert-intro-media {
    grid-row: 1;
    margin-bottom: 26px;
    border-radius: 28px;
  }

  .cert-intro-copy {
    grid-row: 2;
    padding-right: 0;
    transform: none;
  }

  .cert-intro-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.42;
  }

  .cert-rule {
    margin: 33px 0 45px;
  }

  .cert-intro-copy > p,
  .cert-dpn-copy p {
    font-size: 19px;
    line-height: 1.55;
    text-align: justify;
  }

  .cert-check-list {
    gap: 20px;
    margin-top: 51px;
  }

  .cert-check-list li {
    grid-template-columns: 18px 1fr;
    gap: 15px;
    font-size: 19px;
    line-height: 1.5;
  }

  .cert-check-list span,
  .cert-check-list svg {
    width: 18px;
    height: 18px;
  }

  .cert-features {
    padding: 62px 24px 82px;
  }

  .cert-features-inner > h2 {
    max-width: 390px;
    margin: 0 auto 43px;
    font-size: clamp(31px, 8vw, 40px);
    line-height: 1.05;
  }

  .cert-feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100%, 382px);
    margin: 0 auto;
  }

  .cert-feature-card {
    min-height: 0;
    padding: 34px 30px 40px;
  }

  .cert-feature-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
  }

  .cert-feature-icon svg {
    width: 58px;
    height: 58px;
  }

  .cert-feature-card h3 {
    min-height: 0;
    margin-bottom: 35px;
    font-size: 19px;
  }

  .cert-feature-card p {
    font-size: 17px;
    line-height: 1.55;
  }

  .cert-contact {
    grid-template-columns: 1fr;
    padding: 74px 24px 82px;
  }

  .cert-contact-media {
    grid-row: 1;
    min-height: 0;
    margin: 0 10px 42px;
    border-radius: 27px;
  }

  .cert-contact-media img {
    aspect-ratio: 16 / 9;
  }

  .cert-contact-copy {
    grid-row: 2;
    display: block;
    padding: 0;
  }

  .cert-contact-copy > div {
    width: 100%;
  }

  .cert-contact h2 {
    font-size: clamp(32px, 8vw, 40px);
    line-height: 1.16;
  }

  .cert-contact p {
    margin: 32px 0 46px;
    font-size: 19px;
    line-height: 1.55;
  }

  .cert-whatsapp-button {
    width: 100%;
    min-height: 58px;
    font-size: 17px;
  }

  .cert-dpn {
    padding: 80px 24px 86px;
  }

  .cert-dpn-copy {
    padding-right: 0;
  }

  .cert-dpn-copy h2 {
    font-size: clamp(29px, 7.5vw, 37px);
    line-height: 1.25;
  }

  .cert-dpn-copy .cert-rule {
    margin: 28px 0 47px;
  }

  .cert-dpn-copy p + p {
    margin-top: 35px;
  }

  .cert-dpn-actions {
    gap: 31px;
    padding-top: 66px;
  }

  .cert-dpn-actions a {
    width: min(100%, 386px);
    min-height: 58px;
    font-size: 16px;
  }
}
/* Quem Somos visual mirror */
.about-page{background:#f1f1f1;color:#011a2f}
.about-page>.hero{min-height:0;height:404px;padding:0;background-image:linear-gradient(rgba(1,26,47,.7),rgba(1,26,47,.7)),var(--hero-image);background-position:center,center -147px;background-repeat:no-repeat;background-size:100% 100%,cover}
.about-page>.hero::before{display:none}
.about-page>.hero::after{display:none}
.about-page>.hero>div{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;max-width:none;text-align:center;transform:translateY(-30px)}
.about-page>.hero h1{margin:0 0 20px;font-size:35px;font-weight:800;line-height:1.2;letter-spacing:0;text-transform:uppercase}
.about-page>.hero .breadcrumb{margin:0;color:#fff;font-size:16px;font-weight:500;text-transform:none}
.about-history{padding:94px 0 112px;background:#f1f1f1}
.about-history-inner{display:grid;grid-template-columns:1fr 1fr;align-items:center;width:min(1140px,88vw);margin:0 auto}
.about-history-copy{padding-right:18px}
.about-history-copy h2,.about-flags h2,.about-presidents h2{margin:0;color:#011a2f;font-family:Poppins,Arial,sans-serif;font-size:27px;font-weight:800;line-height:1.55;letter-spacing:0;text-transform:uppercase}
.about-history-copy h2{margin-bottom:20px}
.about-history-copy p{margin:0 0 17px;color:#011a2f;font-family:Poppins,Arial,sans-serif;font-size:14px;font-weight:400;line-height:1.52}
.about-history-copy strong{font-weight:800}
.about-history-media{display:flex;justify-content:flex-end;margin:0}
.about-history-media img{display:block;width:95%;aspect-ratio:16/9;border-radius:25px;object-fit:cover}
.about-flags{padding:96px 0 132px;color:#fff;background:#011a2f}
.about-flags-inner{width:min(1120px,88vw);margin:0 auto}
.about-flags h2{margin-bottom:70px;color:#fff;text-align:center}
.about-flags-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:64px 20px}
.about-flag-card{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:118px;padding:22px 20px;border-radius:20px;background:#00111f;text-align:center}
.about-flag-icon{display:grid;place-items:center;width:38px;height:38px;margin-bottom:14px;color:#fff}
.about-flag-icon svg{display:block;width:100%;height:100%;fill:currentColor}
.about-flag-card h3{max-width:340px;margin:0;color:#fff;font-family:Poppins,Arial,sans-serif;font-size:15px;font-weight:400;line-height:1.25}
.about-presidents{padding:108px 0 155px;background:#f1f1f1}
.about-presidents-inner{width:min(1100px,86vw);margin:0 auto}
.about-presidents h2{margin-bottom:94px;text-align:center}
.about-presidents-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:40px}
.about-president-card{display:flex;flex:0 0 245px;min-height:338px;flex-direction:column;align-items:center;justify-content:flex-start;padding:40px 44px 34px;border-radius:20px;color:#fff;background:#011a2f;text-align:center}
.about-president-card img{display:block;width:153px;height:193px;border-radius:10px;object-fit:cover;object-position:top;background:#777}
.about-president-card h3{display:flex;align-items:flex-end;justify-content:center;min-height:48px;margin:18px 0 8px;color:#fff;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:600;line-height:1.03}
.about-president-card p{margin:0;color:#fff;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:600;line-height:1.2}
@media(max-width:1024px){
  .about-page>.hero{background-position:center,center}
  .about-history-inner{width:min(900px,90vw)}
  .about-flags-inner,.about-presidents-inner{width:90vw}
  .about-president-card{flex-basis:220px}
}
@media(max-width:767px){
  .about-page>.hero{height:146px;background-position:center,center}
  .about-page>.hero>div{transform:none}
  .about-page>.hero h1{margin-bottom:13px;font-size:27px}
  .about-page>.hero .breadcrumb{font-size:13px}
  .about-history{padding:34px 5% 38px}
  .about-history-inner{display:flex;width:100%;flex-direction:column}
  .about-history-media{order:-1;width:100%;margin-bottom:12px}
  .about-history-media img{width:100%;border-radius:18px}
  .about-history-copy{width:100%;padding:0}
  .about-history-copy h2,.about-flags h2,.about-presidents h2{font-size:25px;line-height:1.28}
  .about-history-copy h2{margin:0 0 20px}
  .about-history-copy p{margin-bottom:17px;font-size:13px;line-height:1.48}
  .about-flags{padding:34px 5% 40px}
  .about-flags-inner,.about-presidents-inner{width:100%}
  .about-flags h2{margin-bottom:30px}
  .about-flags-grid{grid-template-columns:1fr;gap:16px}
  .about-flag-card{min-height:112px;padding:20px 15px;border-radius:16px}
  .about-flag-icon{width:36px;height:36px;margin-bottom:14px}
  .about-flag-card h3{max-width:270px;font-size:13px}
  .about-presidents{padding:34px 0 70px}
  .about-presidents h2{max-width:270px;margin:0 auto 54px;text-align:center}
  .about-presidents-grid{display:grid;grid-template-columns:1fr;gap:20px}
  .about-president-card{width:165px;min-height:300px;justify-self:center;padding:7px 7px 24px;border-radius:16px}
  .about-president-card img{width:151px;height:190px;border-radius:10px}
  .about-president-card h3{min-height:48px;margin:13px 0 5px;padding:0 5px;font-size:13px}
  .about-president-card p{font-size:13px}
}


/* Diretoria visual mirror */
.board-page{color:#001f33;background:#f1f1f1}
.board-page>.hero{min-height:0;height:444px;padding:0;background-image:linear-gradient(rgba(1,26,47,.7),rgba(1,26,47,.7)),var(--hero-image);background-position:center,center -132px;background-repeat:no-repeat;background-size:100% 100%,cover}
.board-page>.hero::before,.board-page>.hero::after{display:none}
.board-page>.hero>div{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;max-width:none;text-align:center;transform:translateY(-24px)}
.board-page>.hero h1{margin:0 0 20px;font-size:35px;font-weight:800;line-height:1.2;letter-spacing:0;text-transform:uppercase}
.board-page>.hero .breadcrumb{margin:0;color:#fff;font-size:16px;font-weight:500;text-transform:none}
.board-inner{width:min(100% - 40px,990px);margin:0 auto}
.board-effective{padding:108px 0 0}
.board-substitutes{padding:130px 0 0}
.board-council{padding:130px 0 190px}
.board-heading{margin:0 auto 68px;text-align:center}
.board-heading h2{margin:0;color:#001f33;font-size:31px;font-weight:900;line-height:1.1;letter-spacing:0;text-transform:uppercase}
.board-heading span{display:block;width:96px;height:2px;margin:39px auto 0;background:#001f33}
.board-people-grid{display:grid;grid-template-columns:repeat(3,284px);justify-content:space-between;row-gap:62px}
.board-person-card{display:flex;flex-direction:column;align-items:center;width:284px;min-height:408px;padding:40px 40px 30px;overflow:hidden;color:#fff;text-align:center;background:#001f33;border-radius:18px}
.board-person-card img{display:block;width:202px;height:252px;margin:0 0 18px;border-radius:7px;object-fit:cover;object-position:top;background:#3c5972}
.board-person-card h3{margin:0 0 14px;font-size:16px;font-weight:800;line-height:1.12}
.board-person-card p{margin:0;color:#fff;font-size:15px;font-weight:700;line-height:1.15}
.board-mini-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:45px 40px}
.board-mini-card{display:grid;place-items:center;min-height:112px;padding:20px 24px;color:#fff;font-size:15px;font-weight:800;line-height:1.05;text-align:center;background:#001f33;border-radius:18px}
.board-council-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:45px 40px}
.board-council-card{display:grid;align-content:center;min-height:132px;padding:24px 20px;color:#fff;text-align:center;background:#001f33;border-radius:18px}
.board-council-card h3{margin:0 0 18px;font-size:15px;font-weight:800;line-height:1.12}
.board-council-card p{margin:0;color:#fff;font-size:15px;font-weight:700;line-height:1.15}
@media(max-width:1024px){
  .board-page>.hero{background-position:center,center}
  .board-inner{width:min(100% - 48px,860px)}
  .board-people-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:42px 28px}
  .board-person-card{width:100%;min-height:360px;padding:28px 22px 24px}
  .board-person-card img{width:100%;max-width:185px;height:231px}
  .board-mini-grid,.board-council-grid{gap:30px 24px}
}
@media(max-width:700px){
  .board-page>.hero{height:173px;background-position:center,center}
  .board-page>.hero>div{transform:none}
  .board-page>.hero h1{margin-bottom:14px;font-size:29px}
  .board-page>.hero .breadcrumb{font-size:14px}
  .board-inner{width:100%}
  .board-effective{padding-top:34px}
  .board-substitutes{padding-top:112px}
  .board-council{padding:112px 0 168px}
  .board-heading{margin-bottom:67px;padding:0 10px}
  .board-heading h2{font-size:29px;line-height:.96}
  .board-heading span{width:46px;margin-top:39px}
  .board-people-grid{display:flex;flex-direction:column;align-items:center;gap:5px}
  .board-person-card{width:194px;min-height:303px;padding:8px 8px 13px;border-radius:18px}
  .board-person-card img{width:178px;max-width:none;height:223px;margin-bottom:14px;border-radius:7px}
  .board-person-card h3{margin-bottom:12px;font-size:15px}
  .board-person-card p{font-size:14px}
  .board-person-card:nth-child(3),.board-person-card:nth-child(6){margin-bottom:82px}
  .board-mini-grid{display:flex;flex-direction:column;gap:4px;width:min(100% - 116px,232px);margin:0 auto}
  .board-mini-card{min-height:53px;padding:9px 14px;border-radius:18px;font-size:14px}
  .board-council-grid{display:flex;flex-direction:column;gap:10px;width:min(100% - 72px,276px);margin:0 auto}
  .board-council-card{min-height:110px}
}

@media(max-width:700px){
  .board-effective .board-heading h2,.board-council .board-heading h2{font-size:26px;white-space:nowrap}
  .board-effective .board-heading{margin-bottom:82px}
}


/* Representatividade visual mirror */
.representation-page{color:#001f33;background:#fff}
.representation-page>.hero{min-height:0;height:444px;padding:0;background-image:linear-gradient(rgba(1,26,47,.7),rgba(1,26,47,.7)),var(--hero-image);background-position:center,center -132px;background-repeat:no-repeat;background-size:100% 100%,cover}
.representation-page>.hero::before,.representation-page>.hero::after{display:none}
.representation-page>.hero>div{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;max-width:none;text-align:center;transform:translateY(-24px)}
.representation-page>.hero h1{margin:0 0 20px;font-size:35px;font-weight:800;line-height:1.2;letter-spacing:0;text-transform:uppercase}
.representation-page>.hero .breadcrumb{margin:0;color:#fff;font-size:16px;font-weight:500;text-transform:none}
.representation-content{display:grid;gap:114px;padding:101px 0 125px}
.representation-card{width:min(100% - 40px,1140px);min-height:518px;margin:0 auto;padding:45px 65px 70px;color:#173f73;background:#f1f1f1;border-radius:18px}
.representation-card h2{margin:0;font-size:32px;font-weight:800;line-height:1.1;letter-spacing:0}
.representation-rule{display:block;width:146px;height:3px;margin-top:32px;background:#b9b9b9}
.representation-card-body{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(330px,.95fr);gap:80px;align-items:center;margin-top:66px}
.representation-copy{font-size:14px;font-weight:400;line-height:1.52}
.representation-copy p{margin:0 0 18px}
.representation-copy p:last-child{margin-bottom:0}
.representation-copy strong{font-weight:800}
.representation-media{margin:0}
.representation-media img{display:block;width:100%;height:255px;border-radius:18px;object-fit:cover}
@media(max-width:1024px){
  .representation-page>.hero{background-position:center,center}
  .representation-card{width:min(100% - 48px,900px);padding-right:46px;padding-left:46px}
  .representation-card-body{grid-template-columns:minmax(0,1.25fr) minmax(280px,.9fr);gap:45px}
}
@media(max-width:700px){
  .representation-page>.hero{height:173px;background-position:center,center}
  .representation-page>.hero>div{transform:none}
  .representation-page>.hero h1{margin-bottom:14px;font-size:22px;white-space:nowrap}
  .representation-page>.hero .breadcrumb{font-size:14px}
  .representation-content{gap:34px;padding:61px 0 86px}
  .representation-card{width:calc(100% - 34px);min-height:0;padding:26px 32px 70px;border-radius:18px}
  .representation-card h2{font-size:28px;text-align:center}
  .representation-rule{width:38px;height:2px;margin:29px auto 65px}
  .representation-card-body{display:flex;flex-direction:column;gap:0;margin-top:0}
  .representation-media{order:-1;width:100%;margin:0 0 18px}
  .representation-media img{width:100%;height:auto;aspect-ratio:1.48/1;border-radius:18px}
  .representation-copy{font-size:14px;line-height:1.5;text-align:justify}
  .representation-copy p{margin-bottom:18px}
}


/* Galeria de Fotos - fidelidade visual */
.photos-page { background: #fff; }
.photos-page > .hero {
  min-height: 0;
  height: 444px;
  padding: 0;
  background-image: linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)), var(--hero-image);
  background-position: center, center -132px;
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
}
.photos-page > .hero::before,
.photos-page > .hero::after { display: none; }
.photos-page > .hero > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-24px);
}
.photos-page > .hero h1 {
  margin: 0 0 20px;
  font-size: 35px;
  text-transform: uppercase;
}
.photos-page > .hero p { margin: 0; font-size: 16px; }
.photos-content {
  display: grid;
  gap: 112px;
  padding: 101px 0 273px;
}
.photos-block {
  width: min(calc(100% - 40px), 1140px);
  margin: 0 auto;
  padding: 45px 56px 47px;
  border-radius: 18px;
  background: #f1f1f1;
}
.photos-block h2 {
  margin: 0;
  color: #173f73;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
}
.photos-rule {
  display: block;
  width: 146px;
  height: 3px;
  margin: 32px 0 38px;
  background: #b6b6b6;
}
.photos-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: -2px 0 38px;
}
.photos-tabs button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #173f73;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.photos-tabs button:hover,
.photos-tabs button:focus-visible,
.photos-tabs button.active { color: #0d58a6; }
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 50px;
}
.photos-gallery-item { min-width: 0; }
.photos-gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 309 / 205;
  border-radius: 14px;
  object-fit: cover;
}
.photos-block--event { padding-bottom: 80px; }
@media (max-width: 720px) {
  .photos-page > .hero { height: 173px; background-position: center; }
  .photos-page > .hero > div { transform: none; }
  .photos-page > .hero h1 { margin-bottom: 10px; font-size: 27px; }
  .photos-page > .hero p { font-size: 13px; }
  .photos-content { gap: 60px; padding: 58px 0 125px; }
  .photos-block {
    width: calc(100% - 34px);
    padding: 28px 22px 38px;
    border-radius: 12px;
  }
  .photos-block h2 { font-size: 25px; }
  .photos-rule { width: 98px; margin: 22px 0 28px; }
  .photos-tabs { gap: 22px; margin-bottom: 28px; }
  .photos-tabs button { font-size: 12px; }
  .photos-grid { grid-template-columns: 1fr; gap: 18px; }
  .photos-block--event { padding-bottom: 70px; }
}


/* Convenções - fidelidade visual */
.conventions-page { background: #f3f3f3; }
.conventions-page > .hero {
  min-height: 0;
  height: 340px;
  padding: 0;
  background-image: linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)), var(--hero-image);
  background-position: center, center -122px;
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
}
.conventions-page > .hero::before,
.conventions-page > .hero::after { display: none; }
.conventions-page > .hero > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-4px);
}
.conventions-page > .hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 35.2px;
  font-weight: 800;
  line-height: 42px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.conventions-content {
  padding: 63px 0 125px;
  background: #f3f3f3;
}
.conventions-documents,
.conventions-table-group {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
}
.conventions-heading { text-align: center; }
.conventions-heading h2 {
  margin: 0;
  color: #011a2f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.conventions-heading span {
  display: block;
  width: 156px;
  height: 3px;
  margin: 47px auto 0;
  background: #0b334b;
}
.conventions-heading--documents span { margin-top: 50px; }
.conventions-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 303px);
  justify-content: center;
  gap: 39px;
  margin-top: 75px;
}
.conventions-card {
  display: flex;
  width: 303px;
  height: 156px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px;
  border-radius: 20px;
  background: #011a2f;
  color: #fff;
}
.conventions-card h3 {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
}
.conventions-card a,
.conventions-card button {
  display: inline-flex;
  width: 130px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #078cff;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.conventions-card a:hover,
.conventions-card a:focus-visible,
.conventions-card button:hover,
.conventions-card button:focus-visible { background: #0075d6; }
body.modal-open {
  overflow: hidden;
}

.cct-modal[hidden] {
  display: none;
}

.cct-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.cct-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .74);
}

.cct-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 40px));
  min-height: 295px;
  padding: 62px 43px 66px;
  background: #00243b;
  color: #fff;
  box-shadow: 0 26px 55px rgba(0, 0, 0, .38);
  outline: none;
}

.cct-modal__close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #8f5f32;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.cct-modal__dialog h2 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.cct-modal__rule {
  display: block;
  height: 1px;
  margin: 42px auto 45px;
  background: #236481;
}

.cct-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cct-modal__actions a {
  display: inline-flex;
  min-width: 166px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #078cff;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.cct-modal__actions a:hover,
.cct-modal__actions a:focus-visible {
  background: #0075d6;
}
.conventions-table-group { margin-top: 144px; }
.conventions-table-group + .conventions-table-group { margin-top: 135px; }
.conventions-table-wrap { margin-top: 44px; overflow: visible; }
.conventions-table-wrap table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: #000;
  font-family: Arial, sans-serif;
  font-size: 14.4px;
  font-weight: 400;
  line-height: 14.4px;
}
.conventions-table-wrap th,
.conventions-table-wrap td {
  border: 0;
  padding: 20px 15px;
  text-align: left;
  vertical-align: middle;
}
.conventions-table-wrap th {
  height: 57px;
  background: #00162c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.conventions-table-wrap td { height: 54.4px; }
.conventions-table-wrap th:first-child,
.conventions-table-wrap td:first-child { width: 148px; }
.conventions-table-wrap tbody tr:nth-child(odd) td { background: #fff; }
.conventions-table-wrap tbody tr:nth-child(even) td { background: #dcdcdc; }
@media (max-width: 720px) {
  .conventions-page > .hero {
    height: 173px;
    background-position: center;
  }
  .conventions-page > .hero > div { transform: none; }
  .conventions-page > .hero h1 { font-size: 27px; line-height: 1.15; }
  .conventions-content { padding: 48px 0 90px; }
  .conventions-documents,
  .conventions-table-group { width: calc(100% - 35px); }
  .conventions-heading h2 { font-size: 25px; line-height: 1.15; }
  .conventions-heading span {
    width: 48px;
    height: 3px;
    margin-top: 28px;
  }
  .conventions-heading--documents span { margin-top: 28px; }
  .conventions-card-grid {
    grid-template-columns: 278px;
    gap: 18px;
    margin-top: 42px;
  }
  .conventions-card {
    width: 278px;
    height: 98px;
    padding: 18px 14px;
    border-radius: 13px;
  }
  .conventions-card h3 {
    margin-bottom: 11px;
    font-size: 13px;
    line-height: 13px;
  }
  .conventions-card a,
.conventions-card button {
    width: 112px;
    min-height: 31px;
    font-size: 12px;
  }
  .conventions-table-group { margin-top: 80px; }
  .conventions-table-group + .conventions-table-group { margin-top: 80px; }
  .conventions-table-wrap { margin-top: 34px; overflow: hidden; }
  .conventions-table-wrap table {
    table-layout: fixed;
    font-size: 12.5px;
    line-height: 1.12;
  }
  .conventions-table-wrap th,
  .conventions-table-wrap td { padding: 15px 14px; }
  .conventions-table-wrap th {
    height: 54px;
    font-size: 14px;
    line-height: 14px;
  }
  .conventions-table-wrap td { height: auto; }
  .conventions-table-wrap th:first-child,
  .conventions-table-wrap td:first-child { width: 78px; }
  .conventions-table-wrap td:nth-child(2),
  .conventions-table-wrap th:nth-child(2) { overflow-wrap: anywhere; }
}


/* Associados - fidelidade visual */
.associates-page { background: #fff; }
.associates-page > .hero {
  min-height: 0;
  height: 396px;
  padding: 0;
  background-image: linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)), var(--hero-image);
  background-position: center, center -116px;
  background-repeat: no-repeat;
  background-size: 100% 100%, cover;
}
.associates-page > .hero::before,
.associates-page > .hero::after { display: none; }
.associates-page > .hero > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-22px);
}
.associates-page > .hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 35.2px;
  font-weight: 800;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.associates-page .associates-directory {
  padding: 87px 0 86px;
  background: #fff;
}
.associates-page .associates-mirror-grid {
  display: flex;
  width: min(calc(100% - 40px), 1112px);
  max-width: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 75px 72px;
  margin: 0 auto;
}
.associates-page .associates-mirror-grid .assoc-card {
  display: flex;
  width: 318px;
  min-width: 318px;
  height: 399px;
  min-height: 399px;
  flex: 0 0 318px;
  flex-direction: column;
  align-items: stretch;
  padding: 56px 34px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #dbdbdb;
  box-shadow: none;
  color: #011a2f;
}
.associates-page .associates-mirror-grid .associate-logo {
  position: relative;
  width: 113px;
  height: 113px;
  min-height: 113px;
  margin: 0 auto 20px;
}
.associates-page .associates-mirror-grid .associate-logo img,
.associates-page .associates-mirror-grid .associate-logo .logo-fallback {
  width: 113px;
  height: 113px;
  margin: 0;
  border-radius: 50%;
}
.associates-page .associates-mirror-grid .associate-logo img {
  padding: 13px;
  object-fit: contain;
  background: #fff;
}
.associates-page .associates-mirror-grid .associate-logo .logo-fallback {
  color: transparent;
  background: transparent;
  font-size: 0;
}
.associates-page .associates-mirror-grid .assoc-card h3 {
  max-width: 250px;
  margin: 0 0 19px;
  color: #011a2f;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17.6px;
  font-weight: 600;
  line-height: 17.6px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.associates-page .associate-contact-list {
  display: grid;
  gap: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.associates-page .associate-contact-list li {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr);
  gap: 5px;
  align-items: start;
}
.associates-page .associate-contact-list li > span {
  display: flex;
  width: 13px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #011a2f;
}
.associates-page .associate-contact-list svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.associates-page .associate-contact-list p {
  max-width: none;
  margin: 0;
  color: #011a2f;
  font-family: Arial, sans-serif;
  font-size: 14.4px;
  font-weight: 500;
  line-height: 21.6px;
  overflow-wrap: anywhere;
}
@media (max-width: 900px) {
  .associates-page > .hero {
    height: 190px;
    background-position: center;
  }
  .associates-page > .hero > div { transform: none; }
  .associates-page > .hero h1 {
    max-width: 310px;
    font-size: 27px;
    line-height: 1.15;
  }
  .associates-page .associates-directory { padding: 52px 0 72px; }
  .associates-page .associates-mirror-grid {
    width: calc(100% - 34px);
    gap: 34px;
  }
  .associates-page .associates-mirror-grid .assoc-card {
    width: min(318px, 100%);
    min-width: 0;
    flex-basis: 318px;
  }
}


/* Noticias - fidelidade visual */
.news-page { background: #f2f2f2; }
.news-page > .hero {
  min-height: 0;
  height: 346px;
  padding: 0;
  background-image: linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)), var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news-page > .hero::before,
.news-page > .hero::after { display: none; }
.news-page > .hero > div {
  display: flex;
  min-height: 100%;
  transform: translateY(-27px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news-page > .hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 35.2px;
  font-weight: 800;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.news-page > .hero .breadcrumb { display: none; }
.news-page .news-directory {
  padding: 48px 0 76px;
  background: #f2f2f2;
}
.news-page .news-grid {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 30px;
  margin: 0 auto;
}
.news-page .news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 3px;
  color: #54595f;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}
.news-page .news-media {
  flex: 0 0 auto;
  overflow: hidden;
}
.news-page .news-media::after,
.news-page .post-pill { display: none; }
.news-page .news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.515 / 1;
  object-fit: cover;
}
.news-page .news-body {
  display: flex;
  min-height: 205px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px 30px 15px;
}
.news-page .news-card h3 {
  order: 1;
  min-height: 0;
  margin: 0 0 25px;
  color: #54595f;
  font-family: Roboto, Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
.news-page .news-card .read-more {
  order: 2;
  display: inline-block;
  align-self: flex-start;
  min-width: 0;
  min-height: 0;
  margin: 0 0 20px;
  padding: 0;
  border-radius: 0;
  color: #011a2f;
  background: transparent;
  box-shadow: none;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: none;
}
.news-page .news-card .read-more::after { content: " »"; }
.news-page .news-date {
  order: 3;
  margin: auto 0 0;
}
.news-page .news-card small {
  color: #adadad;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 12px;
  line-height: 15.6px;
}
@media (max-width: 900px) {
  .news-page > .hero { height: 190px; }
  .news-page > .hero > div { transform: none; }
  .news-page > .hero h1 { font-size: 27px; line-height: 1.15; }
  .news-page .news-directory { padding: 42px 0 64px; }
  .news-page .news-grid {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* Torne-se Associado - fidelidade visual */
.association-page { background: #f2f2f2; }
.association-page > .hero {
  min-height: 0;
  height: 346px;
  padding: 0;
  background-image: linear-gradient(rgba(1, 26, 47, .7), rgba(1, 26, 47, .7)), var(--hero-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.association-page > .hero::before,
.association-page > .hero::after { display: none; }
.association-page > .hero > div {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-27px);
}
.association-page > .hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 35.2px;
  font-weight: 800;
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}
.association-page > .hero .breadcrumb { display: none; }
.association-page .section-title {
  max-width: 1120px;
  margin: 0 auto 49px;
  text-align: center;
}
.association-page .section-title h2 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 27.2px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.association-page .section-title p {
  max-width: none;
  margin: 24px auto 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.association-page .section-title .rule {
  width: 112px;
  height: 3px;
  margin: 14px auto 0;
  background: #183052;
}
.association-benefits {
  min-height: 1026px;
  padding: 50px 0 61px;
  background: #f2f2f2;
}
.association-page .benefits-grid {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}
.association-page .benefit-card {
  display: flex;
  min-height: 391px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 34px;
  border-radius: 20px;
  color: #fff;
  background: #182f56;
  text-align: center;
}
.association-page .association-benefit-icon {
  display: grid;
  width: 54px;
  height: 54px;
  min-height: 54px;
  place-items: center;
  margin: 0 0 21px;
  color: #fff;
}
.association-page .association-benefit-icon svg {
  display: block;
  width: 50px;
  height: 50px;
  fill: currentColor;
}
.association-page .benefit-card h3 {
  max-width: 270px;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
}
.association-page .benefit-card p {
  max-width: 270px;
  margin: 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14.4px;
  font-weight: 400;
  line-height: 21.6px;
}
.association-partners {
  min-height: 892px;
  padding: 60px 0 75px;
  color: #fff;
  background: #182f56;
}
.association-partners .section-title {
  margin-bottom: 42px;
}
.association-partners .section-title h2,
.association-partners .section-title p { color: #fff; }
.association-partners .section-title .rule { background: #fff; }
.association-page .association-logo-grid {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 50px;
  margin: 0 auto;
}
.association-page .association-logo-grid .logo-card {
  display: grid;
  width: 100%;
  height: 145px;
  place-items: center;
  padding: 11px 34px;
  border-radius: 15px;
  background: #fff;
  box-shadow: none;
}
.association-page .association-logo-grid .logo-card img {
  width: 123px;
  height: 123px;
  max-height: none;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
}
.association-plans-section {
  min-height: 681px;
  padding: 76px 35px 126px;
  background: #f2f2f2;
}
.association-plans-section .section-title { margin-bottom: 55px; }
.association-plans-section .section-title .rule { display: none; }
.association-page .plans {
  display: grid;
  width: 100%;
  max-width: 1195px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}
.association-page .plan {
  display: flex;
  min-height: 327px;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 24px;
  border-radius: 20px;
  color: #fff;
  background: #011a2f;
}
.association-page .plan.highlight { background: #078df5; }
.association-page .association-plan-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  align-self: center;
  margin: 0 0 16px;
  border-radius: 50%;
  color: #011a2f;
  background: #fff;
}
.association-page .association-plan-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.association-page .plan h3 {
  width: 100%;
  margin: 0 0 24px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12.8px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: center;
}
.association-page .plan ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.association-page .plan li {
  position: relative;
  padding-left: 18px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
}
.association-page .plan li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.association-page .form-section {
  min-height: 890px;
  grid-template-columns: 54.67% 45.33%;
  color: #fff;
  background: #182f56;
}
.association-page .form-panel {
  padding: 76px;
}
.association-page .form-panel h2 {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 27.2px;
  font-weight: 800;
  line-height: 27.2px;
  text-transform: uppercase;
}
.association-page .form-panel form {
  display: grid;
  max-width: 540px;
  gap: 18px;
}
.association-page .form-field {
  display: grid;
  min-height: 72px;
  gap: 2px;
}
.association-page .form-field label {
  color: rgba(255,255,255,.82);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
}
.association-page .form-panel input:not([type="hidden"]) {
  width: 100%;
  height: 41px;
  padding: 10px 0 9px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
  border-radius: 0;
  color: #fff;
  background: transparent;
  font-size: 16px;
}
.association-page .form-panel .button {
  width: 259px;
  min-height: 40px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #0080ff;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
}
.association-page .form-status { min-height: 20px; }
.association-page .form-image {
  min-height: 890px;
  background-image: linear-gradient(rgba(0,17,31,.1), rgba(0,17,31,.1)), var(--form-image);
  background-position: center;
  background-size: cover;
}
@media (max-width: 900px) {
  .association-page > .hero { height: 190px; }
  .association-page > .hero > div { transform: none; }
  .association-page > .hero h1 { max-width: 340px; font-size: 27px; line-height: 1.15; }
  .association-benefits,
  .association-partners,
  .association-plans-section { min-height: 0; padding: 52px 17px 68px; }
  .association-page .section-title { margin-bottom: 36px; }
  .association-page .section-title h2 { font-size: 25px; line-height: 1.15; }
  .association-page .benefits-grid,
  .association-page .association-logo-grid,
  .association-page .plans { width: 100%; grid-template-columns: 1fr; gap: 24px; }
  .association-page .benefit-card { min-height: 0; padding: 34px 26px; }
  .association-page .association-logo-grid .logo-card { height: 145px; }
  .association-page .plan { min-height: 0; }
  .association-page .form-section { min-height: 0; grid-template-columns: 1fr; }
  .association-page .form-panel { padding: 52px 24px 64px; }
  .association-page .form-panel h2 { font-size: 25px; }
  .association-page .form-image { display: none; }
}


/* Torne-se Associado - refinamento de medidas */
.association-benefits { padding-top: 60px; }
.association-benefits .section-title { margin-bottom: 44px; }
.association-page .benefits-grid {
  width: min(calc(100% - 40px), 1097.625px);
  grid-template-columns: repeat(3, minmax(0, 337.625px));
  gap: 42.375px;
}
.association-page .benefit-card { min-height: 0; height: 391.21875px; }
.association-page .benefit-card:nth-child(n + 4) { height: 345.609375px; }
.association-partners .section-title { margin-bottom: 68px; }
.association-plans-section .section-title { margin-bottom: 79px; }
.association-page .form-field:nth-of-type(3) { margin-bottom: 24px; }
.association-page .form-panel input:not([type="hidden"]) { transform: translateY(-6px); }
.association-page .footer-top { min-height: 262px; }
.association-page .footer-bottom { min-height: 110px; }
@media (max-width: 900px) {
  .association-benefits { padding-top: 52px; }
  .association-benefits .section-title,
  .association-partners .section-title,
  .association-plans-section .section-title { margin-bottom: 36px; }
  .association-page .benefits-grid { width: 100%; grid-template-columns: 1fr; gap: 24px; }
  .association-page .benefit-card,
  .association-page .benefit-card:nth-child(n + 4) { height: auto; min-height: 0; }
  .association-page .form-field:nth-of-type(3) { margin-bottom: 16px; }
  .association-page .footer-top,
  .association-page .footer-bottom { min-height: 0; }
}

/* News article detail pages */
.article-page {
  background: #fff;
}
.article-hero {
  min-height: 385px;
  display: grid;
  place-items: center;
  padding: 92px 20px 70px;
  color: #fff;
  background: #243f52;
}
.article-hero__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}
.article-hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}
.article-hero__date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 22px 0 0;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.article-main {
  padding: 58px 0 76px;
  background: #fff;
}
.article-main__inner {
  width: min(1110px, calc(100% - 40px));
  margin: 0 auto;
}
.article-featured-image {
  display: block;
  width: auto;
  max-width: min(680px, 100%);
  height: auto;
  margin: 0 0 24px;
  object-fit: contain;
}
.article-body {
  max-width: 1110px;
  color: #8a8f96;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}
.article-body p {
  margin: 0 0 18px;
}
.article-category {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #7c828a;
  font-size: 13px;
}
.article-category::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #caa2b5;
}
.article-category span {
  color: #8a8f96;
}
.article-related {
  padding: 46px 0 86px;
  background: #f2f2f2;
}
.article-related .section-title {
  margin-bottom: 56px;
  text-align: center;
}
.article-related .section-title h2 {
  margin: 0;
  color: #001f33;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.article-related .section-title .rule {
  display: block;
  width: 102px;
  height: 3px;
  margin: 30px auto 0;
  background: #001f33;
}
.article-related .news-grid {
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px 30px;
  margin: 0 auto;
}
.article-related .news-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border-radius: 3px;
  color: #54595f;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}
.article-related .news-media::after,
.article-related .post-pill {
  display: none;
}
.article-related .news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.515 / 1;
  object-fit: cover;
}
.article-related .news-body {
  display: flex;
  min-height: 205px;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px 30px 15px;
}
.article-related .news-date {
  order: 3;
  margin: auto 0 0;
}
.article-related .news-card h3 {
  order: 1;
  margin: 0 0 25px;
  color: #54595f;
  font-family: Roboto, Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}
.article-related .read-more {
  order: 2;
  display: inline-block;
  align-self: flex-start;
  min-height: 0;
  margin: 0 0 20px;
  padding: 0;
  color: #011a2f;
  background: transparent;
  box-shadow: none;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: none;
}
.article-related .read-more::after {
  content: " »";
}
.article-related .news-card small {
  color: #adadad;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 12px;
  line-height: 15.6px;
}
@media (max-width: 900px) {
  .article-hero {
    min-height: 260px;
    padding: 70px 20px 48px;
  }
  .article-hero h1 {
    font-size: 25px;
  }
  .article-main {
    padding: 42px 0 56px;
  }
  .article-body {
    font-size: 13.5px;
  }
  .article-related .news-grid {
    width: calc(100% - 34px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-related .section-title h2 {
    font-size: 27px;
  }
}