/* Shared header/footer design copied from the supplied homepage. */
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-950);
}
.skip-link:focus { top: 16px; }
.announcement {
  position: relative;
  z-index: 80;
  color: #fff;
  background: linear-gradient(90deg, var(--orange-800), var(--orange-700));
}
.announcement__inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 40px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  white-space: nowrap;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(221,232,241,.85);
  backdrop-filter: blur(18px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(11,47,80,.07); background: rgba(255,255,255,.96); }
.nav-wrap {
  width: min(calc(100% - 40px), var(--container));
  min-height: 80px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.main-nav a {
  position: relative;
  color: #516176;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease;
}
.main-nav a span { color: #8793a2; font-size: 11px; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange-700);
  transition: right .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active { color: var(--blue-800); }
.main-nav a:hover::after,
.main-nav a.is-active::after { right: 0; }
.menu-toggle { display: none; }
.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(16,131,141,.30), transparent 28%),
    linear-gradient(135deg, #154f7a, #0d3457);
}
.footer-grid { padding-block: 68px 46px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 52px; }
.footer-brand img {
  display: block;
  width: 225px;
  height: auto !important;
  max-height: 72px;
  aspect-ratio: 419 / 132;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.16));
}
.footer-brand p { margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column h3 { margin: 0 0 10px; color: #fff; font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.84); font-size: 14px; font-weight: 700; transition: color .18s ease; }
.footer-column a:hover { color: #fff; }
.social-links { display: flex; gap: 11px; margin-top: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 24px rgba(1,28,51,.22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.social-link svg {
  display: block;
  width: 21px;
  height: 21px;
  overflow: hidden;
}
.social-link--facebook { background: #1877f2; }
.social-link--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 8%, #fd5949 42%, #d6249f 62%, #285aeb 92%);
}
.social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 30px rgba(1,28,51,.30);
  filter: saturate(1.08);
}
.footer-bottom { min-height: 70px; display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.48); font-size: 13px; }
@media (max-width: 1100px) {
.main-nav { gap: 15px; }
.main-nav a { font-size: 13px; }
}
@media (max-width: 920px) {
.nav-wrap { min-height: 72px; flex-wrap: wrap; padding-block: 10px; }
.brand img { width: 190px; }
.menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--blue-800);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }
.menu-toggle__icon { width: 18px; display: grid; gap: 3px; }
.menu-toggle__icon i { height: 2px; border-radius: 99px; background: currentColor; }
.main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    transition: max-height .28s ease, padding .28s ease;
  }
.main-nav.is-open { max-height: 560px; padding-block: 8px 12px; }
.main-nav a { padding: 11px 12px; border-radius: 10px; background: var(--soft); }
.main-nav a::after { display: none; }
.footer-grid { grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
.nav-wrap,
.announcement__inner { width: min(calc(100% - 28px), var(--container)); }
.announcement__inner { min-height: 52px; justify-content: space-between; text-align: left; font-size: 11px; }
.announcement__inner span { max-width: 75%; }
.announcement a { font-size: 11px; }
.brand img { width: 166px; }
.main-nav { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; gap: 34px; }
.footer-brand { grid-column: auto; }
}
.announcement {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 0%, rgba(66,205,209,.24), transparent 32%),
    linear-gradient(90deg, #0a3558 0%, #104d78 58%, #0a6470 100%);
}
.announcement__inner {
  width: min(calc(100% - 32px), 1280px);
  min-height: 36px;
  justify-content: space-between;
  gap: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: -.01em;
}
.announcement__message { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); }
.announcement__message i { width: 7px; height: 7px; border-radius: 50%; background: #ff934b; box-shadow: 0 0 0 5px rgba(255,147,75,.15); }
.announcement a {
  gap: 7px;
  padding: 5px 10px 5px 12px;
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.09);
  font-size: 10.5px;
  font-weight: 800;
  transition: background .18s ease, transform .18s ease;
}
.announcement a:hover { background: rgba(255,255,255,.16); transform: translateX(2px); }
.announcement a svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-header {
  top: 0;
  padding: 10px 0;
  border: 0;
  background: rgba(236,245,250,.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { padding: 7px 0; background: rgba(236,245,250,.88); box-shadow: 0 14px 34px rgba(11,47,80,.08); }
.nav-wrap {
  width: min(calc(100% - 32px), 1280px);
  min-height: 66px;
  padding: 7px 9px 7px 15px;
  gap: 20px;
  border: 1px solid rgba(147,177,198,.35);
  border-radius: 21px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(11,47,80,.09), inset 0 1px 0 rgba(255,255,255,.95);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand__logo {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px 4px 0;
  border-radius: 14px;
  transition: transform .2s ease, filter .2s ease;
}
.brand:hover .brand__logo { transform: translateY(-1px); filter: saturate(1.08); }
.brand img { width: 186px; max-height: 52px; object-fit: contain; object-position: left center; }
.main-nav {
  position: relative;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(166,189,205,.25);
  border-radius: 16px;
  background: rgba(238,245,249,.78);
  font-family: "Manrope", sans-serif;
}
.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 10px;
  overflow: hidden;
  border-radius: 12px;
  color: #496075;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.018em;
  transition: color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.main-nav a span:not(.nav-label) { color: #8798a8; font-size: 9.5px; font-weight: 750; }
.main-nav a::after { display: none; }
.main-nav a:hover { color: #155b91; background: rgba(255,255,255,.72); transform: translateY(-1px); }
.main-nav a.is-active { color: #155b91; background: #fff; box-shadow: 0 7px 18px rgba(11,47,80,.09), inset 0 0 0 1px rgba(21,91,145,.07); }
.main-nav a.nav-community {
  color: #086a73;
  border: 1px solid rgba(15, 125, 135, .34);
  background: rgba(236, 250, 249, .74);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}
.main-nav a.nav-community::before { display: none; }
.main-nav a.nav-community::after { display: none; }
.main-nav a.nav-community:hover {
  color: #075c64;
  border-color: rgba(15,125,135,.52);
  background: rgba(231,248,247,.95);
  box-shadow: 0 7px 18px rgba(10,120,128,.08), inset 0 0 0 1px rgba(255,255,255,.72);
}
.main-nav a.nav-community.is-active {
  color: #075c64;
  border-color: rgba(15,125,135,.58);
  background: #f2fbfa;
  box-shadow: 0 7px 18px rgba(10,120,128,.08), inset 0 0 0 1px rgba(255,255,255,.85);
}
.menu-toggle {
  min-height: 43px;
  padding: 9px 13px;
  border: 1px solid rgba(21,91,145,.13);
  border-radius: 13px;
  color: #155b91;
  background: #fff;
  box-shadow: 0 7px 18px rgba(11,47,80,.08);
  font-family: "Manrope", sans-serif;
}
.menu-toggle__icon i { background: currentColor; }
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(40,196,201,.20), transparent 28%),
    radial-gradient(circle at 10% 100%, rgba(198,84,28,.20), transparent 30%),
    linear-gradient(145deg, #092a48 0%, #0e3f65 52%, #07545f 100%);
  font-family: "Manrope", sans-serif;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 78%, transparent);
}
.footer-web-cta {
  position: relative;
  z-index: 1;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 11px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.58);
}
.footer-web-cta__copy { min-width: 0; }
.footer-web-cta__eyebrow,
.footer-web-cta p { display: none; }
.footer-web-cta h2 {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 11.5px;
  line-height: 1.35;
  letter-spacing: -.01em;
  font-weight: 650;
}
.footer-web-cta__button {
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,.74);
  background: transparent;
  box-shadow: none;
  font-size: 11.5px;
  font-weight: 750;
  white-space: nowrap;
  transition: color .18s ease, transform .18s ease;
}
.footer-web-cta__button:hover {
  color: #fff;
  transform: translateX(2px);
  box-shadow: none;
}
.footer-web-cta__button svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-grid {
  position: relative;
  z-index: 1;
  padding-block: 46px 42px;
  grid-template-columns: 1.35fr .78fr .72fr .9fr;
  gap: 48px;
}
.footer-brand__logo { display: inline-flex; padding: 8px 11px 8px 0; }
.footer-brand img { width: 212px; max-height: 66px; }
.footer-brand p { max-width: 430px; margin: 19px 0 0; color: rgba(255,255,255,.79); font-size: 14px; line-height: 1.62; font-weight: 550; }
.footer-address { margin-top: 17px; color: rgba(255,255,255,.51); font-size: 12px; line-height: 1.65; }
.footer-column { gap: 10px; }
.footer-column h3 {
  margin: 0 0 12px;
  color: #71d8da;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}
.footer-column a,
.footer-link-pending {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.78);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
  transition: color .18s ease, transform .18s ease;
}
.footer-column a span { color: rgba(255,255,255,.42); font-size: 10px; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-community-link { color: #88ebea !important; }
.footer-link-pending { cursor: default; }
.footer-link-pending small { padding: 3px 6px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.43); font-size: 8px; font-style: normal; text-transform: uppercase; letter-spacing: .08em; }
.social-links { margin-top: 15px; }
.social-link { width: 39px; height: 39px; border-radius: 12px; }
.social-link svg { width: 19px; height: 19px; }
.footer-bottom {
  position: relative;
  z-index: 1;
  min-height: 68px;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.43);
  font-size: 11.5px;
}
.footer-bottom__meta { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom__meta a { color: rgba(255,255,255,.65); font-weight: 700; transition: color .18s ease; }
.footer-bottom__meta a:hover { color:#fff; }
@media (max-width: 1180px) {
.nav-wrap { gap: 12px; }
.brand img { width: 168px; }
.main-nav a { padding-inline: 8px; font-size: 11px; }
}
@media (max-width: 1080px) {
.nav-wrap { min-height: 64px; flex-wrap: wrap; padding: 7px 8px 7px 13px; }
.menu-toggle { display: inline-flex; align-items: center; gap: 10px; }
.main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    transition: max-height .3s ease, padding .3s ease;
  }
.main-nav.is-open { max-height: 680px; padding-block: 8px 4px; }
.main-nav a { min-height: 47px; justify-content: flex-start; padding: 11px 13px; border: 1px solid rgba(166,189,205,.24); background: rgba(243,248,251,.92); }
.main-nav a.is-active { background:#fff; }
.footer-grid { grid-template-columns: 1.25fr 1fr 1fr; }
.footer-column--contact { grid-column: 2 / -1; }
}
@media (max-width: 760px) {
.announcement__inner { min-height: 42px; }
.announcement__message { max-width: 70%; font-size: 10px; line-height: 1.35; }
.announcement a span { display:none; }
.announcement a { width: 34px; height: 30px; padding: 0; justify-content:center; }
.site-header { padding: 7px 0; }
.nav-wrap { width: min(calc(100% - 22px),1280px); border-radius: 18px; }
.brand img { width: 157px; }
.footer-web-cta { min-height: 50px; flex-direction: row; gap: 14px; padding-block: 10px; }
.footer-web-cta__button { width: auto; }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 28px; }
.footer-brand { grid-column: 1 / -1; }
.footer-column--contact { grid-column: auto; }
.footer-bottom { align-items: flex-start; flex-direction: column; justify-content:center; padding-block: 18px; }
}
@media (max-width: 520px) {
.main-nav { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
.footer-brand { grid-column:auto; }
.footer-web-cta { align-items: flex-start; flex-direction: column; gap: 2px; padding-block: 10px 12px; }
.footer-web-cta h2 { font-size: 11px; }
.footer-bottom__meta { flex-wrap: wrap; }
}
.footer-whatsapp {
  white-space: nowrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}
.social-link svg {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin: 0;
  overflow: visible;
}
.social-link--facebook svg {
  width: 25.5px;
  height: 25.5px;
  flex-basis: 25.5px;
}
.social-link--instagram svg {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
}
@media (max-width: 520px) {
.footer-whatsapp {
    white-space: normal;
  }
}
.social-links {
  align-items: center;
  gap: 13px;
  margin-top: 13px;
}
.social-link,
.social-link--facebook,
.social-link--instagram {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  isolation: isolate;
  transition:
    transform .18s ease,
    filter .18s ease,
    opacity .18s ease;
}
.social-link--facebook {
  color: #2f8cf4;
}
.social-link--facebook svg {
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  filter: drop-shadow(0 5px 10px rgba(24, 119, 242, .22));
}
.social-link--instagram {
  color: transparent;
}
.social-link--instagram svg {
  position: absolute;
  width: 31px;
  height: 31px;
  opacity: 0;
  pointer-events: none;
}
.social-link--instagram::before {
  content: "";
  width: 31px;
  height: 31px;
  display: block;
  background:
    radial-gradient(circle at 30% 107%, #ffd36b 0 18%, #ff6b45 40%, #d93691 63%, #7557e8 82%, #3978f6 100%);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 1.5a1.35 1.35 0 1 1 0 2.7 1.35 1.35 0 0 1 0-2.7ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm8.7 1.5a1.35 1.35 0 1 1 0 2.7 1.35 1.35 0 0 1 0-2.7ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 5px 10px rgba(217, 54, 145, .20));
}
.social-link:hover {
  transform: translateY(-2px) scale(1.09);
  box-shadow: none;
  filter: saturate(1.12) brightness(1.06);
}
.social-link:active {
  transform: translateY(0) scale(.98);
}
.social-link:focus-visible {
  outline: 2px solid rgba(116, 229, 232, .95);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
.social-link {
    transition: none;
  }
}
.home-page .nav-wrap { position: relative; }

/* Explicit base rules keep the shell equal on pages with embedded legacy CSS. */
.site-footer > .container { width: min(calc(100% - 40px), 1180px); margin-inline: auto; }
.site-header .nav-label { color: inherit; }
.site-header a:focus-visible, .site-header button:focus-visible,
.site-footer a:focus-visible, .announcement a:focus-visible {
  outline: 3px solid #b9531c; outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .site-header, .site-header *, .site-footer *, .announcement * {
    transition-duration: .01ms !important; animation-duration: .01ms !important;
  }
}
