/* P&S — Pinotti & Schwartsman Associados
   Identidade: branco + azul institucional, retângulos retos, sem bordas arredondadas */

:root {
  --ps-blue: rgb(41, 104, 172);
  --ps-blue-deep: rgb(30, 80, 138);
  --ps-blue-soft: #e9eff7;
  --ink: #1a1a1a;
  --ink-2: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --bg: #ffffff;

  --serif: "PT Serif", "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max: 1240px;
  --gutter: clamp(32px, 4vw, 44px);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
  word-break: break-word;
}
h1 { font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
h2 { font-size: clamp(20px, 2.2vw, 27px); line-height: 1.3; }
h3 { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.35; }

p { margin: 0 0 1em; max-width: 64ch; }
p.lead {
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ps-blue);
  font-weight: 600;
  margin: 0 0 18px;
  display: inline-block;
}

.rule {
  width: 56px;
  height: 3px;
  background: var(--ps-blue);
  margin: 0 0 24px;
  display: block;
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--ps-blue);
  padding: 7px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.topbar a {
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color .15s;
}
.topbar a:hover { color: #fff; }
@media (max-width: 700px) {
  .topbar { display: none; }
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  height: 58px;
  width: auto;
  object-fit: fill;
}
.brand-text {
  display: none; /* the logo image carries the wordmark */
}
.nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
  margin-right: 16px;
}
.nav a {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 0 22px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background .15s, color .15s;
  font-weight: 500;
}
.nav a:hover {
  background: var(--ps-blue);
  color: #fff;
}
.nav a.active {
  background: var(--ps-blue);
  color: #fff;
}
.lang {
  display: inline-flex;
  font-size: 14px;
  letter-spacing: 0.12em;
  font-weight: 700;
  gap: 0;
  align-self: stretch;
}
.lang button {
  background: #fff;
  border: 1px solid transparent;
  font: inherit;
  letter-spacing: inherit;
  width: 90px;
  height: auto;
  color: var(--ps-blue);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.lang button.on {
  background: var(--ps-blue);
  color: #fff;
  border-color: var(--ps-blue);
}
.menu-toggle { display: none; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ps-blue);
  color: #fff;
  margin-top: 24px;
  padding: 28px 0 20px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer a:hover { opacity: .75; }
.site-footer .wordmark {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 8px;
}
.site-footer .small {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 32ch;
}
.site-footer .footer-address { white-space: pre-line; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

/* ---------- SHARED COMPONENTS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ps-blue);
  color: #fff;
  padding: 11px 18px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: background .15s;
}
.btn:hover { background: var(--ps-blue-deep); }
.btn.ghost {
  background: transparent;
  color: var(--ps-blue);
  border: 1px solid var(--ps-blue);
}
.btn.ghost:hover { background: var(--ps-blue); color: #fff; }
.btn .arrow { font-family: var(--sans); }

.section {
  padding-top: clamp(20px, 2.5vw, 36px);
  padding-bottom: clamp(20px, 2.5vw, 36px);
}
.section + .section { padding-top: 0; }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}

.mt-16 { margin-top: 16px; }
.mt-48 { margin-top: 48px; }

/* ---------- PAGE HEADER (subpages) ---------- */
.page-head {
  background: var(--ps-blue);
  color: #fff;
  padding: clamp(14px, 1.8vw, 22px) 0 clamp(12px, 1.5vw, 18px);
  margin-bottom: 0;
}
.page-head .eyebrow {
  color: rgba(255,255,255,0.75);
}
.page-head h1 {
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  max-width: none;
}
.page-head h1 span,
.hero h1 span { display: block; }
.page-head .meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  /* NAV — fullscreen overlay */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    min-height: -webkit-fill-available;
    z-index: 100;
    background: var(--ps-blue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .nav.open { display: flex; }
  .nav .lang { display: none; }

  .nav a {
    width: 100%;
    text-align: center;
    padding: 22px 40px;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .nav a:first-child { border-top: 1px solid rgba(255,255,255,0.12); }
  .nav a:hover,
  .nav a.active { background: rgba(255,255,255,0.1); color: #fff; }

  .nav.open .lang-mobile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
  }
  .nav.open .lang-mobile button {
    padding: 10px 28px;
    font-size: 13px;
    letter-spacing: 0.06em;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
  }
  .nav.open .lang-mobile button.on {
    background: #fff;
    color: var(--ps-blue);
    border-color: #fff;
  }

  /* HAMBURGER → X */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    width: 52px;
    height: 52px;
    cursor: pointer;
    padding: 0;
    align-self: center;
    margin-right: 8px;
    position: relative;
    z-index: 200;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: background .15s;
  }
  .menu-toggle span::before,
  .menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s, top .2s, background .15s;
  }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after  { top: 7px; }

  /* X state — triggered when nav.open is the immediate prev sibling */
  .nav.open + .menu-toggle {
    position: fixed;
    top: 10px;
    right: var(--gutter);
    z-index: 200;
  }
  .nav.open + .menu-toggle span              { background: transparent; }
  .nav.open + .menu-toggle span::before      { background: #fff; transform: rotate(45deg);  top: 0; }
  .nav.open + .menu-toggle span::after       { background: #fff; transform: rotate(-45deg); top: 0; }

  .site-header .row { height: 72px; }
  .brand { margin-left: 12px; }
  .brand img { content: url("assets/ps-icon.png"); height: 46px; }

  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- HISTORIA PAGE ---------- */
.history-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  padding: clamp(14px, 2vw, 24px) var(--gutter);
  align-items: start;
}
.history-intro h2 {
  max-width: 22ch;
  margin-bottom: 18px;
}
.history-intro p {
  color: var(--ink-2);
}
.history-year {
  font-family: var(--serif);
  color: var(--ps-blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}
.history-band {
  background: #fafafa;
  padding: clamp(14px, 2vw, 24px) 0;
}
.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.history-timeline article {
  background: #fafafa;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}
.history-timeline article:last-child {
  border-right: none;
}
.history-timeline .num {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ps-blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.history-timeline h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.history-timeline p {
  color: var(--ink-2);
  margin: 0;
}
.history-legacy {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 36px;
  align-items: center;
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(14px, 2vw, 24px);
}
.history-legacy h2 {
  max-width: 18ch;
  margin-bottom: 18px;
}
.history-legacy p {
  color: var(--ink-2);
}
.history-mark {
  background: var(--ps-blue);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-mark img {
  width: 58%;
  filter: brightness(0) invert(1);
}
.history-profile {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(14px, 2vw, 24px);
}
.history-profile-head h2 {
  max-width: 18ch;
}
.history-profile-copy {
  columns: 2 280px;
  column-gap: 32px;
}
.history-profile-copy p {
  color: var(--ink-2);
  break-inside: avoid;
}
.history-chapters {
  background: #fafafa;
  padding: clamp(14px, 2vw, 24px) 0;
}
.history-chapters-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}
.history-chapters-head h2 {
  max-width: 22ch;
}
.history-chapters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.history-chapters article {
  background: #fafafa;
  padding: 22px 22px;
}
.history-chapters time {
  display: inline-block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ps-blue);
  margin-bottom: 10px;
  line-height: 1;
}
.history-chapters h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.history-chapters p {
  color: var(--ink-2);
  margin: 0;
}
.history-chronology {
  background: #fafafa;
  padding: clamp(14px, 2vw, 24px) 0;
}
.history-chronology .container {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.history-chronology h2 {
  max-width: 12ch;
}
.history-chronology ol {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.history-chronology li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.history-chronology time {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ps-blue);
  line-height: 1.25;
}
.history-chronology li span {
  color: var(--ink-2);
}
@media (max-width: 920px) {
  .history-intro,
  .history-legacy,
  .history-profile,
  .history-chronology .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .history-timeline,
  .history-chapters-head,
  .history-chapters-grid {
    grid-template-columns: 1fr;
  }
  .history-timeline article {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .history-timeline article:last-child {
    border-bottom: none;
  }
  .history-profile-copy {
    columns: 1;
  }
  .history-mark {
    max-width: 360px;
  }
}
@media (max-width: 560px) {
  .history-chronology li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.lang-mobile { display: none; }
@media (max-width: 880px) {
  .lang-desktop { display: none !important; }
}

@media (max-width: 520px) {
  .site-footer .grid { grid-template-columns: 1fr; }
  .site-footer .legal { flex-direction: column; gap: 8px; }
}

/* ---------- HOME ---------- */
.hero {
  padding: clamp(14px, 2vw, 22px) 0 clamp(14px, 2vw, 22px);
}
.hero h1 {
  font-size: clamp(22px, 2.6vw, 32px);
  max-width: none;
  margin-bottom: 16px;
}
.hero .lead {
  max-width: 56ch;
  font-size: clamp(16px, 1.1vw, 18px);
  color: var(--ink-2);
  margin-bottom: 24px;
}
.hero .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.about-block .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.services { padding-top: clamp(16px, 2vw, 28px); }
.services .head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  margin-bottom: 28px;
  align-items: end;
}
.services .head .lead { margin: 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.svc {
  background: #fff;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s;
}
.svc .num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ps-blue);
}
.svc h3 { font-size: 19px; line-height: 1.3; margin-bottom: 8px; }
.svc p { color: var(--ink-2); margin: 0; }
.svc:hover { background: var(--ps-blue-soft); }

.about-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.about-block .visual {
  background: var(--ps-blue);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.about-block .visual .visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-block .visual .label-tag {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  color: var(--ps-blue);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-block .copy h2 { margin-bottom: 18px; max-width: 16ch; }
.about-block .copy p { color: var(--ink-2); }

.reports-strip {
  background: #fafafa;
  padding: clamp(18px, 2.5vw, 36px) 0;
  margin-top: clamp(10px, 1.5vw, 18px);
}
.reports-strip .head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 28px;
  margin-bottom: 22px;
  align-items: end;
}
.reports-list { border-top: 1px solid var(--line); }
.report-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.report-row .num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ps-blue);
}
.report-row .name {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink);
}
.report-row .desc {
  grid-column: 2 / 3;
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
  margin-top: 6px;
}
.report-row .freq {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  align-self: center;
}

.cta {
  background: var(--ps-blue);
  color: #fff;
  padding: clamp(34px, 4.5vw, 54px) 0;
}
.cta .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}
.cta h2 { color: #fff; max-width: 18ch; }
.cta .actions {
  justify-self: end;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta .btn { background: #fff; color: var(--ps-blue); }
.cta .btn:hover { background: rgba(255,255,255,0.88); }
.cta .btn.ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta .btn.ghost:hover { background: #fff; color: var(--ps-blue); }

@media (max-width: 920px) {
  .services .head { grid-template-columns: 1fr; gap: 24px; }
  .svc-grid { grid-template-columns: 1fr; }
  .about-block { grid-template-columns: 1fr; gap: 28px; }
  .reports-strip .head { grid-template-columns: 1fr; gap: 24px; }
  .cta .row { grid-template-columns: 1fr; }
  .cta .actions { justify-self: start; }
  .report-row { grid-template-columns: 40px 1fr; }
  .report-row .freq { grid-column: 2; }
}

/* ---------- SOBRE PAGE ---------- */
.intro {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 36px;
      padding: clamp(14px, 2vw, 24px) 0;
      align-items: start;
    }
    .intro .meta { font-size: 14px; color: var(--muted); letter-spacing: 0.04em; }
    .intro h2 { max-width: 18ch; margin-bottom: 18px; }
    .intro p { color: var(--ink-2); }
    .pillars {
      background: #fafafa;
      padding: clamp(14px, 2vw, 24px) 0;
    }
    .pillars .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      margin-top: 20px;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .pillar {
      background: #fafafa;
      padding: 24px 22px;
    }
    .pillar .num {
      font-family: var(--serif);
      font-size: 26px;
      color: var(--ps-blue);
      line-height: 1;
      margin-bottom: 10px;
    }
    .pillar h3 { margin-bottom: 8px; font-size: 19px; }
    .pillar p { color: var(--ink-2); margin: 0; }

    .quote-block {
      background: var(--ps-blue);
      color: #fff;
      padding: clamp(18px, 2.5vw, 32px) 0;
    }
    .quote-block .container {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 28px;
      align-items: start;
    }
    .quote-block .label {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
      font-weight: 600;
    }
    .quote-block blockquote {
      font-family: var(--serif);
      font-size: clamp(20px, 2vw, 27px);
      line-height: 1.35;
      margin: 0;
      max-width: 22ch;
    }
    .quote-block blockquote::before {
      content: "";
      display: block;
      width: 56px;
      height: 3px;
      background: #fff;
      margin-bottom: 20px;
    }
    .quote-block .attrib {
      margin-top: 18px;
      font-size: 14px;
      color: rgba(255,255,255,0.82);
      letter-spacing: 0.04em;
    }
    @media (max-width: 920px) {
      .intro { grid-template-columns: 1fr; gap: 32px; }
      .pillars .grid { grid-template-columns: 1fr; }
      .quote-block .container { grid-template-columns: 1fr; gap: 24px; }
    }


/* ---------- RELATORIOS PAGE ---------- */
    .reports {
      padding-top: clamp(14px, 2vw, 24px);
      padding-bottom: clamp(14px, 2vw, 24px);
    }
    .report {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 32px;
      padding: clamp(14px, 2vw, 26px) 0;
      border-bottom: 1px solid var(--line);
      align-items: start;
    }
    .report .cover {
      background: #fff;
      border: 1px solid var(--line);
      aspect-ratio: 3 / 4;
      position: relative;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      box-shadow: 0 1px 0 rgba(0,0,0,0.02);
      overflow: hidden;
    }
    .report .cover .top {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 12px;
      margin: -20px -20px 0;
    }
    .report .cover .date {
      background: var(--rc, var(--ps-blue));
      color: #fff;
      padding: 12px 18px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
    }
    .report .cover .pg {
      background: var(--rc, var(--ps-blue));
      color: #fff;
      padding: 12px 14px;
      font-size: 13px;
      font-weight: 600;
    }
    .report .cover .ps-mark {
      width: 64px;
      opacity: 1;
      filter: var(--rf, none);
    }
    .report .cover h3 {
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1.2;
      color: var(--ink);
    }
    .report .cover .sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: 16px;
      color: var(--rc, var(--ps-blue));
    }
    .report .cover .stripes {
      flex: 1;
      overflow-y: auto;
      margin-top: 10px;
      font-family: var(--sans);
      font-size: 13px;
      line-height: 1.6;
      color: var(--ink-2);
    }
    .cover-text { margin: 0; }
    .report .cover .bottom-bar {
      height: 8px;
      background: var(--rc, var(--ps-blue));
      margin: 0 -20px -20px;
    }

    .report .meta {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 6px 18px;
      margin-bottom: 18px;
      font-size: 13px;
    }
    .report .meta dt {
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 11px;
      font-weight: 600;
    }
    .report .meta dd { margin: 0; color: var(--ink-2); }

    .report .body .num {
      font-family: var(--serif);
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rc, var(--ps-blue));
      margin-bottom: 8px;
      display: block;
    }
    .report .body h2 {
      font-size: clamp(22px, 2.2vw, 28px);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .report .body .sub {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(18px, 1.5vw, 22px);
      color: var(--rc, var(--ps-blue));
      margin-bottom: 16px;
    }
    .report .body p { color: var(--ink-2); }
    .report .body .topics {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .report .body .topic {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 12px;
      border: 1px solid var(--line);
      color: var(--ink-2);
    }

    /* --- Últimos relatórios --- */
    .report .body .latest-wrap {
      margin-top: 28px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }
    .report .body .latest-label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .report .body .latest-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .report .body .latest-entry { list-style: none; display: flex; flex-direction: column; gap: 5px; }
    .report .body .latest-entry-header {
      display: flex;
      align-items: baseline;
      gap: 10px;
    }
    .report .body .latest-row-date {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--rc, var(--ps-blue));
      white-space: nowrap;
      flex-shrink: 0;
    }
    .report .body .latest-row-title {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.2;
    }
    .report .body .latest-row-excerpt {
      font-size: 13px;
      line-height: 1.6;
      color: var(--ink-2);
      margin: 0;
    }

    .access {
      background: var(--ps-blue);
      color: #fff;
      padding: clamp(34px, 4.5vw, 54px) 0;
    }
    .access .row {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 28px;
      align-items: center;
    }
    .access h2 { color: #fff; max-width: 22ch; }
    .access p { color: rgba(255,255,255,0.85); max-width: 52ch; }
    .access .actions {
      justify-self: end;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .access .btn { background: #fff; color: var(--ps-blue); }
    .access .btn:hover { background: rgba(255,255,255,0.88); }

    @media (max-width: 920px) {
      .report { grid-template-columns: 1fr; gap: 40px; }
      .report .cover { max-width: 380px; margin-inline: auto; }
      .access .row { grid-template-columns: 1fr; }
      .access .actions { justify-self: start; }
    }


/* ---------- CONTATO PAGE ---------- */
.contact {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 0;
      min-height: 70vh;
    }
    .contact .info {
      padding: clamp(34px, 4.5vw, 54px) clamp(22px, 3vw, 40px) clamp(34px, 4.5vw, 54px) 0;
    }
    .contact .info h2 { max-width: 16ch; margin-bottom: 16px; }
    .contact .info p { color: var(--ink-2); max-width: 50ch; margin-bottom: 22px; }
    .contact .info .block {
      border-top: 1px solid var(--line);
      padding: 16px 0;
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 18px;
      align-items: baseline;
    }
    .contact .info .block:last-child { border-bottom: 1px solid var(--line); }
    .contact .info .block dt {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
    }
    .contact .info .block dd {
      margin: 0;
      font-family: var(--serif);
      font-size: 18px;
      color: var(--ink);
      line-height: 1.5;
      white-space: pre-line;
    }
    .contact .info .block a { color: var(--ps-blue); }

    .contact .form-pane {
      background: var(--ps-blue);
      color: #fff;
      padding: clamp(34px, 4.5vw, 54px) clamp(22px, 3vw, 44px);
    }
    .contact .form-pane h3 {
      font-family: var(--sans);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
      color: rgba(255,255,255,0.78);
      margin-bottom: 10px;
    }
    .contact .form-pane .lead {
      font-family: var(--serif);
      font-size: clamp(18px, 1.8vw, 23px);
      line-height: 1.3;
      color: #fff;
      max-width: 22ch;
      margin: 0 0 24px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .field { display: flex; flex-direction: column; }
    .field.full { grid-column: 1 / -1; }
    .field label {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.78);
      margin-bottom: 8px;
      font-weight: 600;
    }
    .field input, .field select, .field textarea {
      background: transparent;
      border: 0;
      border-bottom: 1px solid rgba(255,255,255,0.4);
      color: #fff;
      padding: 7px 0;
      font: inherit;
      font-size: 16px;
      outline: none;
      transition: border-color .15s;
    }
    .field input:focus, .field select:focus, .field textarea:focus {
      border-bottom-color: #fff;
    }
    .field textarea {
      resize: vertical;
      min-height: 92px;
    }
    .field select option { color: var(--ink); }
    .form-actions {
      grid-column: 1 / -1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 16px;
      gap: 16px;
      flex-wrap: wrap;
    }
    .form-actions .small {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
      max-width: 36ch;
    }
    .form-actions .form-status {
      grid-column: 1 / -1;
      color: #fff;
      max-width: none;
      width: 100%;
    }
    .form-actions .btn {
      background: #fff;
      color: var(--ps-blue);
    }
    .form-actions .btn:hover { background: rgba(255,255,255,0.88); }

    @media (max-width: 920px) {
      .contact { grid-template-columns: 1fr; }
      .contact .info { padding-right: 0; padding-bottom: 30px; }
      .form-grid { grid-template-columns: 1fr; }
    }

/* ---------- SOBRE — SÓCIOS ---------- */
.partners {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.partner {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  margin-bottom: 48px;
}
.partner:last-child { margin-bottom: 0; }
.partner-photo {
  flex-shrink: 0;
  width: 32%;
  object-fit: cover;
  object-position: center 20%;
}
.partner-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
}
.partner-name {
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 8px;
}
.partner-role {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ps-blue);
  font-weight: 600;
  margin-bottom: 24px;
}
.partner p {
  color: var(--ink-2);
  margin: 0 0 14px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  max-width: 52ch;
}
.partner-section {
  padding-top: clamp(6px, 0.8vw, 12px);
  padding-bottom: clamp(14px, 2vw, 24px);
}
@media (max-width: 700px) {
  .partner { flex-direction: column; min-height: auto; }
  .partner-photo { width: 100%; height: 260px; }
  .partner-body { padding: 24px 0; }
}

/* ---------- HISTÓRIA — CITAÇÕES ---------- */
.quotes-section {
  padding-top: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(16px, 2vw, 28px);
}
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.quote-card {
  border-top: 3px solid var(--ps-blue);
  padding-top: 18px;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 14px;
}
.quote-card .attrib {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
@media (max-width: 600px) { .quotes-grid { grid-template-columns: 1fr; } }

/* ---------- SOBRE — intro sem h2 gigante ---------- */
.intro-section {
  padding-top: clamp(14px, 2vw, 24px);
  padding-bottom: clamp(14px, 2vw, 24px);
}

