:root {
  --blue: #002dbb;
  --blue-deep: #132259;
  --yellow: #f6ba26;
  --green: #8fb041;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #dce1ec;
  --muted: #687596;
  --shadow: 0 20px 50px rgba(13, 22, 48, 0.12);
  --radius-lg: 2rem;
  --radius-xl: 3rem;
  --container: min(1240px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--blue-deep);
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.section {
  padding: 4.5rem 0;
}

.top-stripe {
  height: 0.6rem;
  background: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 225, 236, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 5.2rem;
}

.brand img {
  width: 13rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  color: var(--blue-deep);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 3rem;
  align-items: center;
  padding: 3rem 0 2.5rem;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--blue-deep);
}

.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 1.85rem;
  border-radius: 999px;
  background:
    linear-gradient(
      to bottom,
      var(--yellow) 0%,
      var(--yellow) 50%,
      var(--green) 50%,
      var(--green) 100%
    );
}

.eyebrow-light {
  color: var(--white);
}

.hero h1,
.section-heading h2,
.history-copy h2,
.media-copy h2,
.agenda-copy h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3.4rem, 7vw, 5.35rem);
  max-width: 12ch;
}

.hero-text,
.history-copy p,
.media-copy > p,
.future-card p,
.press-card p,
.footer-note {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(0, 45, 187, 0.22);
}

.button-secondary {
  position: relative;
  color: var(--blue-deep);
}

.button-secondary::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0.8rem;
  height: 0.2rem;
  background: var(--yellow);
  border-radius: 999px;
}

.panel-blue {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--blue);
}

.panel-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at -10% 100%, transparent 0 32%, rgba(255, 255, 255, 0.08) 32.5% 33.2%, transparent 33.3% 44%, rgba(255, 255, 255, 0.08) 44.5% 45.2%, transparent 45.3% 57%, rgba(255, 255, 255, 0.08) 57.5% 58.2%, transparent 58.3% 100%);
  pointer-events: none;
}

.hero-visual {
  min-height: 43rem;
  border-radius: var(--radius-xl);
  padding: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1.05rem;
  background: var(--yellow);
}

.hero-portrait {
  position: absolute;
  left: 50%;
  top: -1rem;
  width: min(38rem, 110%);
  transform: translateX(-50%);
  z-index: 1;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 55rem;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.history-copy h2,
.media-copy h2,
.agenda-copy h2 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
}

.quick-grid,
.future-grid {
  display: grid;
  gap: 1.5rem;
}

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

.info-card,
.future-card,
.press-card,
.agenda-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 1.5rem 1.5rem 1.6rem;
}

.info-card::before,
.future-card::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 1.35rem;
  width: 0.7rem;
  height: 2.25rem;
  border-radius: 999px;
  background:
    linear-gradient(
      to bottom,
      var(--yellow) 0%,
      var(--yellow) 50%,
      var(--green) 50%,
      var(--green) 100%
    );
}

.info-index {
  display: block;
  margin-bottom: 1.1rem;
  padding-left: 1.35rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #e8ecf5;
}

.info-card h3,
.future-card h3,
.press-card h3,
.agenda-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.info-card h3,
.info-card p {
  padding-left: 1.35rem;
}

.info-card p,
.future-card p,
.future-sub,
.press-card small,
.agenda-list span,
.footer-note {
  font-size: 0.96rem;
}

.history-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.history-copy {
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}

.history-copy h2,
.history-copy p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.history-copy p {
  max-width: 26rem;
  margin: 1.45rem 0 0;
  color: rgba(239, 243, 255, 0.9);
}

.history-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 1.25rem;
}

.gallery-large,
.gallery-small {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-large {
  grid-column: 1 / -1;
  border: 0.5rem solid var(--yellow);
}

.gallery-large img,
.gallery-small img,
.social-card > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  height: 17rem;
}

.gallery-small {
  height: 15rem;
}

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

.future-card {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1.4rem;
  padding: 1.8rem 1.6rem 1.6rem;
}

.future-icon {
  display: grid;
  place-items: center;
  align-self: center;
  width: 5.4rem;
  height: 5.4rem;
  margin-top: 0.5rem;
}

.future-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.future-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(6317%)
    hue-rotate(229deg) brightness(84%) contrast(130%);
}

.future-card h3 {
  margin-bottom: 0.25rem;
}

.future-sub {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-weight: 600;
}

.media-section {
  background: #f1f4fa;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: center;
}

.media-copy {
  max-width: 33rem;
}

.media-copy > p {
  margin: 1.3rem 0 0;
}

.press-card {
  margin-top: 2rem;
  padding: 1.8rem;
}

.press-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-card h3 {
  margin-top: 1rem;
}

.press-card p {
  margin: 0.9rem 0 0.6rem;
  color: var(--blue);
  font-weight: 600;
}

.press-card small {
  color: var(--muted);
}

.browser-card {
  display: flex;
  justify-content: center;
}

.browser-shell {
  width: min(100%, 42rem);
  padding: 1.1rem;
  border-radius: 2.5rem;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.browser-top {
  display: flex;
  gap: 0.65rem;
  padding: 0.4rem 0.4rem 1rem;
}

.browser-top span {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: rgba(178, 190, 240, 0.92);
}

.browser-screen {
  min-height: 25rem;
  padding: 1rem;
  border: 4px solid rgba(191, 205, 238, 0.95);
  border-radius: 1.75rem;
  background: var(--white);
}

.browser-banner {
  height: 2rem;
  border-radius: 1rem 1rem 0 0;
  background: var(--yellow);
}

.browser-screen::after {
  content: "";
  display: block;
  height: 13.5rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(rgba(11, 18, 42, 0.26), rgba(11, 18, 42, 0.26)),
    url("fotos/48811db0-a162-4ea2-99cc-1b8963becf31.jpg")
      center/cover no-repeat;
}

.browser-logo {
  width: 14rem;
  margin-top: 1.3rem;
}

.browser-screen p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--blue-deep);
  line-height: 1.6;
}

.agenda-section {
  margin: 4.5rem auto;
  padding: 3.5rem 2rem;
  border-radius: 3.2rem;
  box-shadow: var(--shadow);
}

.agenda-copy,
.agenda-grid {
  position: relative;
  z-index: 1;
}

.agenda-copy h2 {
  max-width: 16ch;
  color: var(--white);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 35%) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 2.3rem;
}

.agenda-card {
  padding: 1.9rem;
}

.agenda-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.agenda-list li {
  display: grid;
  grid-template-columns: 5.1rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8edf8;
}

.agenda-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.agenda-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 0.8rem;
  border-radius: 0.9rem;
  background: #f4f6fb;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.agenda-list span {
  padding-top: 0.55rem;
  line-height: 1.5;
}

.social-cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.35rem;
  min-height: 25rem;
}

.social-card {
  position: relative;
  overflow: hidden;
  width: min(14rem, 30%);
  height: 22rem;
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(10, 18, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  z-index: 1;
}

.social-card img:first-child {
  position: absolute;
  inset: 0;
}

.social-brand {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  width: 8.75rem;
  opacity: 0.96;
}

.tilt-left {
  transform: rotate(-8deg) translateY(1rem);
}

.tilt-right {
  transform: rotate(8deg) translateY(0.85rem);
}

.site-footer {
  padding: 0 0 3.5rem;
  background: var(--white);
}

.footer-inner {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 12rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-note {
  max-width: 36rem;
  margin: 1rem 0 0;
}

.footer-bars {
  display: flex;
  gap: 0;
  width: min(25rem, 100%);
  height: 0.45rem;
  margin-top: 1.4rem;
  overflow: hidden;
  border-radius: 999px;
}

.bar-yellow {
  flex: 1.4;
  background: var(--yellow);
}

.bar-green {
  flex: 0.8;
  background: var(--green);
}

.bar-blue {
  flex: 1.8;
  background: var(--blue);
}

@media (max-width: 1100px) {
  .hero,
  .history-section,
  .media-grid,
  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 40rem;
  }

  .quick-grid,
  .future-grid {
    grid-template-columns: 1fr;
  }

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

  .agenda-copy h2 {
    max-width: 20ch;
  }

  .social-cards {
    min-height: 20rem;
    padding-top: 1rem;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(calc(100vw - 1.5rem), 100%);
  }

  .page-hero-centered,
  .page-hero-centered h1,
  .page-hero-centered .page-hero-text {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.95rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
    font-size: 0.88rem;
  }

  .hero {
    gap: 1.5rem;
    padding-top: 1.75rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-visual {
    min-height: 38rem;
    padding: 0;
    overflow: hidden;
  }

  .hero-portrait {
    left: 50%;
    top: -1rem;
    width: 140%;
    transform: translateX(-50%);
  }

  .section {
    padding: 3.2rem 0;
  }

  .section-heading h2,
  .history-copy h2,
  .media-copy h2,
  .agenda-copy h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .gallery-large,
  .gallery-small {
    height: 13rem;
  }

  .future-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .future-icon {
    width: 4.8rem;
    height: 4.8rem;
    margin-top: 0.8rem;
  }

  .browser-shell {
    padding: 0.8rem;
    border-radius: 2rem;
  }

  .browser-screen {
    min-height: 22rem;
  }

  .agenda-section {
    width: calc(100vw - 1.5rem);
    padding: 2rem 1rem;
    border-radius: 2rem;
  }

  .social-cards {
    flex-direction: column;
    min-height: auto;
    gap: 1rem;
  }

  .social-card,
  .tilt-left,
  .tilt-right {
    width: 100%;
    height: 18rem;
    transform: none;
  }
}

/* ================================================================
   NOVOS COMPONENTES — SITE BOCALOM (multi-página)
   ================================================================ */

/* ---- NAVEGAÇÃO ATIVA ---- */
.nav-active {
  color: var(--blue) !important;
}
.nav-active::after {
  transform: scaleX(1) !important;
}

/* ---- BOTÕES EXTRAS ---- */
.button-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  border-radius: 999px;
  padding: 0 1.5rem;
  min-height: 3.7rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.button-outline-light:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.button-yellow {
  background: var(--yellow);
  color: var(--blue-deep);
  border-radius: 999px;
  padding: 0 1.5rem;
  min-height: 3.7rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 24px rgba(246,186,38,0.35);
}
.button-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(246,186,38,0.45);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  transition: letter-spacing 0.2s;
}
.card-link:hover {
  letter-spacing: 0.01em;
}

/* ---- MENU TOGGLE (mobile) ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 5rem 0 4rem;
}
.page-hero-light {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.page-hero-centered {
  display: block;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.5rem 0 0;
  color: var(--white);
}
.page-hero-light h1 {
  color: var(--blue-deep);
}
.page-hero-text {
  margin-top: 1.4rem;
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(239,243,255,0.9);
}
.page-hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 26rem;
}
.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.futuro-hero { text-align: center; }
.page-hero-light .eyebrow { color: var(--blue-deep); }

/* ---- SECTION INTRO ---- */
.section-intro {
  max-width: 52rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 1rem 0 0;
}

/* ---- SECTION CTA ---- */
.section-cta {
  text-align: center;
  margin-top: 2.8rem;
}

/* ---- CTA BOX ---- */
.cta-section { padding-bottom: 5rem; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}
.cta-copy h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 0.5rem 0 0;
  line-height: 1.05;
}
.cta-copy p {
  color: rgba(239,243,255,0.85);
  margin: 0.9rem 0 0;
  font-size: 1rem;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 14rem;
}

/* ---- EDITORIAL NOTE ---- */
.editorial-note {
  background: #fef9e8;
  border: 1px solid #f6d860;
  border-radius: 1rem;
  padding: 1rem 1.4rem;
  font-size: 0.9rem;
  color: var(--blue-deep);
  line-height: 1.6;
  margin: 0 0 2rem;
}
.editorial-note a { color: var(--blue); text-decoration: underline; }

/* ---- BIO GRID (história) ---- */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.bio-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.bio-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.bio-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.4;
}

/* ---- SECTION SPLIT (história) ---- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.section-split-reverse { direction: rtl; }
.section-split-reverse > * { direction: ltr; }
.split-copy h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
  line-height: 1.05;
}
.split-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}
.split-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #edf1fc;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ---- TIMELINE (história) ---- */
.timeline-section { background: #f1f4fa; }
.timeline {
  position: relative;
  max-width: 58rem;
  margin: 0 auto;
  padding-top: 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--yellow) 0%, var(--blue) 100%);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 3rem 1fr;
  margin-bottom: 2.5rem;
  align-items: start;
}
.timeline-item:nth-child(odd) .timeline-card  { grid-column: 1; text-align: right; padding-right: 2.2rem; }
.timeline-item:nth-child(even) .timeline-card { grid-column: 3; padding-left: 2.2rem; }
.timeline-marker { display: flex; justify-content: center; grid-column: 2; padding-top: 0.4rem; }
.timeline-dot {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 45, 187, 0.12);
}
.timeline-dot-highlight {
  background: var(--yellow);
  border-color: var(--blue-deep);
  width: 1.35rem;
  height: 1.35rem;
}
.timeline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow);
}
.timeline-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--blue-deep);
  line-height: 1.35;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- EIXOS GRID (futuro) ---- */
.eixos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.eixo-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.eixo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,45,187,0.16);
}
.eixo-numero {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-size: 4.5rem;
  font-weight: 800;
  color: #e8ecf5;
  line-height: 1;
  user-select: none;
}
.eixo-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.2rem;
}
.eixo-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eixo-copy h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
  color: var(--blue-deep);
}
.eixo-sub {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 0.9rem;
}
.eixo-desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
  margin: 0 0 1.2rem;
}
.eixo-pontos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.eixo-pontos li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.eixo-pontos li::before {
  content: '';
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--yellow);
}

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
  padding-top: 1.5rem;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  height: 2.5rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--blue-deep);
  font: 600 0.88rem 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn-active { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---- NEWS (notícias) ---- */
.section-news { padding-bottom: 5rem; }
.news-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}
.news-featured-photo { position: relative; height: 26rem; }
.news-featured-photo img { width: 100%; height: 100%; object-fit: cover; }
.news-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  height: 2.1rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.news-tag-midia { background: var(--yellow); color: var(--blue-deep); }
.news-tag-gestao { background: var(--blue); color: var(--white); }
.news-tag-agenda { background: var(--green); color: var(--white); }
.news-featured-copy { padding: 2rem 2.5rem 2rem 0; }
.news-meta {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}
.news-featured-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--blue-deep);
}
.news-featured-desc { color: var(--muted); line-height: 1.7; margin: 0; }
.news-footer-bar {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.news-source { color: var(--muted); font-size: 0.85rem; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 45, 187, 0.14);
}
.news-card-photo { position: relative; height: 13rem; overflow: hidden; }
.news-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-card-photo img { transform: scale(1.04); }
.news-card-copy { padding: 1.4rem; }
.news-card-copy h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0.5rem 0 0.7rem;
  color: var(--blue-deep);
}
.news-card-copy p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ---- AGENDA FULL (agenda.html) ---- */
.section-agenda-full { padding-bottom: 4rem; }
.agenda-month-header {
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--line);
}
.agenda-month-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
  color: var(--blue-deep);
}
.agenda-full-list { display: grid; gap: 1.4rem; }
.agenda-full-item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  align-items: start;
  transition: transform 0.2s;
}
.agenda-full-item:hover { transform: translateX(4px); }
.agenda-full-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 1rem;
  padding: 0.8rem 0.5rem;
  min-height: 4.5rem;
}
.agenda-day { font-size: 2rem; font-weight: 800; line-height: 1; }
.agenda-month-short { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; opacity: 0.85; }
.agenda-type-badge {
  display: inline-flex;
  align-items: center;
  height: 1.9rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.agenda-type-reuniao   { background: #edf1fc; color: var(--blue); }
.agenda-type-visita    { background: #e8f7e8; color: #2d6b2d; }
.agenda-type-evento    { background: #fff5d6; color: #8a5a00; }
.agenda-type-entrevista { background: #fce8f0; color: #8a0038; }
.agenda-full-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--blue-deep);
  line-height: 1.3;
}
.agenda-meta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 0.7rem; }
.agenda-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.agenda-meta-item svg { width: 0.95rem; height: 0.95rem; }
.agenda-full-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ---- SOCIAL CHANNELS (redes.html) ---- */
.social-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.social-channel-card {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.social-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
}
.social-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
}
.social-channel-icon svg { width: 1.7rem; height: 1.7rem; }
.social-channel-fb  { border-left: 4px solid #1877f2; }
.social-channel-fb  .social-channel-icon { background: #e7f0fd; color: #1877f2; }
.social-channel-ig  { border-left: 4px solid #e1306c; }
.social-channel-ig  .social-channel-icon { background: #fce8f0; color: #e1306c; }
.social-channel-yt  { border-left: 4px solid #ff0000; }
.social-channel-yt  .social-channel-icon { background: #fee; color: #ff0000; }
.social-channel-tk  { border-left: 4px solid #111; }
.social-channel-tk  .social-channel-icon { background: #f1f1f1; color: #111; }
.social-channel-web { border-left: 4px solid var(--blue); }
.social-channel-web .social-channel-icon { background: #edf1fc; color: var(--blue); }
.social-channel-name  { display: block; font-size: 1rem; font-weight: 700; color: var(--blue-deep); margin-bottom: 0.2rem; }
.social-channel-handle { display: block; font-size: 0.85rem; font-weight: 600; color: var(--blue); margin-bottom: 0.3rem; }
.social-channel-desc   { display: block; font-size: 0.8rem; color: var(--muted); }
.social-channel-arrow  { font-size: 1.3rem; color: var(--muted); transition: transform 0.2s; }
.social-channel-card:hover .social-channel-arrow { transform: translateX(4px); }

/* ---- PHOTO MOSAIC (redes.html) ---- */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 18rem;
  gap: 1rem;
}
.mosaic-item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-large { grid-row: span 2; }
.mosaic-wide  { grid-column: span 2; }

/* ---- SOCIAL LINKS (index.html) ---- */
.social-links-section { padding-bottom: 5rem; }
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.8rem 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.social-btn:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.14); }
.social-btn svg { width: 2rem; height: 2rem; }
.social-btn-fb  { background: #e7f0fd; color: #1877f2; }
.social-btn-ig  { background: #fce8f0; color: #e1306c; }
.social-btn-yt  { background: #fee; color: #cc0000; }
.social-btn-web { background: #edf1fc; color: var(--blue); }

/* ---- CTA SOCIAL SECTION ---- */
/* ---- BOC VIDEO PLAYER (autoplay mudo + botão de som) ---- */
.boc-vt-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.boc-vt-frame,
.boc-vt-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.boc-vt-fallback {
  display: none;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: #111;
  font-size: 15px;
  line-height: 1.5;
}
.boc-vt-sound {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: rgba(18,26,35,0.88);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.boc-vt-sound:hover {
  background: rgba(36,49,64,0.94);
  transform: translateY(-1px);
}
.boc-vt-sound svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

/* Manter compatibilidade com .video-frame original */
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: block;
  text-decoration: none;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-section {
  background: var(--blue-deep);
  padding: 5rem 0;
}
.video-section .section-heading {
  margin-bottom: 2.8rem;
}
.video-section .eyebrow {
  color: var(--yellow);
}
.video-section .eyebrow::before {
  background: linear-gradient(to bottom, var(--yellow) 50%, var(--green) 50%);
}
.video-section h2 {
  color: var(--white);
}
.video-section .section-intro {
  color: rgba(239,243,255,0.8);
}
.video-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 2.5rem;
  align-items: center;
}
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: block;
  text-decoration: none;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-thumb-link {
  cursor: pointer;
}
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s, filter 0.35s;
  display: block;
}
.video-thumb-link:hover .video-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.75);
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
  z-index: 2;
}
.video-thumb-link:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}
.video-aside {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.video-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.2rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: #ff0000;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}
.video-aside-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}
.video-aside-desc {
  font-size: 0.96rem;
  color: rgba(239,243,255,0.75);
  line-height: 1.7;
  margin: 0;
}

.cta-social-section { background: #f1f4fa; padding: 4.5rem 0; }

/* ================================================================
   RESPONSIVIDADE — NOVOS COMPONENTES
   ================================================================ */

@media (max-width: 1100px) {
  .bio-grid            { grid-template-columns: repeat(2, 1fr); }
  .eixos-grid          { grid-template-columns: 1fr; }
  .news-grid           { grid-template-columns: repeat(2, 1fr); }
  .social-channels-grid { grid-template-columns: 1fr; }
  .social-links-grid   { grid-template-columns: repeat(2, 1fr); }
  .cta-box             { grid-template-columns: 1fr; }
  .cta-actions         { flex-direction: row; min-width: auto; }
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0 1rem;
  }
  .main-nav.nav-open { display: flex; }
  .header-inner { flex-direction: row; flex-wrap: wrap; align-items: center; }

  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-photo { max-height: 18rem; }
  .section-split, .section-split-reverse { grid-template-columns: 1fr; direction: ltr; }
  .bio-grid { grid-template-columns: 1fr; }

  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: 3rem 1fr; }
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    grid-column: 2;
    text-align: left;
    padding-left: 1.4rem;
    padding-right: 0;
  }
  .timeline-marker { grid-column: 1; justify-content: center; }

  .news-featured { grid-template-columns: 1fr; }
  .news-featured-photo { height: 16rem; }
  .news-featured-copy { padding: 1.6rem; }
  .news-grid { grid-template-columns: 1fr; }

  .agenda-full-item { grid-template-columns: 4.5rem 1fr; gap: 1rem; }

  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 14rem; }
  .mosaic-large { grid-row: span 1; grid-column: span 2; }
  .mosaic-wide  { grid-column: span 2; }

  .video-wrapper { grid-template-columns: 1fr; }
  .social-links-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-box { padding: 2rem 1.4rem; border-radius: var(--radius-lg); }
}

@media (max-width: 520px) {
  .social-links-grid    { grid-template-columns: 1fr; }
  .social-channels-grid { grid-template-columns: 1fr; }
  .social-channel-card  { grid-template-columns: 3rem 1fr; }
  .social-channel-arrow { display: none; }
  .photo-mosaic { grid-template-columns: 1fr; grid-auto-rows: 14rem; }
  .mosaic-large, .mosaic-wide { grid-column: span 1; grid-row: span 1; }
  .filter-btn { font-size: 0.82rem; padding: 0 0.9rem; }
}
