/* ---------- 1. Tokens ---------- */
:root {
  --bg: #fcfbf6;
  --bg-soft: #f3efe3;
  --card: #ffffff;
  --text: #171717;
  --muted: #5a5547;
  --line: #dfd3b1;
  --gold: #c7a24a;
  --gold-dark: #8a6a20;
  --gold-soft: #efe0b6;
  --dark: #1f1a10;

  --shadow-sm: 0 8px 24px rgba(107, 79, 20, 0.08);
  --shadow-md: 0 12px 30px rgba(107, 79, 20, 0.12);
  --shadow-lg: 0 18px 48px rgba(107, 79, 20, 0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1140px;
  --gutter: 20px;
  --header-h: 85px;

  --ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.975rem, 0.94rem + 0.18vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1100px 500px at 10% 0%, rgba(199, 162, 74, 0.18), transparent 52%),
    radial-gradient(900px 420px at 96% 10%, rgba(212, 181, 104, 0.16), transparent 48%),
    var(--bg);
  background-attachment: fixed;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: "Teko", "Manrope", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

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

img {
  height: auto;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 3px;
}

::selection {
  background: var(--gold-soft);
  color: #1a1408;
}

/* ---------- 3. Utilities ---------- */
.container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: #f9e8ba;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--ease);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.kicker {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.kicker--small {
  font-size: 0.95rem;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease),
    color var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn--large {
  min-height: 52px;
  padding: 14px 24px;
}

.btn--block {
  width: 100%;
}

.btn--gold {
  background: linear-gradient(120deg, #f0d995 0%, #e7c267 60%, #e7b84c 100%);
  color: #1a1408;
  box-shadow: var(--shadow-md);
}

.btn--gold:hover {
  box-shadow: 0 22px 40px rgba(107, 79, 20, 0.22);
}

.btn--outline {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.75);
  color: #3f2f10;
}

.btn--outline:hover {
  background: #fff;
  border-color: var(--gold-dark);
}

.btn--dark {
  background: var(--dark);
  color: #f9e8ba;
}

.btn--dark:hover {
  background: #2c2415;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- 4. Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(199, 162, 74, 0.22);
  background: rgba(255, 252, 243, 0.86);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--ease), background var(--ease);
}

.header.is-scrolled {
  background: rgba(255, 252, 243, 0.96);
  box-shadow: 0 6px 24px rgba(107, 79, 20, 0.1);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border-radius: var(--radius-sm);
  transition: opacity var(--ease);
}

.brand:hover {
  opacity: 0.82;
}

.brand__logo {
  width: 56px;
  height: 56px;
  flex: none;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.15;
}

.brand__text strong {
  font-family: "Teko", sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

.brand__text span {
  font-size: 0.78rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: #3d382e;
  transition: background var(--ease), color var(--ease);
}

.nav__list a:hover {
  color: #1e1a12;
  background: rgba(199, 162, 74, 0.18);
}

.nav__list a.is-active {
  color: #1e1a12;
  background: rgba(199, 162, 74, 0.26);
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #473a1a;
  transition: transform var(--ease), opacity var(--ease);
}

.nav__toggle span + span {
  margin-top: 5px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- 5. Sections ---------- */
.section {
  padding: clamp(56px, 7vw, 88px) 0;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(199, 162, 74, 0.08), rgba(199, 162, 74, 0)),
    var(--bg-soft);
  border-block: 1px solid rgba(199, 162, 74, 0.2);
}

.section__head {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.section__head h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 1.4rem + 2.6vw, 3.4rem);
}

.section__intro {
  max-width: 64ch;
  margin: 14px 0 0;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 80px) 0 clamp(48px, 6vw, 72px);
}

.hero__blob {
  position: absolute;
  z-index: 0;
  border-radius: var(--radius-pill);
  pointer-events: none;
  filter: blur(60px);
}

.hero__blob--one {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(231, 194, 103, 0.5), transparent 70%);
}

.hero__blob--two {
  width: 340px;
  height: 340px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(199, 162, 74, 0.35), transparent 70%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

.hero__content h1 {
  margin: 10px 0 0;
  font-size: clamp(2.9rem, 1.6rem + 6.5vw, 5.6rem);
  line-height: 0.88;
}

.hero__content h1 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.15rem, 0.85rem + 1.6vw, 2rem);
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  text-transform: uppercase;
}

.lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__panel {
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero__panel h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.info-list {
  display: grid;
  gap: 11px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 14px;
  border: 1px solid #eadcaf;
  border-radius: 14px;
  background: linear-gradient(140deg, #fff, #faf4e5);
}

.info-list strong {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7d6a40;
}

.info-list > li > span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.info-list a:hover {
  text-decoration: underline;
}

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0;
  font-size: 1.8rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

/* Instagram - divulgação do perfil */
.ig-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffdf7 0%, #fbf3df 100%);
  box-shadow: var(--shadow-lg);
}

.ig-promo__profile {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.ig-promo__avatar {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  flex: none;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 85%, #515bd4);
}

.ig-promo__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}

.ig-promo__info {
  min-width: 0;
}

.ig-promo__label {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.ig-promo__handle {
  margin: 2px 0 0;
  font-size: clamp(1.15rem, 0.95rem + 1.1vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.ig-promo__text {
  max-width: 44ch;
  margin: 8px 0 0;
  color: var(--muted);
}

.ig-promo__cta {
  flex: none;
}

/* Presidência */
.president {
  display: grid;
  grid-template-columns: clamp(240px, 26vw, 320px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.president__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid #d8bb72;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  background: radial-gradient(circle at 30% 30%, #fff7e2 0%, #f2dfad 60%, #e2c476 100%);
}

.president__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.president__content h2 {
  margin: 8px 0 12px;
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.4rem);
}

.president__content p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
}

/* Parcerias */
.partnership-banner {
  max-width: 880px;
  margin: 0 auto clamp(18px, 2.5vw, 26px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.partnership-banner img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.partner-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-card__profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-card__profile img {
  width: 68px;
  height: 68px;
  flex: none;
  border: 2px solid #d5b461;
  border-radius: 50%;
  object-fit: cover;
  background: #f6edd4;
}

.partner-card__profile h3 {
  margin: 0;
  font-size: 1.7rem;
}

.partner-card__profile p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6e5d32;
  overflow-wrap: anywhere;
}

.partner-card > p {
  margin: 16px 0 20px;
  color: var(--muted);
}

.partner-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Projetos e convênios */
.section--projects {
  position: relative;
  overflow: hidden;
}

.section--projects::before {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - var(--container)) / 2));
  width: min(360px, 34vw);
  height: 5px;
  border-radius: 0 0 0 var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), #e6c46f);
  content: "";
}

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

.projects-list__item {
  min-width: 0;
}

.project-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.project-summary:hover {
  border-left-color: var(--gold-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.project-summary__content {
  min-width: 0;
}

.project-summary__label {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.project-summary h3 {
  max-width: 33ch;
  margin: 7px 0 0;
  font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.25rem);
  line-height: 1;
}

.project-summary__date {
  margin: 12px 0 0;
  font-weight: 800;
  color: #5b4a20;
}

.project-summary__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: none;
  color: #075ca8;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color var(--ease), gap var(--ease);
}

.project-summary__link:hover {
  gap: 13px;
  color: #003f78;
}

.project-summary__link span {
  font-size: 1.28em;
  line-height: 1;
}

/* Página de relatório / memorial */
.project-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px) 0 clamp(42px, 6vw, 72px);
  border-bottom: 1px solid rgba(199, 162, 74, 0.28);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(251, 242, 214, 0.82)),
    var(--bg-soft);
}

.project-hero::after {
  position: absolute;
  right: -110px;
  bottom: -155px;
  width: min(460px, 52vw);
  height: min(460px, 52vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 162, 74, 0.28), transparent 67%);
  content: "";
  pointer-events: none;
}

.project-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  margin-bottom: clamp(26px, 4vw, 40px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #665a40;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: #9e8954;
  content: "/";
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #003f78;
}

.project-hero__content {
  max-width: 940px;
}

.project-hero h1 {
  max-width: 24ch;
  margin: 10px 0 0;
  font-size: clamp(2.75rem, 1.7rem + 4.9vw, 5rem);
}

.project-hero__lead {
  max-width: 69ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.28vw, 1.16rem);
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: clamp(25px, 4vw, 36px) 0 0;
  padding: 0;
  list-style: none;
}

.project-meta li {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid rgba(190, 157, 78, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.7);
}

.project-meta span,
.report-facts dt {
  display: block;
  font-family: "Teko", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.project-meta strong {
  display: block;
  margin-top: 4px;
  line-height: 1.35;
}

.project-report {
  padding: clamp(44px, 6vw, 78px) 0;
}

.project-report__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.report-document {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.report-document__eyebrow {
  margin: 0;
  font-family: "Teko", sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.report-document__title {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.1rem);
}

.report-section {
  margin-top: clamp(30px, 4vw, 42px);
  padding-top: clamp(30px, 4vw, 42px);
  border-top: 1px solid #eadcaf;
}

.report-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 1.45rem + 1.6vw, 2.6rem);
}

.report-section p {
  max-width: 70ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.report-section p strong {
  color: var(--text);
}

.report-intro {
  font-weight: 800;
  color: #3f331a !important;
}

.agenda-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: agenda;
}

.agenda-list li {
  position: relative;
  min-height: 64px;
  padding: 14px 16px 14px 56px;
  border: 1px solid #eadcaf;
  border-radius: var(--radius-sm);
  background: #fffcf4;
  color: #403720;
}

.agenda-list li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #ead79b;
  color: #4f3c13;
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  content: counter(agenda);
  counter-increment: agenda;
}

.agenda-list time {
  display: block;
  margin-bottom: 3px;
  font-weight: 800;
  color: #6a5420;
}

.agenda-list li:not(:first-child) {
  font-weight: 700;
}

.report-quote {
  margin: 20px 0 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--gold);
}

.report-quote p {
  margin: 0;
}

.report-quote p + p {
  margin-top: 14px;
}

.report-aside {
  position: sticky;
  top: calc(var(--header-h) + 22px);
}

.report-facts {
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fffdf7, #fbf3df);
  box-shadow: var(--shadow-sm);
}

.report-facts h2 {
  margin: 0 0 17px;
  font-size: 1.85rem;
}

.report-facts dl {
  display: grid;
  gap: 15px;
  margin: 0;
}

.report-facts div {
  padding-top: 15px;
  border-top: 1px solid #eadcaf;
}

.report-facts div:first-child {
  padding-top: 0;
  border-top: 0;
}

.report-facts dd {
  margin: 4px 0 0;
  color: #41371f;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.project-media {
  padding: clamp(46px, 6vw, 80px) 0;
  border-block: 1px solid rgba(199, 162, 74, 0.2);
  background:
    linear-gradient(180deg, rgba(199, 162, 74, 0.08), rgba(199, 162, 74, 0)),
    var(--bg-soft);
}

.project-media__head {
  max-width: 64ch;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.project-media__head h2 {
  margin: 8px 0 0;
  font-size: clamp(2.1rem, 1.45rem + 2.5vw, 3.35rem);
}

.project-media__head p:not(.kicker) {
  margin: 13px 0 0;
  color: var(--muted);
}

.project-media__subhead {
  margin: clamp(30px, 4vw, 46px) 0 16px;
}

.project-media__subhead h3 {
  margin: 0;
  font-size: clamp(1.65rem, 1.25rem + 1.4vw, 2.2rem);
}

.project-gallery {
  columns: 3 260px;
  column-gap: 16px;
}

.project-gallery--landscape {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  columns: unset;
  gap: 16px;
}

.project-gallery figure {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(199, 162, 74, 0.35);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 8px 20px rgba(107, 79, 20, 0.08);
}

.project-gallery--landscape figure {
  margin: 0;
}

.project-gallery img {
  width: 100%;
  height: auto;
}

.project-video {
  max-width: 860px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(199, 162, 74, 0.45);
  border-radius: var(--radius-md);
  background: #171717;
  box-shadow: var(--shadow-lg);
}

.project-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(70vh, 650px);
  background: #171717;
}

.project-video__caption {
  margin: 0;
  padding: 12px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Versão documental: conteúdo sem cartões, sombras ou ornamentos. */
.page-project .project-hero {
  padding: clamp(30px, 5vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.page-project .project-hero::after {
  display: none;
}

.page-project .breadcrumbs {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.page-project .breadcrumbs ol {
  color: var(--muted);
  font-weight: 400;
}

.page-project .breadcrumbs li + li::before {
  color: var(--muted);
}

.page-project .project-hero h1 {
  max-width: 28ch;
  font-size: clamp(2.5rem, 1.7rem + 3.5vw, 4.2rem);
}

.page-project .project-meta {
  display: block;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-project .project-report {
  padding: clamp(38px, 5vw, 64px) 0;
}

.page-project .project-report__layout {
  display: block;
  max-width: 860px;
  margin-inline: auto;
}

.page-project .report-document {
  max-width: 72ch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-project .report-section {
  margin-top: clamp(28px, 4vw, 38px);
  padding-top: clamp(28px, 4vw, 38px);
  border-top-color: var(--line);
}

.page-project .agenda-list {
  display: block;
  margin: 16px 0 0;
  padding-left: 1.25em;
  list-style: disc;
  counter-reset: none;
}

.page-project .agenda-list li {
  min-height: 0;
  margin-top: 8px;
  padding: 0 0 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
}

.page-project .agenda-list li::before {
  display: none;
}

.page-project .agenda-list li:not(:first-child) {
  font-weight: 400;
}

.page-project .report-quote {
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

.page-project .project-media {
  padding: clamp(38px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: var(--bg);
}

.page-project .project-gallery {
  columns: 3 250px;
  column-gap: 12px;
}

.page-project .project-gallery--landscape {
  gap: 12px;
}

.page-project .project-gallery figure {
  margin-bottom: 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-project .project-video {
  margin: 20px 0 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-project .project-video__caption {
  padding: 8px 0;
  background: transparent;
}

/* Contato */
.section--contact {
  padding-block: clamp(60px, 8vw, 92px);
}

.contact-cta {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid #d1ad57;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(140deg, rgba(255, 248, 228, 0.94), rgba(227, 198, 122, 0.86)),
    #fff8e7;
  text-align: center;
  box-shadow: 0 18px 46px rgba(107, 79, 20, 0.2);
}

.contact-cta h2 {
  margin: 8px 0;
  font-size: clamp(2.6rem, 1.4rem + 7vw, 5.6rem);
  letter-spacing: 0.05em;
  color: #1f1708;
}

.contact-cta h2 a:hover {
  text-decoration: underline;
}

.contact-cta p {
  margin: 0;
  font-weight: 600;
  color: #4d3f1f;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.contact-cta__status {
  min-height: 1.5em;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #4d3f1f;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(199, 162, 74, 0.25);
  background: #f8f2e3;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "brand nav"
    "divider divider"
    "legal legal";
  gap: 20px 32px;
  align-items: start;
  padding: 32px 0;
}

.footer__brand {
  grid-area: brand;
  min-width: 0;
}

.footer__brand strong {
  display: block;
}

.footer__brand p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer__brand a:hover {
  text-decoration: underline;
}

.footer__nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  justify-self: end;
  min-width: 0;
}

.footer__nav a {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--ease);
}

.footer__nav a:hover {
  background: rgba(199, 162, 74, 0.2);
}

.footer__legal {
  grid-area: legal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  min-width: 0;
  color: #7b6c46;
}

.footer__legal small {
  min-width: 0;
}

.footer__credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.footer__credit a:hover {
  text-decoration-thickness: 2px;
}

.footer__inner::after {
  display: block;
  grid-area: divider;
  width: 100%;
  height: 1px;
  background: rgba(199, 162, 74, 0.3);
  content: "";
}
.footer__credit {
  text-align: right;
}

.page-project .footer__inner::after,
body:not(.page-project) .footer__inner::after {
  background: rgba(255, 255, 255, 0.18);
}

/* WhatsApp flutuante (mobile) */
.whatsapp-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: none;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform var(--ease);
}

.whatsapp-fab:hover {
  transform: scale(1.06);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}

/* ---------- 6. Responsividade ---------- */
@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    max-width: 560px;
  }

  .nav__list a {
    padding: 8px 11px;
    font-size: 0.94rem;
  }
}

@media (max-width: 940px) {
  .president {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .president__photo-wrap {
    width: min(300px, 78vw);
  }

  .president__content p {
    margin-inline: auto;
  }

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

  .report-aside {
    position: static;
    max-width: 620px;
  }
}

/* Menu móvel */
@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav__toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    background: #fffdf6;
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav__list a {
    min-height: 50px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 1.02rem;
  }

  .nav__cta {
    margin-top: 6px;
    width: 100%;
  }

  .whatsapp-fab {
    display: grid;
  }
}

#relatorio-titulo{
  font-size: 34px;
}

@media (max-width: 720px) {
  .ig-promo {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .ig-promo__cta {
    width: 100%;
  }

  .partnership-banner img {
    max-height: 260px;
  }

  .project-summary {
    align-items: flex-start;
    flex-direction: column;
  }

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

  ul.project-meta li:last-child {
    grid-column: 1 / -1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "divider"
      "legal";
    gap: 16px;
  }

  .footer__nav {
    justify-self: stretch;
    width: 100%;
    margin-inline: 0;
  }

  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer__legal small,
  .footer__credit {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 520px) {
  :root {
    --header-h: 71px;
    --gutter: 16px;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }

  .brand__text strong {
    font-size: 1.5rem;
  }

  .brand__text span {
    font-size: 0.7rem;
  }

  .header__inner {
    padding: 12px 0;
  }

  .hero__actions .btn,
  .contact-cta__actions .btn {
    width: 100%;
  }

  .ig-promo__profile {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ig-promo__avatar {
    width: 78px;
    height: 78px;
  }

  .partner-card .btn {
    width: 100%;
  }

  .project-summary__link {
    min-height: 44px;
  }

  ul.project-meta {
    grid-template-columns: 1fr;
  }

  ul.project-meta li:last-child {
    grid-column: auto;
  }

  .report-document {
    border-radius: var(--radius-md);
  }

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

@media (max-width: 380px) {
  .brand__text span {
    display: none;
  }

  .partner-card__profile {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Telas largas */
@media (min-width: 1440px) {
  :root {
    --container: 1240px;
  }
}

/* ---------- Preferências do usuário ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .header,
  .nav,
  .whatsapp-fab,
  .skip-link,
  .hero__blob {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Redesign visual da página de projeto ---------- */
body.page-project {
  --bg: #f5f8fb;
  --bg-soft: #eef3f7;
  --card: #ffffff;
  --text: #102b50;
  --muted: #53657a;
  --line: #dbe4ec;
  --gold: #a7d600;
  --gold-dark: #16813b;
  --gold-soft: #e6f3bf;
  --dark: #062d5a;
  --container: 1080px;
  --gutter: 24px;
  --header-h: 82px;
  background: var(--bg);
  color: var(--text);
  font-size: clamp(0.86rem, 0.82rem + 0.12vw, 0.96rem);
}

.page-project .container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
}

.page-project .header {
  border-bottom: 1px solid #e3e9ee;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 16px rgba(6, 45, 90, 0.06);
  backdrop-filter: blur(14px);
}

.page-project .header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.1);
}

.page-project .header__inner {
  min-height: var(--header-h);
  padding: 10px 0;
}

.page-project .brand {
  gap: 10px;
}

.page-project .brand__logo {
  width: 58px;
  height: 58px;
}

.page-project .brand__text strong {
  color: #0b3568;
  font-size: 1.8rem;
  line-height: 0.95;
}

.page-project .brand__text span {
  max-width: 180px;
  color: #20833f;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}

.page-project .nav {
  gap: 8px;
}

.page-project .nav__list {
  gap: 0;
}

.page-project .nav__list a {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 0;
  color: #0c2f59;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-project .nav__list a:hover,
.page-project .nav__list a.is-active {
  background: transparent;
  color: #167b3a;
}

.page-project .nav__list a.is-active::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: #208b42;
  content: "";
}

.page-project .nav__cta {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 7px;
  background: #16813b;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.page-project .nav__cta:hover {
  background: #0f6d31;
}

.page-project .nav__toggle {
  border-color: #dbe4ec;
  border-radius: 7px;
  background: #fff;
}

.page-project .nav__toggle span {
  background: #0b3568;
}

.page-project .project-hero {
  isolation: isolate;
  padding: clamp(34px, 5vw, 60px) 0 clamp(42px, 6vw, 72px);
  border-bottom: 0;
  background: #062d5a;
  color: #fff;
}

.page-project .project-hero::before {
  position: absolute;
  top: -170px;
  right: 11%;
  z-index: -1;
  width: 320px;
  height: 620px;
  background: rgba(18, 132, 59, 0.76);
  content: "";
  transform: rotate(36deg);
}

.page-project .project-hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  z-index: -1;
  width: 600px;
  height: 600px;
  border: 70px solid rgba(167, 214, 0, 0.15);
  border-radius: 50%;
  background: transparent;
  content: "";
  pointer-events: none;
}

.page-project .project-hero .container {
  max-width: 940px;
}

.page-project .breadcrumbs {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-project .breadcrumbs ol {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.page-project .breadcrumbs li + li::before {
  color: rgba(255, 255, 255, 0.44);
}

.page-project .breadcrumbs a:hover {
  color: #b9e339;
}

.page-project .project-hero h1 {
  max-width: 28ch;
  margin-top: 0;
  color: #fff;
  font-size: clamp(2.25rem, 1.5rem + 3.6vw, 4rem);
  letter-spacing: 0.015em;
  line-height: 0.98;
}

.page-project .project-meta {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.page-project .project-report {
  padding: clamp(38px, 5vw, 64px) 0;
  background: #f5f8fb;
}

.page-project .project-report__layout {
  max-width: 800px;
}

.page-project .report-document {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #e0e8ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(6, 45, 90, 0.08);
}

.page-project .report-document__title {
  margin-top: 0;
  color: #0b3568;
  font-size: clamp(1.85rem, 1.35rem + 1.8vw, 2.65rem);
}

.page-project .report-section {
  margin-top: clamp(25px, 3vw, 34px);
  padding-top: clamp(25px, 3vw, 34px);
  border-top-color: #e3eaf0;
}

.page-project .report-section h2 {
  color: #0b3568;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.15rem);
}

.page-project .report-section p {
  margin-top: 11px;
  color: #53657a;
  font-size: 0.91rem;
  line-height: 1.7;
}

.page-project .report-section p strong {
  color: #102b50;
}

.page-project .report-intro {
  color: #16813b !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-project .agenda-list {
  margin-top: 14px;
}

.page-project .agenda-list li {
  color: #284565;
  font-size: 0.9rem;
  line-height: 1.55;
}

.page-project .agenda-list time {
  color: #16813b;
  font-size: 0.8rem;
}

.page-project .report-quote {
  border-left: 3px solid #a7d600;
}

.page-project .project-media {
  padding: clamp(40px, 5vw, 68px) 0;
  border-top: 1px solid #dfe8ef;
  border-bottom: 0;
  background: #fff;
}

.page-project .project-media:nth-of-type(even) {
  background: #f5f8fb;
}

.page-project .project-media__head {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-project .project-media__head h2 {
  color: #0b3568;
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.8rem);
}

.page-project .project-media__head p:not(.kicker) {
  color: #53657a;
  font-size: 0.9rem;
}

.page-project .kicker {
  color: #16813b;
  font-size: 0.78rem;
  font-weight: 800;
}

.page-project .project-gallery {
  columns: 3 220px;
  column-gap: 14px;
}

.page-project .project-gallery--landscape {
  columns: unset;
  gap: 14px;
}

.page-project .project-gallery figure {
  margin-bottom: 14px;
  border: 1px solid #dce6ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.08);
}

.page-project .project-gallery--landscape figure {
  margin-bottom: 0;
}

.page-project .project-video {
  margin-top: 28px;
  border: 1px solid #dce6ed;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(6, 45, 90, 0.1);
}

.page-project .project-video__caption {
  color: #53657a;
  font-size: 0.82rem;
}

.page-project .footer {
  border-top: 0;
  background: #062d5a;
  color: #fff;
}

.page-project .footer__inner {
  max-width: 1080px;
  padding: 28px 0;
}

.page-project .footer__brand strong {
  color: #fff;
  font-size: 0.95rem;
}

.page-project .footer__brand p,
.page-project .footer__inner small {
  color: rgba(255, 255, 255, 0.7);
}

.page-project .footer__nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.page-project .footer__nav a:hover {
  background: rgba(167, 214, 0, 0.16);
  color: #c3ed45;
}

.page-project .footer__inner small {
  border-top-color: rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

@media (max-width: 1180px) {
  .page-project .nav {
    background: #fff;
    border-bottom-color: #dbe4ec;
  }

  .page-project .nav__list a {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 0.82rem;
  }

  .page-project .nav__list a.is-active::after {
    right: auto;
    bottom: 8px;
    left: 14px;
    width: 24px;
  }
}

@media (max-width: 520px) {
  body.page-project {
    --header-h: 70px;
    --gutter: 16px;
  }

  .page-project .brand__logo {
    width: 46px;
    height: 46px;
  }

  .page-project .brand__text strong {
    font-size: 1.5rem;
  }

  .page-project .brand__text span {
    max-width: 150px;
    font-size: 0.54rem;
  }

  .page-project .project-hero::before {
    right: -90px;
    width: 180px;
  }

  .page-project .project-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .page-project .report-document {
    padding: 24px 20px;
    border-radius: 11px;
  }

  .page-project .project-gallery {
    columns: 2 140px;
    column-gap: 10px;
  }

  .page-project .project-gallery figure {
    margin-bottom: 10px;
    border-radius: 7px;
  }

  .page-project .project-gallery--landscape {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---------- Redesign visual da página inicial ---------- */
body:not(.page-project) {
  --bg: #f5f8fb;
  --bg-soft: #edf3f7;
  --card: #ffffff;
  --text: #0c315d;
  --muted: #53657a;
  --line: #dbe5ed;
  --gold: #9ccc19;
  --gold-dark: #16813b;
  --gold-soft: #e8f3c8;
  --dark: #062d5a;
  --container: 1080px;
  --gutter: 24px;
  --header-h: 82px;
  background: #f5f8fb;
  color: var(--text);
  font-size: clamp(0.86rem, 0.82rem + 0.12vw, 0.96rem);
}

body:not(.page-project) h1,
body:not(.page-project) h2,
body:not(.page-project) h3 {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

body:not(.page-project) .container {
  width: min(var(--container), 100% - (var(--gutter) * 2));
}

body:not(.page-project) .header {
  border-bottom: 1px solid #e1e9ef;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 16px rgba(6, 45, 90, 0.06);
}

body:not(.page-project) .header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.1);
}

body:not(.page-project) .header__inner {
  min-height: var(--header-h);
  padding: 10px 0;
}

body:not(.page-project) .brand {
  gap: 10px;
}

body:not(.page-project) .brand__logo {
  width: 58px;
  height: 58px;
}

body:not(.page-project) .brand__text strong {
  color: #0b3568;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

body:not(.page-project) .brand__text span {
  max-width: 180px;
  color: #1b803d;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: normal;
}

body:not(.page-project) .nav {
  gap: 8px;
}

body:not(.page-project) .nav__list {
  gap: 0;
}

body:not(.page-project) .nav__list a {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 0;
  color: #0b315d;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

body:not(.page-project) .nav__list a:hover,
body:not(.page-project) .nav__list a.is-active {
  background: transparent;
  color: #16813b;
}

body:not(.page-project) .nav__list a.is-active::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: #16813b;
  content: "";
}

body:not(.page-project) .nav__cta,
body:not(.page-project) .btn--dark {
  border-color: #16813b;
  border-radius: 7px;
  background: #16813b;
  color: #fff;
}

body:not(.page-project) .nav__cta {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.69rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

body:not(.page-project) .nav__cta:hover,
body:not(.page-project) .btn--dark:hover {
  background: #0e6c30;
}

body:not(.page-project) .nav__toggle {
  border-color: #dbe5ed;
  border-radius: 7px;
}

body:not(.page-project) .nav__toggle span {
  background: #0b3568;
}

body:not(.page-project) .btn {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 7px;
  font-size: 0.79rem;
}

body:not(.page-project) .btn--large {
  min-height: 46px;
  padding: 12px 20px;
}

body:not(.page-project) .btn--gold {
  background: #16813b;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 129, 59, 0.2);
}

body:not(.page-project) .btn--gold:hover {
  background: #0e6c30;
  box-shadow: 0 12px 24px rgba(22, 129, 59, 0.25);
}

body:not(.page-project) .btn--outline {
  border-color: #57a76e;
  background: transparent;
  color: #fff;
}

body:not(.page-project) .btn--outline:hover {
  border-color: #a7d635;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

body:not(.page-project) .kicker {
  color: #29954b;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.095em;
}

body:not(.page-project) .section {
  padding: clamp(50px, 6vw, 72px) 0;
}

body:not(.page-project) .section--alt {
  border-block: 1px solid #e0e8ee;
  background: #f3f7fa;
}

body:not(.page-project) .section__head {
  margin-bottom: clamp(20px, 2.5vw, 30px);
}

body:not(.page-project) .section__head h2 {
  margin-top: 7px;
  color: #0b3568;
  font-size: clamp(1.75rem, 1.35rem + 1.8vw, 2.7rem);
}

body:not(.page-project) .section__intro {
  margin-top: 12px;
  color: #53657a;
  font-size: 0.91rem;
}

body:not(.page-project) .hero {
  isolation: isolate;
  min-height: 455px;
  padding: clamp(52px, 6vw, 76px) 0;
  background: #062d5a;
}

body:not(.page-project) .hero::before {
  display: block;
  position: absolute;
  top: -250px;
  right: 14%;
  z-index: -1;
  width: 320px;
  height: 780px;
  background: rgba(14, 128, 55, 0.82);
  content: "";
  transform: rotate(37deg);
}

body:not(.page-project) .hero::after {
  display: block;
  position: absolute;
  top: -260px;
  right: -170px;
  z-index: -1;
  width: 640px;
  height: 640px;
  border: 92px solid rgba(248, 196, 24, 0.86);
  border-radius: 50%;
  content: "";
}

body:not(.page-project) .hero__blob {
  opacity: 0;
}

body:not(.page-project) .hero__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

body:not(.page-project) .hero__content {
  max-width: 610px;
}

body:not(.page-project) .hero .kicker {
  color: #9ed432;
}

body:not(.page-project) .hero__content h1 {
  margin-top: 9px;
  color: #fff;
  font-size: clamp(3rem, 2rem + 4.4vw, 4.75rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

body:not(.page-project) .hero__content h1 span {
  margin-top: 13px;
  color: #f7c51c;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(0.95rem, 0.78rem + 0.8vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1.25;
}

body:not(.page-project) .lead {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  line-height: 1.7;
}

body:not(.page-project) .hero__actions {
  margin-top: 23px;
  gap: 10px;
}

body:not(.page-project) .hero__panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(4, 38, 78, 0.75);
  box-shadow: 0 16px 34px rgba(0, 23, 50, 0.22);
  backdrop-filter: blur(8px);
}

body:not(.page-project) .hero__panel h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.25rem;
}

body:not(.page-project) .info-list {
  gap: 8px;
  margin-bottom: 15px;
}

body:not(.page-project) .info-list li {
  padding: 11px 12px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.81rem;
}

body:not(.page-project) .info-list strong {
  color: #a7d635;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.63rem;
}

body:not(.page-project) .card,
body:not(.page-project) .partner-card {
  padding: 20px;
  border-color: #dfe8ef;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.07);
}

body:not(.page-project) .card:hover,
body:not(.page-project) .partner-card:hover {
  box-shadow: 0 12px 28px rgba(6, 45, 90, 0.12);
}

body:not(.page-project) .card h3,
body:not(.page-project) .partner-card__profile h3 {
  color: #0b3568;
  font-size: 1.05rem;
}

body:not(.page-project) .card p,
body:not(.page-project) .partner-card > p {
  color: #53657a;
  font-size: 0.88rem;
  line-height: 1.65;
}

body:not(.page-project) .ig-promo {
  padding: clamp(22px, 3vw, 30px);
  border-color: #dce7ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(6, 45, 90, 0.07);
}

body:not(.page-project) .ig-promo__avatar {
  background: linear-gradient(135deg, #16813b, #0b3568);
}

body:not(.page-project) .ig-promo__label {
  color: #16813b;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

body:not(.page-project) .ig-promo__handle {
  color: #0b3568;
  font-size: clamp(1.05rem, 0.95rem + 0.8vw, 1.35rem);
}

body:not(.page-project) .ig-promo__text {
  color: #53657a;
  font-size: 0.88rem;
}

body:not(.page-project) .president {
  max-width: 880px;
  margin-inline: auto;
}

body:not(.page-project) .president__photo-wrap {
  border: 4px solid #4ca667;
  box-shadow: 0 14px 32px rgba(6, 45, 90, 0.14);
  background: #e9f3eb;
}

body:not(.page-project) .president__content h2 {
  color: #0b3568;
  font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.7rem);
}

body:not(.page-project) .president__content p {
  color: #53657a;
  font-size: 0.91rem;
  line-height: 1.7;
}

body:not(.page-project) .partnership-banner {
  max-width: 780px;
  border-color: #dbe6ed;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(6, 45, 90, 0.08);
}

body:not(.page-project) .partner-card__profile img {
  border-color: #55a96b;
  background: #eff8f0;
}

body:not(.page-project) .partner-card__profile p {
  color: #16813b;
  font-size: 0.76rem;
}

body:not(.page-project) .partner-card .btn--outline {
  color: #0c5d2d;
}

body:not(.page-project) .partner-card .btn--outline:hover {
  background: #edf8ef;
  color: #0c5d2d;
}

body:not(.page-project) .section--projects::before {
  height: 4px;
  background: linear-gradient(90deg, #16813b, #a6d633);
}

body:not(.page-project) .project-summary {
  padding: clamp(20px, 3vw, 26px);
  border-color: #dce6ed;
  border-left-color: #16813b;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.07);
}

body:not(.page-project) .project-summary:hover {
  border-left-color: #a2d431;
  box-shadow: 0 12px 28px rgba(6, 45, 90, 0.12);
}

body:not(.page-project) .project-summary__label {
  color: #16813b;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
}

body:not(.page-project) .project-summary h3 {
  color: #0b3568;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.55rem);
}

body:not(.page-project) .project-summary__date {
  color: #53657a;
  font-size: 0.82rem;
}

body:not(.page-project) .project-summary__link {
  color: #16813b;
  font-size: 0.84rem;
}

body:not(.page-project) .project-summary__link:hover {
  color: #0c5d2d;
}

body:not(.page-project) .section--contact {
  padding-block: clamp(52px, 6vw, 74px);
}

body:not(.page-project) .contact-cta {
  max-width: 880px;
  margin-inline: auto;
  border: 0;
  border-radius: 14px;
  background: #062d5a;
  box-shadow: 0 18px 40px rgba(6, 45, 90, 0.18);
}

body:not(.page-project) .contact-cta .kicker {
  color: #a7d635;
}

body:not(.page-project) .contact-cta h2 {
  color: #fff;
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.8rem);
}

body:not(.page-project) .contact-cta p,
body:not(.page-project) .contact-cta__status {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

body:not(.page-project) .contact-cta .btn--dark {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

body:not(.page-project) .contact-cta .btn--dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

body:not(.page-project) .footer {
  border-top: 0;
  background: #062d5a;
  color: #fff;
}

body:not(.page-project) .footer__inner {
  padding: 28px 0;
}

body:not(.page-project) .footer__brand strong {
  font-size: 0.9rem;
}

body:not(.page-project) .footer__brand p,
body:not(.page-project) .footer__inner small {
  color: rgba(255, 255, 255, 0.7);
}

body:not(.page-project) .footer__nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
}

body:not(.page-project) .footer__nav a:hover {
  background: rgba(167, 214, 0, 0.16);
  color: #c6ed4a;
}

body:not(.page-project) .footer__inner small {
  border-top-color: rgba(255, 255, 255, 0.18);
  font-size: 0.71rem;
}

@media (max-width: 1180px) {
  body:not(.page-project) .nav {
    border-bottom-color: #dbe5ed;
    background: #fff;
  }

  body:not(.page-project) .nav__list a {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 0.8rem;
  }

  body:not(.page-project) .nav__list a.is-active::after {
    right: auto;
    bottom: 8px;
    left: 14px;
    width: 24px;
  }

  body:not(.page-project) .hero__grid {
    grid-template-columns: 1fr;
  }

  body:not(.page-project) .hero__panel {
    max-width: 540px;
  }
}

@media (max-width: 520px) {
  body:not(.page-project) {
    --header-h: 70px;
    --gutter: 16px;
  }

  body:not(.page-project) .brand__logo {
    width: 46px;
    height: 46px;
  }

  body:not(.page-project) .brand__text strong {
    font-size: 1.35rem;
  }

  body:not(.page-project) .brand__text span {
    max-width: 145px;
    font-size: 0.53rem;
  }

  body:not(.page-project) .hero {
    min-height: 0;
  }

  body:not(.page-project) .hero::before {
    right: -100px;
    width: 190px;
  }

  body:not(.page-project) .hero::after {
    top: -185px;
    right: -215px;
    width: 420px;
    height: 420px;
    border-width: 60px;
  }

  body:not(.page-project) .hero__content h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  body:not(.page-project) .hero__actions .btn {
    width: 100%;
  }
}

/* ---------- Ajustes institucionais: maior sobriedade e densidade ---------- */
body:not(.page-project) .section {
  padding: clamp(28px, 3vw, 40px) 0;
}

body:not(.page-project) .section__head {
  margin-bottom: clamp(16px, 2vw, 22px);
}

body:not(.page-project) .section__head h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.35vw, 2.15rem);
}

body:not(.page-project) .hero {
  min-height: 0;
  padding: clamp(42px, 4.5vw, 58px) 0;
}

body:not(.page-project) .hero::before,
body:not(.page-project) .hero::after {
  display: none;
}

body:not(.page-project) .hero__grid {
  gap: clamp(24px, 3vw, 42px);
}

body:not(.page-project) .hero__content h1 {
  font-size: clamp(2.5rem, 1.9rem + 3vw, 3.75rem);
}

body:not(.page-project) .hero__content h1 span {
  margin-top: 9px;
  font-size: clamp(0.85rem, 0.76rem + 0.5vw, 1.05rem);
}

body:not(.page-project) .lead {
  margin-top: 13px;
}

body:not(.page-project) .hero__actions {
  margin-top: 18px;
}

body:not(.page-project) .hero__panel {
  padding: 18px;
  border-radius: 6px;
  box-shadow: none;
  backdrop-filter: none;
}

body:not(.page-project) .card,
body:not(.page-project) .partner-card,
body:not(.page-project) .ig-promo,
body:not(.page-project) .partnership-banner,
body:not(.page-project) .project-summary,
body:not(.page-project) .contact-cta {
  border-radius: 6px;
  box-shadow: none;
}

body:not(.page-project) .card:hover,
body:not(.page-project) .partner-card:hover,
body:not(.page-project) .project-summary:hover {
  box-shadow: none;
  transform: none;
}

body:not(.page-project) .ig-promo,
body:not(.page-project) .contact-cta {
  padding: clamp(20px, 2.5vw, 28px);
}

body:not(.page-project) .president__content h2 {
  font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.2rem);
}

body:not(.page-project) .contact-cta h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
}

.page-project .project-hero {
  padding: clamp(28px, 3.5vw, 42px) 0;
}

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

.page-project .project-hero h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.15rem);
}

.page-project .project-report {
  padding: clamp(28px, 3vw, 40px) 0;
  background: #fff;
}

.page-project .project-report__layout {
  max-width: 760px;
}

.page-project .report-document {
  max-width: 72ch;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-project .report-document__title {
  font-size: clamp(1.65rem, 1.35rem + 1.15vw, 2.15rem);
}

.page-project .report-section {
  margin-top: clamp(20px, 2.5vw, 28px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top-color: #dfe7ed;
}

.page-project .report-section h2 {
  font-size: clamp(1.35rem, 1.15rem + 0.85vw, 1.75rem);
}

.page-project .report-section p {
  font-size: 0.88rem;
  line-height: 1.65;
}

.page-project .report-quote {
  margin-top: 14px;
  padding: 0;
  border: 0;
}

.page-project .project-media {
  padding: clamp(28px, 3vw, 40px) 0;
}

.page-project .project-media__head {
  margin-bottom: clamp(16px, 2vw, 22px);
}

.page-project .project-media__head h2 {
  font-size: clamp(1.55rem, 1.25rem + 1.25vw, 2.1rem);
}

/* ---------- Fundo responsivo do hero ---------- */
body:not(.page-project) .hero {
  isolation: isolate;
  min-height: 0;
  background: #062d5a;
}

body:not(.page-project) .hero::before {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -2;
  width: auto;
  height: auto;
  background-image: url("../img/image_background_hero.png");
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  opacity: 0.8;
  pointer-events: none;
  transform: none;
}

body:not(.page-project) .hero::after {
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 45, 90, 0.9) 0%,
    rgba(6, 45, 90, 0.64) 38%,
    rgba(6, 45, 90, 0.16) 70%,
    rgba(6, 45, 90, 0.38) 100%
  );
  content: "";
  pointer-events: none;
}

@media (max-width: 720px) {
  body:not(.page-project) .hero {
    min-height: 0;
    padding-block: clamp(36px, 8vw, 56px);
  }

  body:not(.page-project) .hero::before {
    background-position: 52% center;
  }
}

/* ---------- Contribuição via Pix ---------- */
.section--donation {
  border-block: 1px solid #dbe5ed;
  background: #edf3f7;
}

.donation {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.65fr);
  overflow: hidden;
  border: 1px solid #dbe5ed;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(6, 45, 90, 0.06);
}

.donation__scan {
  padding: 30px;
  background: #062d5a;
  color: #fff;
  text-align: center;
}

.donation__badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(198, 237, 74, 0.35);
  border-radius: var(--radius-pill);
  color: #c6ed4a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.donation__scan h3 {
  margin: 16px 0 22px;
  font-size: 1.45rem;
}

.donation__qr {
  max-width: 280px;
  margin: 0 auto;
}

.donation__qr img {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
}

.donation__qr figcaption {
  margin-top: 16px;
  color: #d2deeb;
  font-size: 0.78rem;
  line-height: 1.6;
}

.donation__recipient {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #d2deeb;
  font-size: 0.72rem;
}

.donation__recipient strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 0.82rem;
}

.donation__details {
  min-width: 0;
  padding: clamp(24px, 3vw, 36px);
}

.donation__heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.donation__heading h3 {
  margin: 0;
  font-size: 1.12rem;
}

.donation__details > p:not(.donation__status) {
  color: #53657a;
  font-size: 0.83rem;
}

.donation__label {
  display: block;
  margin: 16px 0 7px;
  color: #36516f;
  font-size: 0.74rem;
  font-weight: 700;
}

.donation__field {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 12px;
  border: 1px solid #d4dfe8;
  border-radius: 7px;
  background: #f6f8fa;
  color: #284565;
  font: 0.8rem / 1.6 "Manrope", system-ui, sans-serif;
}

.donation__code {
  resize: none;
  overflow-wrap: anywhere;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.76rem;
}

.donation__copy {
  width: 100%;
  margin-top: 12px;
}

.donation__alternative {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e1e9ef;
}

.donation__key-row {
  display: flex;
  gap: 10px;
}

.donation__copy-key {
  flex: none;
  border-color: #b6c9da;
  background: #fff;
  color: #0b3568;
}

.donation__copy-key:hover {
  border-color: #0b3568;
  background: #edf3f7;
}

.donation .btn:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.donation__status {
  min-height: 1.6em;
  margin: 12px 0 0;
  color: #126c32;
  font-size: 0.78rem;
  font-weight: 700;
}

.donation__note {
  margin: 8px 0 0;
}

@media (max-width: 900px) {
  .donation__key-row {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .donation {
    grid-template-columns: minmax(0, 1fr);
  }

  .donation__scan {
    padding: 24px;
  }

  .donation__details {
    padding: 24px 18px;
  }

  .donation__field {
    font-size: 0.75rem;
  }
}

/* ---------- Identidade do hero e equipe ---------- */
.hero__identity {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin-top: 9px;
}

.hero__logo {
  flex: none;
  width: clamp(76px, 8vw, 86px);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}

body:not(.page-project) .hero__identity h1 {
  min-width: 0;
  margin: 0;
}

body:not(.page-project) .team__president {
  max-width: none;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #dbe5ed;
  border-radius: 8px;
  background: #f3f7fa;
  text-align: left;
}

.team__president .president__photo-wrap {
  width: 160px;
}

.team__president h3 {
  margin: 6px 0 12px;
  color: #0b3568;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.25;
}

body:not(.page-project) .team__president .team__role {
  color: #16733a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team__grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team__grid--management {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

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

.team__member {
  min-width: 0;
  padding: 22px;
  border: 1px solid #dbe5ed;
  border-top: 3px solid #16813b;
  border-radius: 6px;
  background: #fff;
}

.team__member h3 {
  margin: 0;
  color: #0b3568;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: initial;
  overflow-wrap: anywhere;
}

.team__member p {
  margin: 8px 0 0;
  color: #53657a;
  font-size: 0.82rem;
  line-height: 1.6;
}

.team__technical {
  margin-top: clamp(28px, 4vw, 40px);
}

.team__grid--technical .team__member {
  border-top-color: #0b3568;
}

@media (max-width: 940px) {
  .team__grid--technical {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body:not(.page-project) .team__president {
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .team__president .president__photo-wrap {
    width: 128px;
  }

  .team__grid--management,
  .team__grid--technical {
    grid-template-columns: minmax(0, 1fr);
  }

  .team__member {
    padding: 18px 20px;
  }
}

/* ---------- Header e footer compartilhados com a pagina inicial ---------- */
/* A pagina do convenio mantem seus estilos de conteudo, mas usa exatamente o
   mesmo shell visual da pagina inicial. */
body.page-project .header {
  border-bottom: 1px solid #e1e9ef;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 3px 16px rgba(6, 45, 90, 0.06);
  backdrop-filter: blur(12px);
}

body.page-project .header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 22px rgba(6, 45, 90, 0.1);
}

body.page-project .header__inner {
  min-height: 82px;
  padding: 10px 0;
}

body.page-project .brand {
  gap: 10px;
}

body.page-project .brand__logo {
  width: 58px;
  height: 58px;
}

body.page-project .brand__text strong {
  color: #0b3568;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

body.page-project .brand__text span {
  max-width: 180px;
  color: #1b803d;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: normal;
}

body.page-project .nav {
  gap: 8px;
}

body.page-project .nav__list {
  gap: 0;
}

body.page-project .nav__list a {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 0;
  color: #0b315d;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

body.page-project .nav__list a:hover,
body.page-project .nav__list a.is-active {
  background: transparent;
  color: #16813b;
}

body.page-project .nav__list a.is-active::after {
  right: 12px;
  bottom: 0;
  left: 12px;
  width: auto;
  height: 2px;
  border-radius: var(--radius-pill);
  background: #16813b;
}

body.page-project .nav__cta {
  min-height: 38px;
  padding: 9px 14px;
  border-color: #16813b;
  border-radius: 7px;
  background: #16813b;
  color: #fff;
  font-size: 0.69rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

body.page-project .nav__cta:hover {
  background: #0e6c30;
}

body.page-project .nav__toggle {
  border-color: #dbe5ed;
  border-radius: 7px;
}

body.page-project .nav__toggle span {
  background: #0b3568;
}

body.page-project .footer {
  border-top: 0;
  background: #062d5a;
  color: #fff;
}

body.page-project .footer__inner {
  max-width: 1080px;
  padding: 28px 0;
}

body.page-project .footer__brand strong {
  font-size: 0.9rem;
}

body.page-project .footer__brand p,
body.page-project .footer__inner small {
  color: rgba(255, 255, 255, 0.7);
}

body.page-project .footer__nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
}

body.page-project .footer__nav a:hover {
  background: rgba(167, 214, 0, 0.16);
  color: #c6ed4a;
}

body.page-project .footer__inner small {
  border-top-color: rgba(255, 255, 255, 0.18);
  font-size: 0.71rem;
}

@media (max-width: 1180px) {
  body.page-project .nav {
    border-bottom-color: #dbe5ed;
    background: #fff;
  }

  body.page-project .nav__list a {
    min-height: 46px;
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 0.8rem;
  }

  body.page-project .nav__list a.is-active::after {
    right: auto;
    bottom: 8px;
    left: 14px;
    width: 24px;
  }
}

@media (max-width: 520px) {
  body.page-project .header__inner {
    min-height: 70px;
  }

  body.page-project .brand__logo {
    width: 46px;
    height: 46px;
  }

  body.page-project .brand__text strong {
    font-size: 1.35rem;
  }

  body.page-project .brand__text span {
    max-width: 145px;
    font-size: 0.53rem;
  }
}
