*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #353F7C;
  --magenta: #982263;
  --coral: #F76043;
  --gold: #FDA749;
  --teal: #3C9BA5;
  --offwhite: #E1EAF9;
  --white: #FFFFFF;
  --text: #1a1a2e;
  --muted: #5a6a8a;
  --dark: #20264b;
  --page-shell: 1120px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  background: var(--gold);
  color: var(--dark);
  padding: .7rem 1rem;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(53, 63, 124, .97);
  backdrop-filter: blur(10px);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(from 160deg, var(--teal), var(--navy), var(--magenta), var(--coral), var(--gold), var(--teal));
  color: white;
  font-weight: 900;
  font-size: .82rem;
  text-decoration: none;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  width: 150px;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}
.nav-toggle {
  display: none;
  appearance: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition: transform .18s, opacity .18s;
}
.site-nav.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: .4rem 1.1rem;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: min(830px, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(32,38,75,.22), rgba(32,38,75,.8)),
    url("images/01-hero-bg-original.webp");
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(225,234,249,.24), transparent 58%),
    linear-gradient(transparent, rgba(32,38,75,.58));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 6rem 2rem 4rem;
}
.hero-logo {
  width: 400px;
  max-width: 85vw;
  margin: 0 auto 2.5rem;
  height: auto;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}
.hero-heading em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; min-width: 90px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .7rem;
  font-weight: 500;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary,
.btn-secondary {
  padding: .8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  display: inline-block;
  transition: transform .15s, background .2s, color .2s, border-color .2s;
}
.btn-primary { background: var(--coral); color: white; }
.btn-primary:hover { background: #d94f36; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.section-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .8rem;
}
.section-desc {
  line-height: 1.75;
  font-size: .95rem;
  margin-bottom: 3rem;
}

.section-sobre { background: var(--offwhite); padding: 6rem 6vw; }
.sobre-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 4rem;
  align-items: center;
}
.sobre-inner .section-label { color: var(--magenta); }
.sobre-inner .section-title { color: var(--navy); }
.sobre-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: .96rem;
  margin-bottom: 1.1rem;
}
.sobre-grid-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  border-radius: 12px;
  overflow: hidden;
}
.sobre-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.sobre-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sobre-grid-item:hover img { transform: scale(1.06); }
.sobre-grid-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(53,63,124,.74));
  color: rgba(255,255,255,.88);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem .7rem .45rem;
}

.section-informativo {
  background: var(--navy);
  padding: 3rem 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.informativo-label {
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.informativo-badge {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: white;
  padding: .5rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
}
.informativo-badge.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.section-news,
.section-pubs { background: var(--white); padding: 6rem 6vw; }
.section-pubs {
  position: relative;
  overflow: hidden;
  padding-bottom: 7.4rem;
}
.section-pubs::after {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 0;
  height: 76px;
  pointer-events: none;
  background: var(--offwhite);
  clip-path: polygon(0 50%, 4% 42%, 8% 46%, 12% 38%, 16% 52%, 21% 45%, 26% 56%, 31% 48%, 36% 40%, 41% 47%, 46% 39%, 51% 52%, 56% 44%, 61% 36%, 66% 42%, 71% 39%, 76% 49%, 81% 43%, 86% 54%, 91% 41%, 96% 47%, 100% 43%, 100% 100%, 0 100%);
}
.news-inner,
.pubs-inner,
.blog-inner,
.eixos-inner,
.equipe-inner,
.parceiros-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pubs-inner {
  position: relative;
  z-index: 1;
}
.news-inner { max-width: 1280px; }
.news-inner .section-label { color: var(--coral); }
.news-inner .section-title,
.pubs-header .section-title,
.blog-header .section-title,
.parceiros-inner .section-title { color: var(--navy); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, .95fr);
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.news-card {
  background: #f3f5fb;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(53,63,124,.12); }
.news-card-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.news-card-img {
  height: 170px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.news-card-img.card-rodolitos {
  background:
    radial-gradient(circle at 16% 20%, rgba(253, 167, 73, .55), transparent 5.5rem),
    radial-gradient(circle at 84% 30%, rgba(60, 155, 165, .45), transparent 6.5rem),
    linear-gradient(135deg, #111a44 0%, #353F7C 48%, #3C9BA5 100%);
}
.news-card-img.card-arvoredo {
  background-image:
    linear-gradient(rgba(32,38,75,.08), rgba(32,38,75,.1)),
    url("images/blog-arvoredo/destaque-ilha-arvoredo-expedicao.webp");
}
.news-card-img.card-joao-pessoa {
  background-image:
    linear-gradient(rgba(32,38,75,.1), rgba(32,38,75,.14)),
    url("images/blog-joao-pessoa/mergulhadores-rodolitos-joao-pessoa.webp");
}
.news-date,
.news-tag {
  position: absolute;
  top: .9rem;
  font-size: clamp(.66rem, .72vw, .78rem);
  font-weight: 800;
  line-height: 1;
  padding: .42rem clamp(.5rem, .7vw, .72rem);
  border-radius: 4px;
}
.news-date { left: .9rem; background: rgba(15,27,71,.78); color: white; }
.news-tag {
  right: .9rem;
  background: var(--coral);
  color: white;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.news-body { padding: 1.35rem 1.45rem 1.5rem; }
.news-source {
  font-size: .88rem;
  color: #687694;
  font-weight: 700;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}
.news-title { font-size: 1.08rem; font-weight: 800; color: var(--navy); line-height: 1.32; }
.news-link,
.blog-read-more {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
}
.news-cta-card {
  min-height: 100%;
  border-radius: 12px;
  background: #101b4d;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.news-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.18;
  margin-bottom: 1.5rem;
}
.news-cta-card p {
  color: rgba(225,234,249,.68);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
  max-width: 260px;
  margin-bottom: 2rem;
}
.news-cta-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  min-height: 52px;
  padding: .8rem 1.3rem;
  border-radius: 4px;
  background: var(--coral);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.news-cta-link:hover {
  background: #df5436;
  transform: translateY(-2px);
}

.section-eixos,
.section-equipe {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 6rem 6vw 7.6rem;
}
.projeto-eixos {
  padding-left: 2.2vw;
  padding-right: 2.2vw;
}
.projeto-eixos .eixos-inner {
  max-width: 1280px;
}
.section-equipe { overflow: visible; }
.section-eixos::after,
.section-equipe::after {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  bottom: 0;
  height: 92px;
  pointer-events: none;
  background: #121d50;
  opacity: .42;
  clip-path: polygon(0 44%, 3% 39%, 6% 42%, 9% 35%, 12% 48%, 16% 43%, 20% 55%, 24% 48%, 28% 41%, 32% 46%, 36% 35%, 40% 38%, 45% 50%, 49% 54%, 53% 44%, 57% 36%, 61% 40%, 65% 36%, 69% 39%, 73% 47%, 77% 42%, 81% 51%, 85% 39%, 89% 44%, 93% 38%, 97% 47%, 100% 42%, 100% 100%, 0 100%);
}
.section-equipe::before {
  content: "";
  position: absolute;
  left: -2vw;
  right: -2vw;
  top: -82px;
  height: 82px;
  pointer-events: none;
  background: var(--navy);
  clip-path: polygon(0 42%, 3% 48%, 7% 38%, 11% 45%, 16% 53%, 21% 42%, 26% 48%, 31% 37%, 36% 44%, 41% 52%, 46% 41%, 51% 49%, 56% 39%, 61% 46%, 66% 54%, 71% 43%, 76% 51%, 80% 37%, 84% 45%, 88% 39%, 92% 50%, 96% 42%, 100% 48%, 100% 100%, 0 100%);
}
.eixos-inner,
.equipe-inner {
  position: relative;
  z-index: 1;
}
.eixos-inner .section-label,
.equipe-inner .section-label { color: var(--gold); text-align: center; }
.eixos-inner .section-title,
.equipe-inner .section-title { color: white; text-align: center; }
.eixos-inner .section-desc,
.equipe-inner .section-desc {
  color: rgba(255,255,255,.58);
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.eixos-grid { display: flex; flex-direction: column; gap: .8rem; }
.eixo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
  scroll-margin-top: 92px;
  transition: background .25s;
}
.eixo-card:hover { background: rgba(255,255,255,.08); }
.eixo-card-eixo2 {
  --eixo-accent: #982263;
  --eixo-panel-bg: #d3a9bf;
  --eixo-prefix: "Eixo 2 • ";
}
.eixo-card-eixo3 {
  --eixo-accent: #353f7c;
  --eixo-panel-bg: #b8bfe8;
  --eixo-prefix: "Eixo 3 • ";
}
.eixo-card-eixo4 {
  --eixo-accent: #e7a95e;
  --eixo-panel-bg: #f8dbb9;
  --eixo-prefix: "Eixo 4 • ";
}
.eixo-card-feature.open {
  border: 0;
  border-radius: 34px;
  background: var(--eixo-accent, #d76652);
}
.eixo-card-feature.open:hover { background: var(--eixo-accent, #d76652); }
.eixo-header {
  width: 100%;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem 1.6rem 1.2rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.eixo-card-feature.open .eixo-header {
  padding: 1.2rem 1.6rem;
  background: var(--eixo-accent, #d76652);
}
.eixo-meta { flex: 1; }
.eixo-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 50%;
  background: white;
  padding: 6px;
  overflow: hidden;
}
.eixo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.eixo-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .3rem;
  color: var(--gold);
}
.eixo-card-feature.open .eixo-num { display: none; }
.eixo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: white;
  line-height: 1.3;
}
.eixo-card-feature.open .eixo-title {
  font-size: clamp(1.2rem, 2.45vw, 1.72rem);
}
.eixo-card-feature.open .eixo-title::before {
  content: var(--eixo-prefix, "Eixo 1 • ");
}
.eixo-toggle {
  color: rgba(255,255,255,.5);
  font-size: 1.2rem;
  transition: transform .3s;
  flex-shrink: 0;
}
.eixo-card.open .eixo-toggle { transform: rotate(180deg); }
.eixo-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  transition: max-height .4s ease, padding .3s ease;
}
.eixo-card.open .eixo-body {
  max-height: 380px;
  padding: 0 1.6rem 1.6rem;
}
.eixo-card-feature.open .eixo-body {
  max-height: 2700px;
  padding: 0;
}
.eixo-coords {
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 0 0 .9rem;
}
.eixo-summary {
  max-width: 980px;
  color: rgba(255,255,255,.78);
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.62;
  margin: 0 0 1.3rem;
}
.eixo-feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: clamp(287px, 31.5%, 326px) minmax(0, 1fr);
  min-height: 620px;
  overflow: hidden;
  background: var(--eixo-panel-bg, #f7cac2);
  border-radius: 0 0 34px 34px;
}
.eixo-card-gallery .eixo-feature-panel {
  border-radius: 0;
}
.eixo-gallery {
  background: var(--offwhite);
  padding: clamp(2.3rem, 4.5vw, 4rem) clamp(1.5rem, 4vw, 3.2rem) clamp(2.6rem, 5vw, 4.6rem);
  border-radius: 0 0 34px 34px;
}
.eixo-gallery h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.35vw, 2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: clamp(1.5rem, 3vw, 2.3rem);
}
.eixo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.4vw, 1.25rem);
}
.eixo-gallery figure {
  aspect-ratio: 4 / 3;
  border-radius: 7px;
  overflow: hidden;
  background: #cbd8ef;
}
.eixo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eixo-feature-panel-text {
  grid-template-columns: minmax(0, 1fr);
  min-height: auto;
}
.eixo-feature-panel-text .eixo-feature-content {
  padding: 2rem clamp(3rem, 8vw, 7rem) 2.5rem;
}
.eixo-feature-panel-eixo2 {
  grid-template-columns: clamp(287px, 31.5%, 326px) minmax(0, 1fr);
}
.eixo-feature-panel-eixo2 .eixo-feature-content {
  padding-bottom: clamp(18rem, 34vw, 28rem);
}
.eixo-feature-panel-eixo3 {
  grid-template-columns: clamp(287px, 31.5%, 326px) minmax(0, 1fr);
  min-height: 560px;
}
.eixo-feature-panel-eixo3 .eixo-feature-content {
  padding: 2.2rem clamp(6rem, 12vw, 10rem) 1.4rem clamp(2rem, 5vw, 4rem);
}
.eixo-feature-panel-eixo3 .eixo-objective-block {
  max-width: 880px;
}
.eixo-feature-panel-eixo4 {
  grid-template-columns: clamp(287px, 31.5%, 326px) minmax(0, 1fr);
  min-height: 620px;
}
.eixo-feature-panel-eixo4 .eixo-feature-content {
  padding: 2rem clamp(8rem, 17vw, 14rem) 2.5rem clamp(2rem, 5vw, 4rem);
}
.eixo-feature-panel-eixo4 .eixo-objective-block {
  max-width: 780px;
}
.eixo-feature-content {
  position: relative;
  z-index: 1;
  padding: 1.35rem clamp(5.5rem, 10vw, 9rem) 2rem 1.35rem;
  color: #111;
}
.eixo-feature-content .eixo-summary {
  border: 0;
  color: rgba(44, 22, 18, .56);
  padding: 0;
  margin-bottom: .5rem;
}
.eixo-feature-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.45vw, 1.72rem);
  color: var(--eixo-accent, var(--coral));
  line-height: 1.1;
  text-align: left;
  margin-bottom: 1rem;
}
.eixo-objective-block {
  margin-top: 1rem;
  max-width: 690px;
}
.eixo-objective-block h5 {
  color: var(--eixo-accent, var(--coral));
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.25;
  margin-bottom: .35rem;
}
.eixo-objective-block li {
  color: #111;
  font-size: clamp(.86rem, 1.25vw, .96rem);
  line-height: 1.45;
}
.eixo-numbered-list {
  list-style: none;
  margin-left: 1.5rem;
}
.eixo-numbered-list ul {
  list-style: "▪  ";
  margin-left: 1.55rem;
  margin-top: .2rem;
}
.eixo-map {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--eixo-panel-bg, #f7cac2);
}
.eixo-map img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: left top;
  display: block;
}
.map-legend {
  position: absolute;
  left: 2rem;
  bottom: 2.2rem;
  display: flex;
  gap: .6rem;
  align-items: center;
  color: rgba(44,22,18,.74);
  font-size: .95rem;
}
.map-legend span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  border: 1.5px solid rgba(255,255,255,.9);
}
.eixo-side-art {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(27vw, 285px);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  opacity: .9;
}
.eixo-bottom-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  max-height: 66%;
  object-fit: cover;
  object-position: center bottom;
  opacity: .86;
}
.eixo3-art {
  position: absolute;
  z-index: -1;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
.eixo3-art-carbono {
  top: 2rem;
  right: 1rem;
  width: min(22vw, 260px);
  opacity: .72;
}
.eixo3-art-pesca {
  right: 1.75rem;
  bottom: 2.375rem;
  width: min(13vw, 150px);
  opacity: .76;
}
.eixo4-art {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(25vw, 255px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  opacity: .82;
  pointer-events: none;
}
.eixo-objectives {
  list-style: none;
  margin: 1rem 0 1.2rem;
}
.eixo-objectives li {
  display: flex;
  gap: .6rem;
  align-items: baseline;
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.eixo-objectives li::before {
  content: "→";
  color: rgba(255,255,255,.28);
  flex-shrink: 0;
}
.eixo-card-cta {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  padding: .45rem 1.1rem;
  border-radius: 4px;
}

.pubs-header,
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.pubs-header { margin-bottom: 1.4rem; }
.blog-header { margin-bottom: 3rem; }
.pubs-header .section-label { color: var(--magenta); }
.pubs-list { border-top: 2px solid var(--navy); }
.pub-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid #d2d8ec;
}
.pub-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
}
.pub-title { font-size: .9rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: .25rem; }
.pub-title a,
.pub-title a:hover {
  color: inherit;
  text-decoration: none;
}
.pub-journal { font-size: .78rem; color: var(--muted); }
.pub-link {
  color: var(--magenta);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  border: 1.5px solid var(--magenta);
  padding: .3rem .85rem;
  border-radius: 3px;
  transition: background .2s, color .2s, transform .15s;
}
.pub-link:hover {
  background: var(--magenta);
  color: white;
  transform: translateY(-1px);
}

.section-blog { background: var(--offwhite); padding: 6rem 6vw; }
.blog-header .section-label { color: var(--coral); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  display: block;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(53,63,124,.08);
  transition: transform .2s, box-shadow .2s;
  color: inherit;
  text-decoration: none;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(53,63,124,.13); }
.blog-img {
  height: 190px;
  position: relative;
  background:
    radial-gradient(circle at 28% 30%, rgba(253,167,73,.5), transparent 6rem),
    linear-gradient(135deg, var(--navy), var(--teal));
}
.blog-img.c2 { background: linear-gradient(135deg, var(--magenta), var(--coral)); }
.blog-img.c3 { background: linear-gradient(135deg, #7a2800, var(--gold)); }
.blog-img.blog-arvoredo,
.blog-img.blog-joao-pessoa {
  background-size: cover;
  background-position: center;
}
.blog-img.blog-rodolitos {
  background:
    radial-gradient(circle at 20% 24%, rgba(253, 167, 73, .52), transparent 6rem),
    radial-gradient(circle at 78% 28%, rgba(60, 155, 165, .42), transparent 7rem),
    linear-gradient(135deg, #111a44 0%, #353F7C 48%, #3C9BA5 100%);
}
.blog-img.blog-arvoredo {
  background-image:
    linear-gradient(rgba(32,38,75,.08), rgba(32,38,75,.18)),
    url("images/blog-arvoredo/destaque-ilha-arvoredo-expedicao.webp");
}
.blog-img.blog-joao-pessoa {
  background-image:
    linear-gradient(rgba(32,38,75,.08), rgba(32,38,75,.18)),
    url("images/blog-joao-pessoa/mergulhadores-rodolitos-joao-pessoa.webp");
}
.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 3px;
}
.blog-body { padding: 1.4rem; }
.blog-date { font-size: .73rem; color: var(--muted); margin-bottom: .5rem; }
.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: .6rem;
}
.blog-card-text { font-size: .82rem; color: var(--muted); line-height: 1.6; }

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.membro-card {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.membro-avatar {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  margin: 0 auto .9rem;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  color: rgba(255,255,255,.6);
  border: 3px solid var(--gold);
  overflow: hidden;
}
.membro-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.membro-card.e1 .membro-avatar { border-color: var(--coral); }
.membro-card.e2 .membro-avatar { border-color: var(--magenta); }
.membro-card.e3 .membro-avatar { border-color: var(--teal); }
.membro-name { font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700; color: white; margin-bottom: .3rem; }
.membro-role { font-size: .72rem; color: rgba(255,255,255,.54); line-height: 1.4; }
.membro-inst { font-size: .68rem; color: rgba(255,255,255,.36); margin-top: .2rem; }
.equipe-cta {
  text-align: center;
  margin-top: 2.5rem;
}

body.equipe-page {
  background: #fff;
}
.equipe-page .site-header {
  background: var(--navy);
}
.equipe-page .equipe-page-section {
  background: #fff;
}
.equipe-page .equipe-page-hero {
  background: var(--offwhite);
}
.equipe-page .equipe-page-hero {
  padding: 9rem 6vw 3.8rem;
  text-align: center;
}
.equipe-page .equipe-page-inner {
  max-width: var(--page-shell);
  margin: 0 auto;
}
.equipe-page .equipe-page-hero .section-label {
  color: var(--magenta);
  margin-bottom: 4.2rem;
}
.equipe-page .equipe-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1.6rem;
}
.equipe-page .equipe-page-hero p {
  max-width: 760px;
  margin: 0 auto 3.2rem;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.8;
}
.equipe-page .equipe-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem 1rem;
  max-width: 1020px;
  margin: 0 auto;
}
.equipe-page .equipe-filter-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  padding: .75rem 1.45rem;
  border: 2px solid rgba(53,63,124,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(17,26,68,.08);
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.equipe-page .equipe-filter-btn:hover,
.equipe-page .equipe-filter-btn.active {
  background: #f7f9fe;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17,26,68,.12);
}
.equipe-page .equipe-filter-btn span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(53,63,124,.35);
}
.equipe-page .equipe-filter-btn img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: .72;
}
.equipe-page .equipe-filter-btn:hover img,
.equipe-page .equipe-filter-btn.active img {
  opacity: 1;
}
.equipe-page .equipe-filter-btn[data-filter="1"] span,
.equipe-page .badge-1 { background: #F76043; }
.equipe-page .equipe-filter-btn[data-filter="2"] span,
.equipe-page .badge-2 { background: #982263; }
.equipe-page .equipe-filter-btn[data-filter="3"] span,
.equipe-page .badge-3 { background: #353F7C; }
.equipe-page .equipe-filter-btn[data-filter="4"] span,
.equipe-page .badge-4 { background: #FDA749; }
.equipe-page .equipe-filter-btn[data-filter="1"].active { border-color: #F76043; }
.equipe-page .equipe-filter-btn[data-filter="2"].active { border-color: #982263; }
.equipe-page .equipe-filter-btn[data-filter="3"].active { border-color: #353F7C; }
.equipe-page .equipe-filter-btn[data-filter="4"].active { border-color: #FDA749; }
.equipe-page .equipe-page-section {
  padding: 2.6rem 5vw 6rem;
}
.equipe-page .members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}
.equipe-page .members-grid .membro-card {
  min-height: 410px;
  padding: 2rem 1.25rem 1.8rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(53,63,124,.14);
  box-shadow: 0 18px 44px rgba(17,26,68,.08);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.equipe-page .members-grid .membro-card:hover {
  border-color: rgba(53,63,124,.24);
  box-shadow: 0 22px 52px rgba(17,26,68,.12);
  transform: translateY(-3px);
}
.equipe-page .members-grid .membro-avatar-link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
}
.equipe-page .members-grid .membro-avatar-link:hover .membro-avatar {
  transform: scale(1.03);
}
.equipe-page .members-grid .membro-avatar-link:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 8px;
  border-radius: 50%;
}
.equipe-page .members-grid .membro-card.hidden {
  display: none;
}
.equipe-page .members-grid .membro-avatar {
  width: 174px;
  height: 174px;
  padding: 6px;
  border: 0;
  background: var(--avatar-ring, rgba(255,255,255,.18));
  margin-bottom: 1.45rem;
  transition: transform .2s;
}
.equipe-page .members-grid .membro-avatar span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
}
.equipe-page .members-grid .membro-avatar img {
  object-fit: contain;
  filter: none;
  background: #fff;
}
.equipe-page .members-grid .membro-name {
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: .55rem;
  color: var(--navy);
}
.equipe-page .members-grid .membro-role {
  font-size: .86rem;
  font-weight: 700;
  color: rgba(53,63,124,.68);
}
.equipe-page .members-grid .membro-inst {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(53,63,124,.52);
}
.equipe-page .membro-logos {
  min-height: 40px;
  margin: .75rem auto .15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .35rem;
}
.equipe-page .membro-logos img {
  width: auto;
  max-width: 124px;
  max-height: 36px;
  object-fit: contain;
  padding: .16rem .35rem;
  border-radius: 4px;
  background: rgba(255,255,255,.94);
}
.equipe-page .membro-logos--large img {
  max-width: 149px;
  max-height: 43px;
}
.equipe-page .membro-logos-empty {
  opacity: 0;
}
.equipe-page .membro-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .65rem;
}
.equipe-page .badge {
  color: white;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
}
.equipe-page .badge-supp {
  background: var(--teal);
  color: var(--navy);
}
.equipe-page .no-results {
  display: none;
  grid-column: 1 / -1;
  padding: 4rem 0;
  text-align: center;
  color: var(--muted);
}
.equipe-page .equipe-footnote {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(53,63,124,.12);
  text-align: center;
  color: var(--muted);
  font-size: .78rem;
}

.section-parceiros { background: var(--offwhite); padding: 5rem 6vw; }
.parceiros-inner { text-align: center; }
.parceiros-inner .section-label { color: var(--magenta); }
.parceiros-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
}
.parceiros-logos a {
  background: white;
  border-radius: 8px;
  padding: 1rem 1.4rem;
  min-width: 182px;
  height: 104px;
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
}
.parceiros-logos a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(53,63,124,.12);
}
.parceiros-logos img {
  max-height: 68px;
  max-width: 182px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.parceiros-logos .parceiro-liga-oceano img {
  max-height: 68px;
  max-width: 182px;
  transform: scale(1.69);
  transform-origin: center;
}
.parceiros-logos .parceiro-calacademy img,
.parceiros-logos .parceiro-de-olho img {
  transform: scale(1.3);
  transform-origin: center;
}

.contact-hero {
  min-height: 100vh;
  padding: 7.2rem 4.5vw 3.4rem;
  background: #111a44;
  color: white;
  overflow: hidden;
}
.contact-inner {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(430px, .8fr) minmax(500px, .82fr);
  gap: clamp(2.4rem, 5vw, 6.2rem);
  align-items: center;
}
.coverage-map-art {
  position: relative;
  min-height: clamp(620px, 74vw, 850px);
}
.coverage-map-base {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 96%);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.coverage-map {
  position: relative;
  min-height: 780px;
  isolation: isolate;
}
.brazil-shape {
  position: absolute;
  inset: 1% 5% 0 3%;
  background: white;
  clip-path: polygon(
    36% 3%, 38% 7%, 38% 13%, 44% 13%, 40% 17%, 34% 17%, 30% 23%,
    41% 23%, 54% 28%, 55% 34%, 60% 32%, 65% 37%, 72% 36%, 79% 43%,
    84% 43%, 90% 49%, 90% 55%, 86% 60%, 80% 66%, 79% 73%, 75% 77%,
    67% 79%, 62% 84%, 56% 83%, 52% 87%, 46% 86%, 42% 91%, 39% 98%,
    35% 100%, 34% 96%, 28% 90%, 22% 86%, 18% 82%, 20% 79%, 26% 73%,
    30% 72%, 30% 66%, 28% 62%, 29% 58%, 24% 55%, 16% 54%, 17% 44%,
    14% 40%, 12% 33%, 13% 25%, 12% 18%, 17% 12%, 24% 12%, 27% 9%,
    32% 9%
  );
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
  z-index: 1;
}
.map-dot {
  --x: 50%;
  --y: 50%;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--magenta);
  box-shadow: 0 0 0 2px rgba(53,63,124,.08);
}
.map-dot b {
  position: absolute;
  left: 50%;
  top: calc(100% + .35rem);
  transform: translateX(-50%);
  color: var(--navy);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}
.dot-ufc b,
.dot-ufrn b,
.dot-ufrpe b,
.dot-ufs b,
.dot-ufba b,
.dot-ufsb b,
.dot-ufes b,
.dot-uenf b,
.dot-uff b {
  color: rgba(255,255,255,.82);
}
.dot-ufrn b,
.dot-uenf b,
.dot-uff b {
  left: calc(100% + .45rem);
  top: 50%;
  transform: translateY(-50%);
}
.dot-ufc b,
.dot-ufs b,
.dot-ufba b,
.dot-ufsb b,
.dot-ufes b {
  left: auto;
  right: calc(100% + .45rem);
  top: 50%;
  transform: translateY(-50%);
}
.pie-2 { background: conic-gradient(var(--magenta) 0 50%, var(--navy) 50% 100%); }
.pie-3 { background: conic-gradient(var(--gold) 0 35%, var(--magenta) 35% 68%, var(--coral) 68% 100%); }
.pie-4 { background: var(--gold); }
.contact-copy {
  position: relative;
  z-index: 3;
}
.contact-copy h1,
.contact-copy h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  line-height: .9;
  margin-bottom: 1.7rem;
}
.contact-text {
  display: grid;
  gap: 1.3rem;
  font-size: clamp(.96rem, 1.08vw, 1.08rem);
  line-height: 1.72;
  color: rgba(255,255,255,.86);
}
.contact-text p:first-child {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.22;
  color: white;
}
.projeto-sobre {
  min-height: auto;
  padding-top: clamp(4.8rem, 7vw, 7rem);
  padding-bottom: clamp(4.8rem, 7vw, 7rem);
  padding-left: 0;
  padding-right: 0;
}
.projeto-sobre .contact-inner {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 39vw) minmax(480px, 720px);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  margin: 0;
}
.projeto-sobre .coverage-map-art {
  min-height: clamp(580px, 50vw, 760px);
  overflow: hidden;
}
.projeto-sobre .coverage-map-base {
  left: clamp(1.5rem, 3vw, 3.5rem);
  width: min(540px, 40vw);
  transform: translate(0, -50%);
}
.projeto-sobre .contact-copy {
  padding-right: 5vw;
}
.projeto-sobre .contact-copy h2 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}
.projeto-sobre .contact-text .section-label {
  color: var(--gold);
  font-size: .72rem;
  line-height: 1.3;
  margin-bottom: .5rem;
}
.projeto-sobre .contact-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  color: white;
  margin-bottom: 1.6rem;
}
.projeto-sobre .contact-text h3 {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 1.6rem 0 .45rem;
}
.projeto-sobre .contact-text .about-lead {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.22;
  color: white;
  margin-bottom: .2rem;
}

.projeto-eixos-layout {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: start;
  margin-top: 3rem;
}
.projeto-eixos-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: .65rem;
}
.projeto-eixos-nav a {
  display: grid;
  gap: .12rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.74);
  text-decoration: none;
  font-size: .84rem;
  line-height: 1.25;
  transition: background .2s, color .2s, transform .15s;
}
.projeto-eixos-nav a:hover {
  background: rgba(255,255,255,.1);
  color: white;
  transform: translateY(-1px);
}
.projeto-eixos-nav span {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.projeto-eixos-list {
  gap: 2rem;
}
.projeto-eixos-list .eixo-card {
  scroll-margin-top: 96px;
}
.projeto-eixos-list .eixo-card-feature.open .eixo-body {
  max-height: none;
}
.projeto-eixos-list .eixo-header {
  cursor: default;
}
.projeto-eixos-list .eixo-toggle {
  display: none;
}
.eixo-kicker {
  color: var(--eixo-accent, var(--coral));
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.eixo-feature-content .eixo-lead {
  max-width: 860px;
  color: rgba(17,17,17,.82);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.65;
  margin-bottom: .9rem;
}
.eixo-feature-content > p:not(.eixo-kicker):not(.eixo-lead) {
  max-width: 860px;
  color: rgba(17,17,17,.72);
  line-height: 1.7;
}
.eixo-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
}
.eixo-story-card {
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 8px;
  padding: 1.2rem;
  backdrop-filter: blur(2px);
}
.eixo-story-card h5 {
  color: var(--eixo-accent, var(--coral));
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: .45rem;
}
.eixo-story-card h6 {
  color: rgba(17,17,17,.88);
  font-size: .9rem;
  line-height: 1.35;
  margin-bottom: .75rem;
}
.eixo-story-card p {
  color: rgba(17,17,17,.72);
  font-size: .82rem;
  line-height: 1.58;
}
.eixo-story-card p + p {
  margin-top: .7rem;
}
.map-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: rgba(44,22,18,.72);
  font-size: .72rem;
  line-height: 1.35;
}
.map-caption span {
  width: 11px;
  height: 11px;
  margin-top: .12rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--eixo-accent, var(--coral));
  border: 1.5px solid rgba(255,255,255,.9);
}
.projeto-eixos-list .eixo-feature-panel-eixo2 .eixo-feature-content {
  padding: 2.4rem clamp(2.2rem, 4vw, 4.2rem) clamp(17rem, 24vw, 22rem);
}

.contact-page-hero {
  padding: 8rem 5vw 4.5rem;
  background: #111a44;
  color: white;
}
.contact-page-inner {
  width: min(var(--page-shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(360px, .72fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.contact-feature-image {
  min-height: clamp(390px, 46vw, 650px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(17,26,68,.04), rgba(17,26,68,.22)),
    url("images/04-tartaruga-fernando-noronha.webp") center / cover no-repeat;
  box-shadow: 0 28px 70px rgba(0,0,0,.26);
}
.contact-page-copy {
  display: grid;
  justify-items: start;
}
.contact-page-copy h1 {
  max-width: 640px;
  margin-top: .9rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
  line-height: .92;
  color: white;
}
.contact-page-copy > p:not(.section-label) {
  max-width: 560px;
  margin-top: 1.6rem;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}
.contact-page-actions {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}
.contact-page-actions a {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-height: 52px;
  padding: .85rem 1.15rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,.06);
  transition: background .18s, border-color .18s, transform .18s;
}
.contact-page-actions a:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}
.contact-page-actions a::before {
  content: attr(data-icon);
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: white;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}
.contact-panel {
  background: #111a44;
  color: var(--navy);
  padding: 0 5vw 2.8rem;
}
.contact-panel-inner {
  width: min(1420px, 100%);
  margin: 0 auto;
  min-height: 260px;
  background: white;
  border-radius: 36px 36px 0 0;
  padding: clamp(1.7rem, 3.2vw, 2.5rem) clamp(2rem, 5vw, 4.1rem);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, .55fr);
  gap: 2rem;
  align-items: start;
}
.contact-panel-left {
  display: grid;
  gap: 1.7rem;
  justify-items: start;
}
.contact-panel-right {
  display: grid;
  justify-items: end;
  gap: 1.45rem;
  text-align: right;
}
.contact-logo {
  width: min(360px, 100%);
  height: auto;
  filter: brightness(0) saturate(100%) invert(11%) sepia(49%) saturate(1555%) hue-rotate(211deg) brightness(88%) contrast(96%);
}
.contact-address {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.ufsm-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  flex: 0 0 auto;
}
.contact-address h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  margin-bottom: .75rem;
}
.contact-address p,
.contact-links a {
  color: var(--navy);
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.36;
}
.cnpq-logo {
  width: min(165px, 100%);
  height: auto;
  object-fit: contain;
}
.contact-links {
  display: grid;
  gap: .55rem;
  justify-items: end;
  text-align: right;
}
.contact-links p {
  color: #4d5a99;
  font-weight: 800;
  margin-bottom: .05rem;
}
.contact-links a {
  text-decoration: none;
  font-weight: 500;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
}
.contact-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}
.contact-links a:hover {
  color: var(--coral);
}
.back-to-top {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--magenta);
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  background: #20264b;
  padding: 3.5rem 6vw 2rem;
  color: rgba(255,255,255,.62);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 300px; margin-bottom: .8rem; }
.footer-col h3 {
  color: white;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col address {
  display: block;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: .82rem;
  margin-bottom: .5rem;
  font-style: normal;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,.48); text-decoration: none; font-size: .76rem; }

.page-hero {
  padding: 9rem 6vw 4rem;
  background: var(--offwhite);
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-with-media {
  min-height: clamp(430px, 42vw, 830px);
  padding: 8.5rem 5vw 5rem;
  display: flex;
  align-items: center;
}
.page-hero-with-media .page-hero-inner {
  width: min(var(--page-shell), 100%);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(420px, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.page-hero-copy {
  max-width: 760px;
}
.page-hero .section-label { color: var(--magenta); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 700px;
  color: var(--muted);
}
.page-hero-media {
  width: 100%;
  min-height: clamp(310px, 32vw, 520px);
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(32,38,75,.18);
  background: #dbe5f6;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}
.projeto-hero.page-hero-with-media {
  height: clamp(430px, 28vw, 830px);
  max-height: 830px;
  min-height: 430px;
  margin-top: 72px;
  padding: 0 5vw;
}
.projeto-hero.page-hero-with-media .page-hero-inner {
  height: 100%;
  width: min(var(--page-shell), 100%);
  max-width: none;
  grid-template-columns: minmax(420px, .92fr) minmax(420px, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.projeto-hero .page-hero-copy {
  max-width: 760px;
  padding: 0;
}
.projeto-hero .page-hero-media {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}
.projeto-hero .page-hero-media img {
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.conteudos-page-hero.page-hero-with-media {
  height: clamp(430px, 28vw, 830px);
  max-height: 830px;
  min-height: 430px;
  margin-top: 72px;
  padding: 0 5vw;
}
.conteudos-page-hero.page-hero-with-media .page-hero-inner {
  height: 100%;
}
.conteudos-page-hero .page-hero-media {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}

.equipe-page .page-hero.equipe-page-hero {
  background: var(--offwhite);
  height: clamp(430px, 28vw, 830px);
  max-height: 830px;
  min-height: 430px;
  margin-top: 72px;
  padding: 0 5vw;
  text-align: left;
}
.equipe-page .page-hero.equipe-page-hero .equipe-page-inner {
  height: 100%;
  width: min(var(--page-shell), 100%);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(420px, 1fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.equipe-page .page-hero.equipe-page-hero .section-label {
  color: var(--magenta);
  margin-bottom: 0;
}
.equipe-page .page-hero.equipe-page-hero h1 {
  color: var(--navy);
  margin-bottom: 1rem;
}
.equipe-page .page-hero.equipe-page-hero p:not(.section-label) {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}
.equipe-page .page-hero.equipe-page-hero .page-hero-media {
  height: 100%;
  min-height: 0;
  border-radius: 0;
  box-shadow: none;
}
.equipe-page .equipe-page-section .equipe-filter {
  margin-bottom: 3rem;
}
.page-hero .contact-page-actions {
  justify-items: start;
}
.page-hero .contact-page-copy > p:not(.section-label) {
  color: var(--muted);
}
.page-hero .contact-page-actions a {
  color: var(--navy);
  background: white;
  border-color: #d2d8ec;
  box-shadow: 0 8px 22px rgba(32,38,75,.08);
}
.page-hero .contact-page-actions a::before {
  color: var(--magenta);
}
.page-hero .contact-page-actions a:hover {
  color: white;
  background: var(--coral);
  border-color: var(--coral);
}
.page-hero .contact-page-actions a:hover::before {
  color: white;
}
.section {
  padding: 6rem 5vw;
}
.section-inner {
  max-width: var(--page-shell);
  margin: 0 auto;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.content-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .9rem 1rem;
  max-width: 1020px;
  margin: 0 auto 2.8rem;
}
.content-filter-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  min-height: 54px;
  border: 2px solid rgba(53, 63, 124, .16);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: .75rem 1.45rem;
  font-family: "Inter", sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(17,26,68,.08);
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.content-filter-btn:hover,
.content-filter-btn.is-active {
  background: #f7f9fe;
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(17,26,68,.12);
}
.content-filter-btn span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(53,63,124,.35);
}
.content-filter-btn[data-content-filter="diario"] span {
  background: #F76043;
}
.content-filter-btn[data-content-filter="news"] span {
  background: #982263;
}
.content-filter-btn[data-content-filter="artigos"] span {
  background: #353F7C;
}
.content-filter-btn[data-content-filter="all"].is-active {
  border-color: rgba(53,63,124,.35);
}
.content-filter-btn[data-content-filter="diario"].is-active {
  border-color: #F76043;
}
.content-filter-btn[data-content-filter="news"].is-active {
  border-color: #982263;
}
.content-filter-btn[data-content-filter="artigos"].is-active {
  border-color: #353F7C;
}
.post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(53,63,124,.08);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.post-card[hidden] {
  display: none;
}
.post-card[data-post-url] {
  cursor: pointer;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(53,63,124,.13);
}
.post-card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.post-card a:not(.post-card-overlay-link),
.post-card button {
  position: relative;
  z-index: 2;
}
.post-card-media {
  min-height: 210px;
  background:
    radial-gradient(circle at 28% 30%, rgba(253,167,73,.5), transparent 6rem),
    linear-gradient(135deg, var(--navy), var(--teal));
  background-size: cover;
  background-position: center;
}
.post-card-media img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.post-card:nth-child(2) .post-card-media {
  background: linear-gradient(135deg, var(--magenta), var(--coral));
}
.post-card:nth-child(3) .post-card-media {
  background: linear-gradient(135deg, #7a2800, var(--gold));
}
.post-card-arvoredo .post-card-media {
  background: url("images/blog-arvoredo/destaque-ilha-arvoredo-expedicao.webp") center / cover no-repeat;
}
.post-card-body {
  padding: 1.4rem;
}
.post-date {
  display: block;
  font-size: .73rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
.post-card-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  text-decoration: none;
  margin-bottom: .6rem;
}
.post-card p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}
.read-more {
  display: inline-block;
  margin-top: .7rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--coral);
  text-decoration: none;
}
.content-empty {
  color: var(--muted);
  font-weight: 700;
  margin: 2rem 0 0;
}
.pagination {
  display: flex;
  gap: .5rem;
  margin-top: 2rem;
}
.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #d2d8ec;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}
.pagination [aria-current="page"] {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.post-single {
  background: var(--offwhite);
}
.post-hero {
  position: relative;
  min-height: 480px;
  padding: 72px 6vw 4rem;
  display: flex;
  align-items: flex-end;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32,38,75,.2) 0%, rgba(32,38,75,.55) 45%, rgba(32,38,75,.88) 100%),
    radial-gradient(circle at 78% 20%, rgba(253,167,73,.18), transparent 22rem);
}
.post-hero-rodolitos {
  background-image:
    radial-gradient(circle at 18% 22%, rgba(253, 167, 73, .32), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(60, 155, 165, .25), transparent 20rem),
    linear-gradient(135deg, #111a44 0%, #353F7C 52%, #3C9BA5 100%);
}
.post-hero-arvoredo {
  background-image: url("images/blog-arvoredo/destaque-ilha-arvoredo-expedicao.webp");
}
.post-hero-joao-pessoa {
  background-image: url("images/blog-joao-pessoa/mergulhadores-rodolitos-joao-pessoa.webp");
}
.post-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  color: white;
}
.post-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .36rem .86rem;
  margin-bottom: 1rem;
  border-radius: 3px;
  background: var(--coral);
  color: white;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.post-hero-content h1 {
  max-width: 880px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.55rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .98;
  color: white;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.4rem;
  margin-top: 1.4rem;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}
.post-meta strong {
  color: rgba(255,255,255,.94);
}
.post-body-wrap {
  padding: 0 6vw 5.5rem;
  background: linear-gradient(180deg, var(--navy) 0, var(--navy) 82px, var(--offwhite) 82px);
}
.post-body {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 3rem clamp(1.35rem, 5vw, 4.5rem) 3.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(32,38,75,.15);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 2rem;
  color: #9aa3bb;
  font-size: .82rem;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}
.breadcrumb a:hover {
  color: var(--coral);
}
.post-content {
  font-size: 1rem;
}
.post-content h2 {
  font-family: 'Playfair Display', serif;
  margin-top: 2.4rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.15;
}
.post-content h3 {
  margin-top: 2rem;
  color: var(--coral);
}
.post-content p,
.post-content li {
  color: #30384f;
  margin-top: 1.05rem;
  line-height: 1.82;
}
.post-content strong {
  color: var(--navy);
}
.post-content em {
  color: var(--muted);
}
.post-content ul,
.post-content ol {
  padding-left: 1.35rem;
  margin-top: 1rem;
}
.post-content blockquote {
  margin: 2.2rem 0;
  padding: 1.35rem 1.55rem;
  border-left: 5px solid var(--coral);
  background: #f7f9ff;
  color: var(--navy);
  font-size: 1.08rem;
}
.post-content blockquote p {
  margin-top: 0;
}
.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin: 1.6rem 0 2.4rem;
}
.post-gallery figure {
  margin: 0;
}
.post-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(32,38,75,.12);
}
.post-gallery figcaption {
  margin-top: .6rem;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d2d8ec;
}
.post-nav a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}
.post-nav a:hover {
  color: var(--coral);
}

.project-axis-index {
  background: #f7f9fe;
  color: var(--navy);
  padding: clamp(3.5rem, 5vw, 5rem) 5vw clamp(5rem, 7vw, 7rem);
}

.project-axis-shell {
  width: min(var(--page-shell), 100%);
  margin: 0 auto;
  --axis-nav-width: 132px;
  --axis-gap: clamp(1.6rem, 3vw, 2.8rem);
  --axis-card-pad: clamp(2rem, 3vw, 3rem);
}

.project-axis-intro {
  max-width: 760px;
  margin-left: calc(var(--axis-nav-width) + var(--axis-gap));
  padding-left: var(--axis-card-pad);
  margin-bottom: clamp(1.8rem, 3.2vw, 2.8rem);
}

.project-axis-intro .section-label,
.project-axis-heading p {
  color: var(--magenta);
  text-align: left;
}

.project-axis-intro .section-title {
  color: var(--navy);
  text-align: left;
}

.project-axis-intro p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.75;
}

.project-axis-card-intro {
  max-width: 720px;
  margin: 0 0 clamp(2rem, 3vw, 2.8rem);
  padding-left: 0;
}

.project-axis-layout {
  display: grid;
  grid-template-columns: var(--axis-nav-width) minmax(0, 1fr);
  gap: var(--axis-gap);
  align-items: start;
}

.project-axis-nav {
  position: sticky;
  top: 104px;
  z-index: 5;
  display: grid;
  gap: .75rem;
  align-self: start;
}

.project-axis-nav a {
  display: block;
  padding: .95rem 1rem;
  border: 1px solid rgba(53, 63, 124, .18);
  border-left: 5px solid var(--coral);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17, 26, 68, .06);
}

.project-axis-nav a:nth-child(2) { border-left-color: var(--magenta); }
.project-axis-nav a:nth-child(3) { border-left-color: var(--teal); }
.project-axis-nav a:nth-child(4) { border-left-color: var(--gold); }

.project-axis-nav a:hover,
.project-axis-nav a:focus-visible {
  background: var(--navy);
  color: #fff;
  transform: translateX(4px);
}

.project-axis-nav span {
  display: block;
  margin-bottom: .25rem;
  color: var(--coral);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-axis-nav a:hover span,
.project-axis-nav a:focus-visible span {
  color: #fff;
}

.project-axis-list {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  justify-items: start;
}

.project-axis-section {
  scroll-margin-top: 115px;
  border: 1px solid rgba(53, 63, 124, .16);
  border-radius: 8px;
  background: #fff;
  padding: clamp(1.7rem, 3vw, 3rem);
  box-shadow: 0 18px 55px rgba(17, 26, 68, .07);
}

.project-axis-heading {
  max-width: 980px;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.project-axis-heading p {
  margin-bottom: .6rem;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-axis-heading h2,
.project-axis-heading h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.project-axis-body {
  display: flow-root;
}

.project-axis-map {
  float: left;
  width: min(300px, 34%);
  margin: .2rem clamp(1.5rem, 3vw, 2.6rem) 1.25rem 0;
  border: 1px solid rgba(53, 63, 124, .16);
  border-radius: 8px;
  background: #eef3fb;
  padding: 1rem;
}

.project-axis-map img {
  display: block;
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.project-axis-map figcaption {
  margin-top: .9rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}

.project-axis-copy {
  max-width: none;
  color: #2c355e;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.82;
}

.project-axis-copy p {
  margin: 0 0 1.25rem;
}

.project-axis-copy .project-axis-lead {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.6;
}

.project-axis-copy h4 {
  margin: 2.1rem 0 .35rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.project-axis-copy h4:first-child {
  margin-top: 0;
}

.project-axis-copy h5 {
  margin: 0 0 .75rem;
  color: var(--magenta);
  font-size: 1.05rem;
  line-height: 1.45;
}

.project-axis-gallery {
  clear: both;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.project-axis-gallery h4 {
  margin: 0 0 1.1rem;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-axis-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.project-axis-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 63, 124, .14);
  border-radius: 8px;
  background: #f4f7fd;
}

.project-axis-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #eef3fb;
}

.project-axis-gallery figcaption {
  min-height: 4.2rem;
  padding: .75rem .85rem .9rem;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.45;
}

.project-axis-nav a.is-active {
  border-left-color: var(--magenta);
  background: #fff;
  color: var(--navy);
}

.project-axis-section-model {
  width: min(860px, 100%);
  margin-left: 0;
  padding: var(--axis-card-pad);
  overflow: hidden;
}

.project-axis-section-model + .project-axis-section-model {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.project-axis-section-model .project-axis-heading {
  max-width: 720px;
  margin-bottom: 1.35rem;
}

.project-axis-section-model .project-axis-heading p {
  color: var(--magenta);
  font-size: .72rem;
}

.project-axis-section-model .project-axis-heading h2,
.project-axis-section-model .project-axis-heading h3 {
  max-width: 720px;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.95rem, 2.15vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
}

.axis-coordinators {
  max-width: 720px;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
}

.axis-model-copy {
  max-width: 100%;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
}

.axis-model-copy p {
  margin: 0 0 1.05rem;
}

.axis-model-copy .project-axis-lead {
  max-width: 720px;
  color: #3f4d83;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

.axis-model-section {
  margin-top: 2.1rem;
}

.axis-model-section h3,
.axis-map-panel h4 {
  margin: 0 0 .9rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
}

.axis-model-section h4 {
  margin: 0 0 1rem;
  color: #4d5d91;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  line-height: 1.35;
}

.axis-question {
  color: #4d5d91;
  font-weight: 600;
}

.axis-photo-pair {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(1.35rem, 2.8vw, 2rem);
  margin: 1.35rem 0 2.25rem;
  align-items: start;
}

.axis-photo-pair figure {
  margin: 0;
  min-width: 0;
}

.axis-photo-frame {
  aspect-ratio: 591 / 441;
  overflow: hidden;
  background: #eef3fb;
}

.axis-photo-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.axis-photo-pair figcaption {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
}

.axis-map-panel {
  margin-top: 2.5rem;
}

.axis-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.8vw, 2rem);
  align-items: center;
}

.axis-map-grid figure {
  margin: 0;
}

.axis-map-grid img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.axis-map-grid p {
  margin: 0;
  padding-left: 0;
  border-left: 0;
  color: var(--navy);
  font-size: clamp(.95rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .project-axis-intro:not(.project-axis-card-intro) {
    margin-left: 0;
  }

  .project-axis-layout {
    grid-template-columns: 1fr;
  }

  .project-axis-nav {
    top: 78px;
    display: flex;
    gap: .7rem;
    overflow-x: auto;
    padding: .35rem 0 .75rem;
    background: #f7f9fe;
  }

  .project-axis-nav a {
    min-width: 172px;
  }

  .project-axis-body {
    display: block;
  }

  .project-axis-map {
    float: none;
    width: 100%;
    max-width: 420px;
    margin: 0 0 1.5rem;
  }

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

  .project-axis-section-model {
    width: 100%;
  }

  .axis-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.35rem, 2.8vw, 2rem);
  }

  .axis-map-grid p {
    padding-left: 0;
    border-left: 0;
  }

  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-cta-card { min-height: 280px; }
  .equipe-page .members-grid { grid-template-columns: repeat(3, 1fr); }
  .projeto-hero.page-hero-with-media,
  .conteudos-page-hero.page-hero-with-media,
  .equipe-page .page-hero.equipe-page-hero {
    margin-top: 0;
  }
  .site-nav {
    height: auto;
    min-height: 72px;
    padding: .9rem 4vw;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-links {
    width: 100%;
    display: none;
    padding-top: 1rem;
    flex-direction: column;
    gap: .2rem;
  }
  .site-nav.menu-open .nav-links { display: flex; }
  .nav-links a {
    display: block;
    padding: .78rem 0;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .76rem;
    letter-spacing: .06em;
  }
  .nav-cta {
    display: inline-flex !important;
    width: fit-content;
    margin-top: .65rem;
    padding: .54rem .9rem !important;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .project-axis-intro:not(.project-axis-card-intro) {
    margin-left: calc(var(--axis-nav-width) + var(--axis-gap));
  }

  .project-axis-layout {
    grid-template-columns: var(--axis-nav-width) minmax(0, 1fr);
  }

  .project-axis-nav {
    position: sticky;
    top: 88px;
    display: grid;
    gap: .7rem;
    overflow: visible;
    padding: 0;
    background: transparent;
  }

  .project-axis-nav a {
    min-width: 0;
    padding: .78rem .8rem;
  }

  .project-axis-section-model .project-axis-heading h2,
  .project-axis-section-model .project-axis-heading h3 {
    font-size: clamp(1.85rem, 4.4vw, 2.25rem);
  }

  .axis-model-copy,
  .axis-model-copy .project-axis-lead {
    font-size: .95rem;
  }
}

@media (max-width: 900px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-hero {
    min-height: 430px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post-body-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .post-body {
    padding: 2.2rem 1.25rem 2.6rem;
  }
  .post-gallery {
    grid-template-columns: 1fr;
  }
  .post-nav {
    flex-direction: column;
  }
  .eixo-feature-panel { grid-template-columns: 1fr; }
  .eixo-map { min-height: 300px; }
  .eixo-map img { width: 100%; height: auto; min-height: 0; object-position: center top; }
  .eixo-feature-content { padding: 2rem; }
  .eixo-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eixo-gallery { padding: 2.2rem 1.5rem 2.6rem; }
  .eixo-feature-panel-eixo2 .eixo-feature-content { padding-bottom: 16rem; }
  .projeto-eixos-layout { grid-template-columns: 1fr; }
  .projeto-eixos-nav {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .projeto-eixos-nav a {
    padding: .75rem;
    font-size: .76rem;
  }
  .eixo-story-grid { grid-template-columns: 1fr; }
  .projeto-eixos-list .eixo-feature-panel-eixo2 .eixo-feature-content {
    padding: 2rem 2rem 15rem;
  }
  .eixo-bottom-art { max-height: 42%; opacity: .68; }
  .eixo-feature-panel-eixo3 .eixo-feature-content { padding: 2rem 2rem 4.5rem; }
  .eixo3-art-carbono { top: auto; right: 1.2rem; bottom: 1.2rem; width: 190px; opacity: .32; }
  .eixo3-art-pesca { right: 12rem; bottom: 3.5rem; width: 110px; opacity: .36; }
  .eixo-feature-panel-eixo4 .eixo-feature-content { padding: 2rem 2rem 8rem; }
  .eixo4-art { width: 180px; opacity: .42; }
  .eixo-side-art { width: 190px; opacity: .52; }
  .eixo-card-feature.open .eixo-body { max-height: 3600px; }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-page .members-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pub-item { grid-template-columns: 50px 1fr; }
  .pub-link { display: none; }
  .page-hero-with-media .page-hero-inner,
  .equipe-page .page-hero.equipe-page-hero .equipe-page-inner {
    grid-template-columns: 1fr;
  }
  .page-hero-media {
    min-height: 360px;
    order: -1;
  }
  .page-hero-with-media,
  .equipe-page .page-hero.equipe-page-hero {
    padding: 7rem 1.25rem 4rem;
  }
  .projeto-hero.page-hero-with-media {
    padding: 7rem 1.25rem 4rem;
  }
  .projeto-hero.page-hero-with-media .page-hero-inner {
    min-height: 0;
  }
  .projeto-hero .page-hero-copy {
    order: 1;
    padding: 0;
  }
  .projeto-hero .page-hero-media {
    order: 2;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 0;
    aspect-ratio: 16 / 9;
  }
  .projeto-hero .page-hero-media img {
    height: 100%;
    min-height: 0;
    object-position: center center;
  }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-page-inner { grid-template-columns: 1fr; }
  .contact-feature-image { min-height: 430px; }
  .contact-page-copy { justify-items: center; text-align: center; }
  .contact-page-actions { justify-items: center; }
  .coverage-map,
  .coverage-map-art {
    width: min(720px, 100%);
    margin: 0 auto;
  }
  .coverage-map-art {
    min-height: 760px;
  }
  .coverage-map-base {
    left: 50%;
    width: min(560px, 92%);
    transform: translate(-50%, -50%);
  }
  .contact-panel-inner { grid-template-columns: 1fr; text-align: center; border-radius: 30px 30px 0 0; }
  .contact-panel-left,
  .contact-panel-right { justify-items: center; text-align: center; }
  .contact-address { justify-content: center; }
  .contact-logo { margin: 0 auto; }
  .contact-links { justify-items: center; text-align: center; }
  .contact-hero { padding: 7rem 1.25rem 3rem; }
  .projeto-sobre { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .coverage-map { min-height: 590px; }
  .map-dot {
    width: 34px;
    height: 34px;
  }
  .map-dot b { font-size: .68rem; }
}

@media (max-width: 600px) {
  .project-axis-shell {
    --axis-card-pad: 1.35rem;
  }

  .project-axis-index {
    padding: 3.5rem 1rem;
  }

  .project-axis-section {
    padding: 1.4rem 1.15rem;
  }

  .project-axis-nav {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .project-axis-heading h2,
  .project-axis-heading h3 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }

  .project-axis-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-axis-gallery figcaption {
    min-height: 0;
  }

  .project-axis-section-model {
    padding: 1.45rem 1.2rem;
  }

  .project-axis-section-model .project-axis-heading h2,
  .project-axis-section-model .project-axis-heading h3 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .axis-photo-pair {
    grid-template-columns: 1fr !important;
    gap: 1.2rem;
  }

  .axis-model-section {
    margin-top: 1.8rem;
  }

  .axis-map-grid img {
    max-height: 390px;
  }

  .axis-map-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .axis-map-grid p {
    padding-left: 0;
    border-left: 0;
  }

  .site-header {
    position: sticky;
  }
  .site-nav {
    padding: .9rem 1.1rem;
  }
  .nav-logo img {
    width: 164px;
    max-height: 42px;
  }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-img { height: 190px; }
  .news-tag,
  .news-date { font-size: .68rem; }
  .eixo-card-feature.open { border-radius: 22px; }
  .eixo-card-feature.open .eixo-header { padding: 1rem; gap: .8rem; }
  .eixo-card-feature.open .eixo-icon { width: 52px; height: 52px; }
  .eixo-card-feature.open .eixo-title { font-size: 1.12rem; }
  .eixo-feature-panel { border-radius: 0 0 22px 22px; }
  .eixo-card-gallery .eixo-feature-panel { border-radius: 0; }
  .eixo-map { min-height: 210px; }
  .eixo-map img { width: 100%; height: auto; min-height: 0; object-position: center top; }
  .map-legend { left: 1.2rem; bottom: 1.2rem; font-size: .82rem; }
  .eixo-feature-content { padding: 1.5rem 1.15rem 2rem; }
  .eixo-feature-panel-eixo2 .eixo-feature-content { padding-bottom: 13rem; }
  .projeto-eixos-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projeto-eixos-list .eixo-feature-panel-eixo2 .eixo-feature-content {
    padding: 1.5rem 1.15rem 13rem;
  }
  .eixo-bottom-art { max-height: 34%; opacity: .58; }
  .eixo-feature-panel-eixo3 .eixo-feature-content { padding: 1.5rem 1.15rem 4rem; }
  .eixo3-art-carbono { right: .8rem; bottom: .8rem; width: 145px; opacity: .24; }
  .eixo3-art-pesca { right: 10rem; bottom: 2.8rem; width: 82px; opacity: .28; }
  .eixo-feature-panel-eixo4 .eixo-feature-content { padding: 1.5rem 1.15rem 6rem; }
  .eixo4-art { width: 132px; opacity: .34; }
  .eixo-side-art { display: none; }
  .eixo-feature-content h4 { margin-bottom: .9rem; }
  .eixo-objective-block { margin-top: 1rem; }
  .eixo-objective-block li { font-size: .88rem; }
  .eixo-gallery {
    padding: 1.8rem 1rem 2rem;
    border-radius: 0 0 22px 22px;
  }
  .eixo-gallery-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .eixo-card-feature.open .eixo-body { max-height: 5200px; }
  .section-parceiros { padding: 4rem 1rem; }
  .equipe-page .equipe-page-hero { padding: 7rem 1rem 2rem; }
  .equipe-page .page-hero.equipe-page-hero { padding: 6.5rem 1rem 3rem; }
  .equipe-page .equipe-page-hero .section-label { margin-bottom: 2.5rem; }
  .equipe-page .page-hero.equipe-page-hero .section-label { margin-bottom: 0; }
  .equipe-page .equipe-page-hero p { margin-bottom: 2rem; font-size: .98rem; }
  .equipe-page .page-hero.equipe-page-hero p:not(.section-label) { margin-bottom: 0; font-size: .98rem; }
  .equipe-page .equipe-filter { gap: .65rem; }
  .equipe-page .equipe-filter-btn {
    width: 100%;
    max-width: 330px;
    min-height: 48px;
    padding: .7rem 1rem;
  }
  .content-filter { gap: .65rem; }
  .content-filter-btn {
    width: 100%;
    max-width: 330px;
    min-height: 48px;
    padding: .7rem 1rem;
  }
  .equipe-page .equipe-page-section { padding: 2rem 1rem 4rem; }
  .equipe-page .members-grid { gap: .85rem; }
  .equipe-page .members-grid .membro-card {
    min-height: 315px;
    padding: 1.1rem .75rem;
  }
  .equipe-page .members-grid .membro-avatar {
    width: 112px;
    height: 112px;
  }
  .equipe-page .members-grid .membro-name { font-size: .94rem; }
  .equipe-page .members-grid .membro-role { font-size: .72rem; }
  .equipe-page .membro-logos {
    min-height: 32px;
    margin-top: .55rem;
  }
  .equipe-page .membro-logos img {
    max-width: 104px;
    max-height: 30px;
  }
  .equipe-page .membro-logos--large img {
    max-width: 125px;
    max-height: 36px;
  }
  .parceiros-logos { gap: .8rem; }
  .parceiros-logos a {
    min-width: calc(50% - .4rem);
    height: 92px;
    padding: .8rem;
  }
  .parceiros-logos img { max-width: 140px; max-height: 62px; }
  .parceiros-logos .parceiro-liga-oceano img {
    max-width: 140px;
    max-height: 62px;
    transform: scale(1.45);
  }
  .parceiros-logos .parceiro-calacademy img,
  .parceiros-logos .parceiro-de-olho img {
    transform: scale(1.3);
  }
  .section-eixos,
  .section-equipe { padding-bottom: 6.4rem; }
  .section-eixos::after,
  .section-equipe::after { height: 68px; opacity: .36; }
  .section-equipe::before { top: -58px; height: 58px; }
  .section-pubs { padding-bottom: 6.3rem; }
  .section-pubs::after { height: 56px; }
  .hero-stats { gap: 1.5rem; }
  .pubs-header,
  .blog-header { flex-direction: column; align-items: flex-start; }
  .contact-hero { padding: 4rem 1.3rem 2.5rem; }
  .page-hero-with-media { padding: 3rem 1.3rem 3rem; }
  .projeto-hero.page-hero-with-media,
  .conteudos-page-hero.page-hero-with-media {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding: 3rem 1.3rem 3.4rem;
  }
  .projeto-hero.page-hero-with-media .page-hero-inner,
  .conteudos-page-hero.page-hero-with-media .page-hero-inner {
    height: auto;
  }
  .projeto-hero .page-hero-copy,
  .conteudos-page-hero .page-hero-copy {
    order: 1;
  }
  .projeto-hero .page-hero-media,
  .conteudos-page-hero .page-hero-media {
    order: 2;
    width: calc(100% + 2.6rem);
    min-height: 0;
    height: auto;
    margin: 1.5rem -1.3rem 0;
    aspect-ratio: 16 / 9;
  }
  .projeto-hero .page-hero-media img,
  .conteudos-page-hero .page-hero-media img {
    height: 100%;
    min-height: 0;
    object-position: center center;
  }
  .page-hero-media {
    min-height: 260px;
    border-radius: 20px;
  }
  .page-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }
  .contact-page-hero { padding: 6.5rem 1rem 3rem; }
  .contact-feature-image {
    min-height: 340px;
    border-radius: 24px;
  }
  .contact-page-copy h1 { margin-top: 1rem; }
  .contact-page-actions { width: 100%; }
  .contact-page-actions a {
    width: 100%;
    justify-content: center;
    font-size: .92rem;
  }
  .coverage-map {
    min-height: 470px;
    margin-top: .5rem;
  }
  .coverage-map-art {
    min-height: 560px;
    margin-top: .5rem;
  }
  .coverage-map-base {
    left: 50%;
    width: min(380px, 98%);
    transform: translate(-50%, -50%);
  }
  .brazil-shape { inset: 3% 1% 0 0; }
  .map-dot {
    width: 24px;
    height: 24px;
  }
  .map-dot b {
    font-size: .55rem;
    letter-spacing: -.02em;
  }
  .contact-copy h1,
  .contact-copy h2 { margin-top: 1rem; }
  .projeto-sobre .contact-copy h2 { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .projeto-sobre {
    padding: 4rem 1.3rem 4.5rem;
  }
  .projeto-sobre .contact-inner {
    display: block;
    width: 100%;
  }
  .projeto-sobre .coverage-map-art {
    display: none;
  }
  .projeto-sobre .contact-copy {
    padding-right: 0;
  }
  .contact-text { font-size: .92rem; line-height: 1.7; }
  .contact-panel { padding: 0 1rem 2rem; }
  .contact-panel-inner { padding: 1.6rem 1.2rem 2rem; }
  .contact-address { flex-direction: column; gap: 1rem; }
  .ufsm-logo { width: 92px; height: 92px; }
  .back-to-top { width: 48px; height: 48px; font-size: 2.1rem; }
  .contact-address p,
  .contact-links a { font-size: .92rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-hero-with-media,
  .equipe-page .page-hero.equipe-page-hero {
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding: 3rem 1.3rem 3.4rem;
    display: block;
    overflow: hidden;
  }

  .page-hero-with-media .page-hero-inner,
  .equipe-page .page-hero.equipe-page-hero .equipe-page-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0;
  }

  .page-hero-with-media .page-hero-copy,
  .equipe-page .page-hero.equipe-page-hero .page-hero-copy {
    order: 1;
    min-width: 0;
    max-width: 100%;
  }

  .page-hero-with-media .page-hero-media,
  .equipe-page .page-hero.equipe-page-hero .page-hero-media {
    order: 2;
    width: calc(100% + 2.6rem);
    max-width: none;
    min-height: 0 !important;
    height: auto !important;
    margin: 1.5rem -1.3rem 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
  }

  .page-hero-with-media .page-hero-media img,
  .equipe-page .page-hero.equipe-page-hero .page-hero-media img {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    display: block;
    object-fit: contain;
    object-position: center center;
  }

  .project-axis-index {
    overflow: hidden;
  }

  .project-axis-shell,
  .project-axis-layout,
  .project-axis-list,
  .project-axis-section,
  .project-axis-section-model {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .project-axis-intro {
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
  }

  .project-axis-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .project-axis-nav {
    position: static;
    top: auto;
    display: grid;
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-axis-nav a {
    min-width: 0;
  }

  .project-axis-map {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.4rem;
  }
}

@media (max-width: 600px) {
  .project-axis-nav {
    grid-template-columns: 1fr;
  }

  .project-axis-section,
  .project-axis-section-model {
    overflow: hidden;
  }
}

/* Mobile corrections requested after validation - 2026-08-22 */
@media (max-width: 900px) {
  .project-axis-nav a.is-active {
    background: var(--navy);
    border-color: var(--navy);
    border-left-color: var(--coral);
    color: #fff;
  }

  .project-axis-nav a:nth-child(2).is-active {
    border-left-color: var(--magenta);
  }

  .project-axis-nav a:nth-child(3).is-active {
    border-left-color: var(--teal);
  }

  .project-axis-nav a:nth-child(4).is-active {
    border-left-color: var(--gold);
  }

  .project-axis-nav a.is-active span {
    display: block;
    color: #fff;
  }

  .contact-standard-hero.page-hero-with-media {
    padding-bottom: 0;
  }

  .contact-standard-hero.page-hero-with-media .page-hero-inner {
    display: flex !important;
    flex-direction: column;
  }

  .contact-standard-hero.page-hero-with-media .page-hero-copy {
    display: contents;
    text-align: left;
  }

  .contact-standard-hero.page-hero-with-media .page-hero-copy .section-label,
  .contact-standard-hero.page-hero-with-media .page-hero-copy h1,
  .contact-standard-hero.page-hero-with-media .page-hero-copy > p:not(.section-label) {
    order: 1;
    width: 100%;
    text-align: left;
  }

  .contact-standard-hero.page-hero-with-media .page-hero-media {
    order: 2;
    margin-top: 1.5rem;
  }

  .contact-standard-hero.page-hero-with-media .contact-page-actions {
    order: 3;
    width: 100%;
    margin: 1.5rem 0 0;
  }

  .contact-standard-hero.page-hero-with-media .contact-page-actions a {
    justify-content: center;
  }
}
