/* ============================================================
   CCECB — Design System Premium v2.0
   Câmara de Comércio e Empresários Cristãos do Brasil
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --navy-950: #020e1e;
  --navy-900: #071e3d;
  --navy-800: #0c2d5a;
  --navy-700: #0f3d7a;
  --blue-600: #1a5faa;
  --gold-700: #a67420;
  --gold-600: #c99235;
  --gold-500: #d9ab50;
  --gold-400: #f0cc82;
  --gold-300: #f7e2b3;
  --green-700: #07583a;
  --green-600: #0b6b45;

  --background: #f7f9fc;
  --foreground: #111827;
  --primary: var(--navy-900);
  --primary-foreground: #ffffff;
  --secondary: #ffffff;
  --secondary-foreground: var(--navy-950);
  --accent: var(--gold-600);
  --accent-foreground: #07111f;
  --muted: #f0f3f8;
  --muted-foreground: #5b6577;
  --border: rgba(7, 30, 61, 0.09);
  --card: #ffffff;
  --card-foreground: #111827;
  --success: var(--green-600);
  --warning: var(--gold-600);
  --destructive: #c82020;

  --shadow-xs: 0 1px 3px rgba(2, 14, 30, 0.04);
  --shadow-sm: 0 4px 12px rgba(2, 14, 30, 0.05);
  --shadow: 0 8px 30px rgba(2, 14, 30, 0.07);
  --shadow-md: 0 16px 40px -8px rgba(2, 14, 30, 0.1);
  --shadow-lg: 0 24px 56px -12px rgba(2, 14, 30, 0.14);
  --shadow-xl: 0 32px 72px -16px rgba(2, 14, 30, 0.18);
  --shadow-gold: 0 12px 32px -6px rgba(201, 146, 53, 0.35);

  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --container: min(100% - 40px, 1200px);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
}

body.is-menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; background: transparent; }

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

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius); background: var(--gold-500); color: var(--navy-950);
  padding: 10px 16px; font-weight: 700;
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%);
}

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

/* ── Header ── */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr auto;
  align-items: center; gap: 16px;
  min-height: 80px;
  padding: 10px clamp(16px, 3vw, 42px);
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 14, 30, 0.72) 0%, rgba(2, 14, 30, 0.15) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  transition: background 260ms ease, min-height 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 68px;
  background: rgba(2, 14, 30, 0.96);
  box-shadow: 0 8px 32px rgba(2, 14, 30, 0.25);
  border-bottom-color: rgba(209, 171, 80, 0.12);
}

.brand {
  display: inline-flex; align-items: center; min-width: 0; gap: 12px;
  transition: opacity 200ms ease;
}
.brand:hover { opacity: 0.88; }

.brand-logo {
  display: grid; place-items: center;
  width: 52px; height: 52px; flex: 0 0 auto;
  border: 1px solid rgba(240, 204, 130, 0.35);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 3px;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }

.brand-text { min-width: 0; }
.brand-text strong {
  display: block; font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 800; line-height: 1;
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block; max-width: 268px; margin-top: 3px;
  color: rgba(255, 255, 255, 0.65); font-size: 0.74rem; line-height: 1.3;
}

/* ── Navigation ── */
.site-nav {
  justify-self: end; display: flex; align-items: center; gap: 2px;
}
.site-nav a {
  border-radius: 999px; padding: 8px 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem; font-weight: 600; line-height: 1; white-space: nowrap;
  transition: all 200ms var(--ease-out);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff; background: rgba(255, 255, 255, 0.1);
}
.site-nav .nav-member { color: var(--gold-400); font-weight: 700; }
.site-nav .nav-member:hover { background: rgba(240, 204, 130, 0.15); color: var(--gold-300); }

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

.language-switcher {
  display: inline-flex; overflow: hidden; flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.language-switcher button {
  min-width: 38px; min-height: 34px;
  border: 0; border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent; color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem; font-weight: 800;
  transition: all 160ms ease;
}
.language-switcher button:disabled { cursor: not-allowed; display: none; opacity: 0.4; }
.language-switcher button:last-child { border-right: 0; }
.language-switcher button.is-active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--navy-950);
}

.nav-toggle {
  display: none; width: 44px; height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; margin: 5px auto;
  background: #fff; border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; gap: 8px;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.01em; line-height: 1.1; text-align: center;
  transition: all 280ms var(--ease-spring);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 40%, var(--gold-700) 100%);
  color: var(--navy-950);
  border-color: rgba(240, 204, 130, 0.5);
  box-shadow: var(--shadow-gold);
}
.button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px -6px rgba(201, 146, 53, 0.5), 0 0 20px rgba(240, 204, 130, 0.3);
  filter: brightness(1.08);
}

.button-secondary {
  border-color: var(--border); background: #fff; color: var(--navy-900);
  box-shadow: var(--shadow-xs);
}
.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--gold-500); color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

.header-cta { min-height: 40px; padding: 9px 18px; font-size: 0.85rem; border-radius: 10px; }

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: clamp(660px, 86vh, 940px);
  overflow: hidden; display: grid; align-items: center;
  padding: 130px 0 64px;
  background: var(--navy-950);
  color: #fff;
}

/* Multi-layer hero background via pseudo-elements */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 70% at 75% 40%, rgba(201, 146, 53, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(12, 45, 90, 0.5) 0%, transparent 70%),
    linear-gradient(145deg, rgba(2, 14, 30, 1) 0%, rgba(7, 30, 61, 0.95) 40%, rgba(12, 45, 90, 0.85) 70%, rgba(2, 14, 30, 0.95) 100%);
}

.hero::after {
  content: "";
  position: absolute; inset: auto 0 0; z-index: 1;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--background));
  pointer-events: none;
}

/* Logo watermark in hero */
.hero {
  background-image: url("public/images/logo-ccecb-oficial.png");
  background-position: right clamp(20px, 8vw, 140px) center;
  background-size: min(48vw, 640px) auto;
  background-repeat: no-repeat;
}

.hero-layout {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 740px; }

/* ── Eyebrow Badge ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 18px; padding: 7px 16px;
  color: var(--gold-400);
  font-family: var(--font-display); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(201, 146, 53, 0.08);
  border: 1px solid rgba(201, 146, 53, 0.2);
  border-radius: 999px; backdrop-filter: blur(6px);
}

/* ── Typography ── */
h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.12;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.18;
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  font-weight: 700; line-height: 1.32;
}

.hero-text {
  max-width: 640px; margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ── Hero Signals ── */
.hero-signals {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px; margin: 36px 0 0;
}
.hero-signals div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  padding: 14px;
  transition: border-color 300ms ease;
}
.hero-signals div:hover {
  border-color: rgba(201, 146, 53, 0.25);
}
.hero-signals dt {
  color: var(--gold-400); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-signals dd {
  margin: 6px 0 0; color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem; line-height: 1.35;
}

/* ── Hero Statement / Card ── */
.hero-card {
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 20px; backdrop-filter: blur(14px);
}
.hero-statement {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  padding: 28px 0 36px; color: #fff;
}
.hero-statement .hero-card { max-width: 720px; margin-left: auto; }

.hero-card span, .panel-kicker, .stat-card span,
.director-card span, .pricing-card > span, .status {
  display: block; color: var(--gold-600);
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-card strong {
  display: block; margin-top: 6px;
  font-family: var(--font-display); font-size: 1.06rem; line-height: 1.28;
}

/* ── Sections ── */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-split { background: var(--background); }

.split-layout, .map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.section-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.final-cta p {
  max-width: 720px; color: var(--muted-foreground);
  font-size: 1.04rem; line-height: 1.7; margin-top: 12px;
}

.section-heading { max-width: 800px; margin-bottom: 40px; }
.section-heading.center { margin-inline: auto; text-align: center; }

/* ── Value / Benefit Tags ── */
.value-list, .benefit-grid {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.value-list span, .benefit-grid span, .partner-strip span {
  border: 1px solid var(--border); border-radius: 999px;
  background: #fff; padding: 8px 16px;
  color: var(--navy-900); font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-xs);
  transition: all 200ms ease;
}
.value-list span:hover, .benefit-grid span:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* ── Editorial Panel ── */
.editorial-panel {
  display: grid; gap: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(240, 204, 130, 0.06) 0%, transparent 40%), #fff;
  padding: 40px;
  box-shadow: var(--shadow);
}
.editorial-panel strong {
  display: block; margin-top: 8px;
  color: var(--navy-950); font-family: var(--font-display);
  font-size: 2.2rem; line-height: 1.12;
}
.editorial-panel p { color: var(--muted-foreground); }

/* ── Mini Metrics ── */
.mini-metrics {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.mini-metrics article {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--muted); padding: 18px;
  transition: border-color 200ms ease;
}
.mini-metrics article:hover { border-color: rgba(201, 146, 53, 0.3); }
.mini-metrics strong { margin: 0; font-size: 1.2rem; }
.mini-metrics span {
  display: block; margin-top: 6px; color: var(--muted-foreground); font-size: 0.88rem;
}

/* ── Card Grid System ── */
.card-grid { display: grid; gap: 20px; }
.four-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ── Cards — Shared Base ── */
.feature-card, .event-card, .director-card, .presence-card, .leader-card,
.pricing-card, .stat-card, .testimonial-placeholder,
.form-card, .content-card, .legal-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  color: var(--card-foreground);
  box-shadow: var(--shadow-sm);
  transition: transform 360ms var(--ease-spring),
              box-shadow 360ms var(--ease-spring),
              border-color 360ms ease;
}

/* ── Card Hover Effects ── */
.feature-card:hover, .event-card:hover, .director-card:hover,
.presence-card:hover, .leader-card:hover, .pricing-card:hover,
.gallery-item:hover, .content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 146, 53, 0.35);
  box-shadow: var(--shadow-lg);
}

/* ── Feature Card ── */
.feature-card {
  display: grid; gap: 14px; padding: 28px;
  position: relative;
}
.feature-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  opacity: 0;
  transition: opacity 300ms ease;
}
.feature-card:hover::before { opacity: 1; }

.feature-card .icon {
  display: grid; width: 48px; height: 48px; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 146, 53, 0.1), rgba(12, 45, 90, 0.06));
  border: 1px solid rgba(201, 146, 53, 0.2);
  color: var(--navy-800);
  font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
  transition: all 300ms var(--ease-spring);
}
.feature-card:hover .icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); border-color: transparent;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 16px rgba(201, 146, 53, 0.3);
}

/* ── Image Zoom on Cards ── */
.event-card .card-media, .content-card .card-media, .gallery-item img {
  transition: transform 600ms var(--ease-spring);
}
.event-card:hover .card-media, .content-card:hover .card-media, .gallery-item:hover img {
  transform: scale(1.05);
}

.feature-card p, .event-card p, .director-card p,
.pricing-card p, .legal-card p, .content-card p {
  margin: 0; color: var(--muted-foreground); line-height: 1.65;
}

.feature-card a, .card-actions a {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--navy-800); font-weight: 700; font-size: 0.92rem;
  transition: color 200ms ease, gap 200ms ease;
}
.feature-card a:hover, .card-actions a:hover {
  color: var(--gold-700); gap: 8px;
}
.feature-card a::after, .card-actions a::after {
  content: "→"; font-size: 1.1em;
}

/* ── Dark Section ── */
.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(201, 146, 53, 0.12), transparent),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
}
.section-dark h2, .section-dark .section-copy > p:not(.eyebrow) { color: #fff; }
.section-dark .section-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); }
.section-dark .benefit-grid span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}
.section-dark .benefit-grid span:hover {
  border-color: rgba(240, 204, 130, 0.35);
  background: rgba(240, 204, 130, 0.1);
}

/* ── Stats ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px;
}
.stat-card { padding: 24px; }
.stat-card strong {
  display: block; margin-top: 12px;
  color: var(--navy-950); font-family: var(--font-display);
  font-size: 1.4rem; line-height: 1.12;
}
.stat-card small { display: block; margin-top: 14px; color: var(--muted-foreground); }

/* ── Presence Section ── */
.section-presence { background: #fff; }

.presence-grid, .leader-grid, .membership-summary, .editorial-showcase {
  display: grid; gap: 20px;
}
.presence-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.presence-card {
  display: flex; min-width: 0; flex-direction: column; gap: 14px;
  padding: 26px;
}
.presence-card.is-primary {
  border-color: rgba(201, 146, 53, 0.35);
  background: linear-gradient(145deg, rgba(240, 204, 130, 0.08) 0%, transparent 50%), #fff;
}

.presence-card span, .leader-card span {
  display: block; color: var(--gold-600);
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.presence-card h3, .leader-card h3,
.membership-summary h3, .editorial-showcase h3 { color: var(--navy-950); }
.presence-card p, .leader-card p,
.membership-summary p, .editorial-showcase p { margin: 0; color: var(--muted-foreground); }
.presence-card .button { margin-top: auto; }

/* ── Map Section ── */
.section-map { background: #fff; }
.brazil-map {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: 16px; align-items: stretch;
}
.map-canvas {
  position: relative; min-height: 430px; overflow: hidden;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(26, 95, 170, 0.05), rgba(11, 107, 69, 0.05)), #f7fafc;
}
.map-shape {
  position: absolute; inset: 14% 18% 12% 16%;
  border: 2px solid rgba(15, 61, 122, 0.18);
  border-radius: 45% 36% 54% 44% / 34% 38% 52% 54%;
  background: linear-gradient(135deg, rgba(26, 95, 170, 0.12), rgba(11, 107, 69, 0.12)), rgba(255, 255, 255, 0.7);
  transform: rotate(-10deg);
}
.map-point {
  position: absolute; width: 18px; height: 18px;
  border: 3px solid #fff; border-radius: 50%;
  background: var(--gold-600);
  box-shadow: 0 0 0 8px rgba(201, 146, 53, 0.15);
  animation: point-pulse 2.5s ease-in-out infinite;
}
@keyframes point-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201, 146, 53, 0.15); }
  50% { box-shadow: 0 0 0 12px rgba(201, 146, 53, 0.08); }
}
.map-point.is-active {
  background: var(--green-600);
  box-shadow: 0 0 0 10px rgba(11, 107, 69, 0.15);
}
.point-ce { right: 28%; top: 32%; }
.point-sp { left: 48%; bottom: 27%; }
.point-df { left: 52%; top: 50%; }
.point-ba { right: 33%; top: 48%; }
.point-rj { right: 27%; bottom: 26%; }

.map-card, .map-list {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; padding: 18px;
}
.map-card strong {
  display: block; margin-top: 8px;
  color: var(--navy-950); font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15;
}
.map-card p { color: var(--muted-foreground); }
.map-list {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px;
}
.map-list button {
  min-height: 40px;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--muted); color: var(--navy-900);
  padding: 8px 14px; font-weight: 700;
  transition: all 200ms ease;
}
.map-list button:hover {
  border-color: var(--gold-500); background: #fff;
}

/* ── Event Cards ── */
.event-card {
  display: grid; gap: 16px; padding: 24px;
}
.card-media {
  display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius);
}
.event-card .card-media {
  width: calc(100% + 48px); max-width: none;
  margin: -24px -24px 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.event-date {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.event-date strong { color: var(--navy-950); font-size: 1.15rem; }
.event-date span { color: var(--muted-foreground); font-size: 0.88rem; }

.card-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ── Gallery Section ── */
.section-gallery {
  background: linear-gradient(180deg, #fff 0%, var(--muted) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 16px;
}
.gallery-item {
  position: relative; display: flex; min-height: 220px; margin: 0;
  overflow: hidden; flex-direction: column; justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(2, 14, 30, 0.05), rgba(2, 14, 30, 0.88)),
    radial-gradient(circle at 22% 20%, rgba(240, 204, 130, 0.25), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--blue-600));
  color: #fff; padding: 24px;
  transition: transform 360ms var(--ease-spring), box-shadow 360ms var(--ease-spring);
}
.gallery-item img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-item::after {
  position: absolute; inset: 0; z-index: 1; content: "";
  background: linear-gradient(180deg, rgba(2, 14, 30, 0.04) 30%, rgba(2, 14, 30, 0.9) 100%);
  transition: background 300ms ease;
}
.gallery-item:hover::after {
  background: linear-gradient(180deg, rgba(2, 14, 30, 0.02) 20%, rgba(2, 14, 30, 0.8) 100%);
}
.gallery-item > span, .gallery-item > strong, .gallery-item figcaption {
  position: relative; z-index: 2;
}
.gallery-item.large { grid-row: span 2; }
.gallery-item figcaption { display: grid; gap: 8px; }
.gallery-item span {
  color: var(--gold-400); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.gallery-item strong {
  margin-top: 6px; font-family: var(--font-display); font-size: 1.45rem; line-height: 1.12;
}

/* ── Directors ── */
.director-card {
  display: grid; grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px; overflow: hidden; padding: 0;
}
.director-list { display: grid; gap: 22px; }
.director-card > img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center top;
}
.director-card > div { align-self: center; padding: 28px 28px 28px 0; }
.director-card h2 { margin: 8px 0 12px; font-size: 2rem; }
.director-card p { line-height: 1.72; }

/* ── News Grid ── */
.news-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.news-card { grid-column: span 2; overflow: hidden; padding: 0; }
.news-card:nth-child(-n + 2) { grid-column: span 3; }
.news-card .card-body { display: grid; gap: 12px; padding: 24px; }
.news-card h2 { margin: 0; }
.news-card a { color: var(--navy-800); font-weight: 700; }
.news-card a:hover { color: var(--gold-700); }

/* ── Editorial Showcase & Gallery ── */
.editorial-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-bottom: 20px; }
.compact-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.compact-gallery .gallery-item { min-height: 260px; }

.avatar-placeholder {
  display: grid; width: 74px; height: 74px; place-items: center;
  margin-bottom: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--green-700));
  color: var(--gold-400); font-weight: 800;
}
.director-card h3 { margin: 8px 0 10px; }

.center-action {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px;
}

/* ── Leader Cards ── */
.leader-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.leader-card img {
  width: 100%; height: 280px; object-fit: cover; object-position: center top;
  transition: transform 500ms var(--ease-spring);
}
.leader-card:hover img { transform: scale(1.04); }
.leader-card div { display: grid; gap: 10px; padding: 24px; }

/* ── Membership & Pricing ── */
.section-membership {
  background: linear-gradient(180deg, rgba(2, 14, 30, 0.025) 0%, transparent 100%), #fff;
}
.section-membership .empty-state { margin-bottom: 18px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px;
}
.pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-card { display: flex; flex-direction: column; gap: 16px; padding: 26px; }
.pricing-card.is-featured {
  border-color: rgba(201, 146, 53, 0.45);
  background: linear-gradient(180deg, rgba(240, 204, 130, 0.08) 0%, transparent 50%), #fff;
  box-shadow: var(--shadow-md);
}
.pricing-card h3 { color: var(--navy-950); font-size: 1.55rem; }
.pricing-card h2 small, .pricing-card h3 small {
  color: var(--muted-foreground); font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
}
.pricing-card ul {
  display: grid; gap: 8px; margin: 0; padding-left: 18px;
  color: var(--muted-foreground); font-size: 0.95rem;
}
.pricing-card .button { margin-top: auto; }

.membership-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.membership-summary .content-card { display: grid; align-content: start; gap: 16px; }
.membership-summary .button { justify-self: start; }

/* ── Partners & Testimonials ── */
.partner-strip { display: flex; overflow: hidden; flex-wrap: wrap; gap: 12px; }
.testimonial-placeholder { margin-top: 18px; padding: 26px; }
.testimonial-placeholder strong {
  color: var(--navy-950); font-family: var(--font-display); font-size: 1.3rem;
}
.testimonial-placeholder p { color: var(--muted-foreground); }

/* ── Final CTA ── */
.final-cta { padding-top: 0; }
.final-cta-inner {
  overflow: hidden; border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 50% 60% at 82% 25%, rgba(240, 204, 130, 0.15), transparent),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-700) 100%);
  color: #fff; padding: clamp(36px, 7vw, 80px);
  position: relative;
}
.final-cta-inner::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-700), transparent);
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.72); }

/* ── Footer ── */
.site-footer {
  background: var(--navy-950); color: #fff; padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }

.site-footer h2 {
  margin: 0 0 14px; color: var(--gold-400);
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer p, .site-footer a, .footer-bottom {
  color: rgba(255, 255, 255, 0.6); font-size: 0.92rem;
}
.site-footer nav { display: grid; align-content: start; gap: 8px; }
.site-footer a { transition: color 200ms ease; }
.site-footer a:hover { color: var(--gold-400); }
.footer-contact-list {
  display: grid;
  gap: 8px;
}
.footer-contact-list p { margin: 0; }
.footer-contact-list strong { color: rgba(255, 255, 255, 0.84); }
.site-footer .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.site-footer .footer-social a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 12px;
}
.site-footer .footer-social a:hover {
  border-color: var(--gold-400);
}

.whatsapp-float {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 55;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: #167a4c;
  color: #fff;
  padding: 12px 18px;
  font-weight: 750;
  box-shadow: 0 14px 32px rgba(2, 14, 30, 0.28);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease,
              opacity 180ms ease, visibility 180ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #11663f;
  color: #fff;
  box-shadow: 0 18px 38px rgba(2, 14, 30, 0.34);
}
.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

/* ── Newsletter ── */
.newsletter-form { display: grid; gap: 10px; }
.newsletter-form label { color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.newsletter-form div { display: flex; gap: 8px; }

.newsletter-form input, .form-card input, .form-card textarea, .form-card select {
  width: 100%; min-height: 46px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--foreground);
  padding: 11px 14px; font-size: 0.95rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.newsletter-form input:focus, .form-card input:focus,
.form-card textarea:focus, .form-card select:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(217, 171, 80, 0.15);
  outline: none;
}

.newsletter-form .button { min-height: 46px; padding-inline: 16px; }
.form-feedback { min-height: 22px; margin: 0; font-size: 0.88rem; }
.form-note { margin: 0; color: var(--muted-foreground); font-size: 0.88rem; }
.site-footer .form-note { color: rgba(255, 255, 255, 0.5); }

.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px; font-size: 0.88rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 14px;
  width: min(600px, calc(100% - 36px));
  border: 1px solid rgba(240, 204, 130, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(2, 14, 30, 0.97); backdrop-filter: blur(16px);
  color: #fff; padding: 18px;
  box-shadow: var(--shadow-xl);
}
.cookie-banner p { margin: 0; color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }
.cookie-banner.is-hidden { display: none; }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-spring);
}
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
}

/* ── Page Hero (Internal Pages) ── */
.page-hero {
  padding: 150px 0 72px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(240, 204, 130, 0.12), transparent),
    linear-gradient(145deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: #fff;
}
.page-hero h1 { max-width: 900px; font-size: clamp(2.2rem, 4.5vw, 4rem); }
.page-hero p { max-width: 780px; color: rgba(255, 255, 255, 0.72); font-size: 1.06rem; }

.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55); font-size: 0.88rem;
}
.breadcrumb a { color: var(--gold-400); transition: color 200ms ease; }
.breadcrumb a:hover { color: var(--gold-300); }

/* ── Content Pages ── */
.content-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.content-card, .legal-card, .form-card { padding: 26px; }

.institutional-profile {
  margin-bottom: clamp(34px, 6vw, 64px);
  border-color: rgba(201, 146, 53, 0.35);
  background: linear-gradient(135deg, rgba(240, 204, 130, 0.06) 0%, transparent 50%), #fff;
}

.content-card h2, .legal-card h2, .form-card h2 { font-size: 1.5rem; }
.content-card ul, .legal-card ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted-foreground); }
.contact-details {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  font-style: normal;
}
.contact-details p { margin: 0; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.contact-social span { color: var(--muted-foreground); }
.contact-social a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--navy-900);
  color: var(--navy-900);
  font-weight: 700;
}

/* ── Forms ── */
.form-card { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--navy-950); font-weight: 700; font-size: 0.92rem; }
.form-field textarea { min-height: 130px; resize: vertical; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--gold-600); }

/* ── Filters ── */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filters input, .filters select {
  min-height: 44px; border: 1px solid var(--border);
  border-radius: var(--radius); background: #fff; padding: 10px 14px;
}

.empty-state {
  border: 1px dashed rgba(15, 61, 122, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(26, 95, 170, 0.03);
  padding: 28px; color: var(--muted-foreground);
}
.filter-empty { margin-top: 18px; }
[hidden] { display: none !important; }

/* ── Tabs ── */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tabs button {
  min-height: 42px; border: 1px solid var(--border); border-radius: 999px;
  background: #fff; color: var(--navy-900);
  padding: 9px 16px; font-weight: 700;
  transition: all 200ms ease;
}
.tabs button:hover { border-color: var(--gold-500); }
.tabs button.is-active {
  background: var(--navy-900); color: #fff;
  border-color: var(--navy-900);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1240px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: block; justify-self: end; }

  .site-nav {
    position: fixed; inset: 70px 16px auto; display: none;
    max-height: calc(100vh - 96px); overflow: auto;
    flex-direction: column; align-items: stretch;
    border: 1px solid rgba(240, 204, 130, 0.15); border-radius: var(--radius-lg);
    background: rgba(2, 14, 30, 0.98); backdrop-filter: blur(20px);
    padding: 14px;
    box-shadow: var(--shadow-xl);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 44px; border-radius: var(--radius); padding: 14px; }

  .header-actions { justify-self: end; }

  .hero-layout, .split-layout, .map-layout { grid-template-columns: 1fr; }
  .four-columns, .pricing-grid, .stats-grid,
  .presence-grid, .leader-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .editorial-panel { padding: 28px; }
  .editorial-panel strong { font-size: 1.9rem; }

  .site-header {
    grid-template-columns: 1fr auto; gap: 10px; min-height: 70px;
  }
  .brand-logo { width: 46px; height: 46px; }
  .brand-text small { max-width: 200px; }

  .header-actions {
    grid-column: 1 / -1; width: 100%; justify-content: space-between;
  }
  .site-nav { inset: 112px 16px auto; }

  .hero {
    min-height: auto; padding: 160px 0 180px;
    background-size: min(80vw, 480px) auto;
    background-position: center bottom 20px;
  }
  .hero::before {
    background:
      radial-gradient(ellipse 80% 60% at 50% 90%, rgba(201, 146, 53, 0.1), transparent),
      linear-gradient(180deg, rgba(2, 14, 30, 0.98), rgba(7, 30, 61, 0.95));
  }

  .hero-signals, .three-columns, .content-grid, .form-grid,
  .editorial-showcase, .membership-summary { grid-template-columns: 1fr; }

  .brazil-map { grid-template-columns: 1fr; }
  .map-canvas { min-height: 340px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-row: span 1; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-card, .news-card:nth-child(-n + 2) { grid-column: span 1; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1200px); }

  .brand-text small { display: none; }
  .header-actions { gap: 8px; }
  .language-switcher button { min-width: 34px; }
  .header-cta { flex: 1 1 auto; }
  .hero { padding: 140px 0 160px; }

  .hero-actions, .newsletter-form div, .footer-bottom { flex-direction: column; }
  .hero-actions .button, .newsletter-form .button { width: 100%; }

  .hero-statement .hero-card { max-width: none; }

  .filters { display: grid; grid-template-columns: 1fr; }
  .filters input, .filters select { width: 100%; min-width: 0; }

  .four-columns, .pricing-grid, .stats-grid, .presence-grid,
  .leader-grid, .mini-metrics, .footer-grid, .news-grid {
    grid-template-columns: 1fr;
  }

  .director-card { grid-template-columns: 1fr; }
  .director-card > img { max-height: 430px; min-height: 0; aspect-ratio: 4 / 5; }
  .director-card > div { padding: 0 22px 24px; }

  .section { padding: 56px 0; }
  .final-cta-inner { padding: 28px; }
  .cookie-banner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Redesign autoral — Conexões que geram valor
   ============================================================ */

:root {
  --navy-950: #03152b;
  --navy-900: #041f3d;
  --navy-800: #062b52;
  --navy-700: #0a3f73;
  --gold-700: #9f6f22;
  --gold-600: #c28d37;
  --gold-500: #d5a54b;
  --gold-400: #edc982;
  --background: #f6f3ec;
  --foreground: #17212b;
  --muted: #ece8df;
  --muted-foreground: #59636f;
  --border: rgba(3, 21, 43, 0.15);
  --card: #ffffff;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --container: min(100% - 56px, 1280px);
}

body {
  background: #fff;
  color: var(--foreground);
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 22px;
  border: 0;
  border-radius: 0;
  background: none;
  padding: 0;
  color: var(--gold-700);
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
}

.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  color: var(--navy-900);
  font-weight: 700;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 17px;
  color: var(--gold-700);
}

.button {
  min-height: 48px;
  border-radius: 3px;
  box-shadow: none;
  letter-spacing: 0;
}

.button-primary {
  border-color: var(--gold-500);
  background: var(--gold-500);
  box-shadow: none;
}

.button-primary:hover {
  transform: translateY(-2px);
  background: var(--gold-400);
  box-shadow: 0 10px 24px rgba(3, 21, 43, 0.18);
  filter: none;
}

.button-secondary {
  border-color: rgba(3, 21, 43, 0.24);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: #fff;
  box-shadow: none;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #fff;
}

.button-light:hover {
  transform: translateY(-2px);
  border-color: #fff;
  background: #fff;
  color: var(--navy-950);
}

/* Shared header */
.site-header {
  grid-template-columns: minmax(220px, auto) 1fr auto;
  min-height: 82px;
  border-bottom-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(3, 21, 43, 0.82), transparent);
  padding-inline: clamp(18px, 3vw, 48px);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(3, 21, 43, 0.98);
  box-shadow: 0 8px 30px rgba(3, 21, 43, 0.18);
}

.brand-logo {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  padding: 0;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
}

.site-nav {
  gap: 0;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  border-radius: 0;
  padding: 14px 9px;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 7px;
  left: 9px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-400);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: none;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-member {
  margin-left: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 14px;
}

.site-nav .nav-member:hover {
  background: none;
}

.header-cta {
  min-height: 42px;
  padding-inline: 17px;
}

/* Home hero */
.hero-authorial {
  display: grid;
  min-height: clamp(720px, 92vh, 980px);
  align-items: end;
  background:
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 58%, var(--navy-800) 100%);
  padding: 160px 0 72px;
}

.hero-authorial::before {
  content: "";
  position: absolute;
  inset: 82px clamp(28px, 7vw, 120px) 0 auto;
  z-index: 1;
  width: 1px;
  height: auto;
  background: rgba(237, 201, 130, 0.18);
  pointer-events: none;
}

.hero-authorial::after {
  content: "CCECB";
  position: absolute;
  inset: auto clamp(30px, 7vw, 122px) 34px auto;
  z-index: 1;
  width: auto;
  height: auto;
  transform: translateX(50%);
  background: none;
  color: rgba(237, 201, 130, 0.34);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.hero-authorial .hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero-authorial .hero-copy {
  max-width: 730px;
}

.hero-authorial h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 4.8vw, 5.1rem);
  font-weight: 650;
  line-height: 1.01;
  text-wrap: balance;
}

.hero-authorial .hero-text {
  max-width: 610px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.hero-authorial .button-secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
}

.hero-authorial .button-secondary:hover {
  border-color: #fff;
  background: #fff;
  color: var(--navy-950);
}

.hero-brand-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 590px);
  margin: 12px 22px 0 0;
  justify-self: end;
}

.hero-brand-panel::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(237, 201, 130, 0.62);
}

.hero-brand-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-950);
  box-shadow: 0 34px 80px rgba(0, 8, 20, 0.42);
}

.hero-brand-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid rgba(3, 21, 43, 0.22);
  pointer-events: none;
}

.hero-brand-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-brand-panel figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(237, 201, 130, 0.38);
  padding-top: 13px;
}

.hero-brand-panel figcaption span,
.hero-brand-panel figcaption strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-panel figcaption span {
  color: rgba(255, 255, 255, 0.62);
}

.hero-brand-panel figcaption strong {
  color: var(--gold-400);
  text-align: right;
}

.institutional-rail {
  border-bottom: 1px solid rgba(3, 21, 43, 0.12);
  background: #fff;
}

.institutional-rail .container {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  align-items: center;
  gap: 32px;
  min-height: 98px;
}

.institutional-rail p {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.institutional-rail ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.institutional-rail li {
  border-left: 1px solid rgba(3, 21, 43, 0.14);
  padding: 9px 18px;
  color: #46515f;
  font-size: 0.88rem;
}

/* Manifesto */
.manifesto-section {
  background: #fff;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.manifesto-index {
  display: grid;
  gap: 18px;
  color: var(--gold-700);
}

.manifesto-index span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.manifesto-index i {
  width: 1px;
  height: 160px;
  background: var(--gold-600);
}

.manifesto-index small {
  color: var(--navy-900);
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.manifesto-copy h2 {
  margin-bottom: 32px;
}

.manifesto-copy p {
  max-width: 670px;
  color: #4c5763;
}

.manifesto-copy .lead {
  color: var(--navy-950);
}

.manifesto-copy .text-link {
  margin-top: 18px;
}

.manifesto-photo {
  margin: 56px 0 0;
}

.manifesto-photo img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.82);
}

.manifesto-photo figcaption {
  margin-top: 16px;
  border-left: 2px solid var(--gold-600);
  padding-left: 16px;
  color: #59636f;
  font-size: 0.86rem;
}

/* Chamber offer */
.chamber-offer {
  border-top: 1px solid rgba(3, 21, 43, 0.1);
  background: var(--background);
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
}

.offer-intro {
  position: sticky;
  top: 112px;
  align-self: start;
}

.offer-intro h2 {
  margin-bottom: 26px;
}

.offer-intro > p:last-child {
  max-width: 52ch;
  color: var(--muted-foreground);
}

.offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(3, 21, 43, 0.19);
  padding: 28px 0;
}

.offer-list li:last-child {
  border-bottom: 1px solid rgba(3, 21, 43, 0.19);
}

.offer-list > li > span {
  color: var(--gold-700);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.offer-list h3 {
  color: var(--navy-950);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

.offer-list p {
  max-width: 60ch;
  margin: 8px 0 0;
  color: var(--muted-foreground);
}

/* Network */
.network-story {
  overflow: hidden;
  background: #fff;
}

.network-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.network-copy h2 {
  margin-bottom: 26px;
}

.network-copy > p {
  max-width: 56ch;
  color: var(--muted-foreground);
}

.sector-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 28px 0 32px;
  border-top: 1px solid rgba(3, 21, 43, 0.13);
}

.sector-line span {
  border-bottom: 1px solid rgba(3, 21, 43, 0.13);
  padding: 11px 20px 11px 0;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 700;
}

.sector-line span + span {
  padding-left: 20px;
}

.network-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 230px 230px auto;
  gap: 12px;
}

.network-mosaic figure {
  overflow: hidden;
  margin: 0;
}

.network-mosaic .mosaic-tall {
  grid-row: 1 / 3;
}

.network-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 500ms var(--ease-spring), filter 500ms ease;
}

.network-mosaic figure:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.network-mosaic p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  text-align: right;
}

/* Presence */
.presence-authorial {
  overflow: hidden;
  background: var(--navy-950);
  color: #fff;
}

.presence-authorial .eyebrow {
  color: var(--gold-400);
}

.presence-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  margin-bottom: 52px;
}

.presence-heading h2 {
  max-width: 19ch;
  color: #fff;
}

.presence-heading > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.66);
}

.presence-stage {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: stretch;
  margin-bottom: 38px;
}

.presence-brand-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(320px, 1fr) auto auto;
  gap: 22px;
  min-height: 540px;
  border-left: 1px solid rgba(237, 201, 130, 0.42);
  background:
    linear-gradient(90deg, rgba(237, 201, 130, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.018);
  padding: clamp(24px, 3vw, 38px);
}

.presence-brand-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 201, 130, 0.42));
}

.presence-brand-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 16px;
}

.presence-brand-heading span {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.presence-brand-heading strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.presence-brand-media {
  position: relative;
  display: grid;
  min-height: 320px;
  margin: 0;
  place-items: center;
  overflow: hidden;
}

.presence-brand-media::before {
  content: "CCECB";
  position: absolute;
  right: -0.08em;
  bottom: -0.1em;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.presence-brand-media img {
  position: relative;
  z-index: 1;
  width: min(80%, 340px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(237, 201, 130, 0.38);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.28);
}

.presence-base-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
}

.presence-base-card > div {
  display: grid;
  gap: 3px;
}

.presence-base-card span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.presence-base-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
}

.presence-base-card a {
  min-height: 44px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 44px;
  white-space: nowrap;
}

.presence-base-card a:hover {
  color: #fff;
}

.presence-brand-card .presence-note {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.presence-directory {
  align-self: center;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.presence-directory article {
  display: grid;
  grid-template-columns: minmax(140px, 0.75fr) minmax(180px, 1fr) minmax(130px, 0.7fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 22px 0;
}

.presence-directory span {
  color: var(--gold-400);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.presence-directory h3 {
  color: #fff;
  font-size: 1.02rem;
}

.presence-directory p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.presence-directory a {
  min-height: 44px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 44px;
}

.presence-directory a:hover {
  color: var(--gold-400);
}

/* Agenda */
.agenda-section {
  background: #fff;
}

.agenda-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: 58px;
}

.agenda-heading > p {
  margin: 0 0 6px;
  color: var(--muted-foreground);
}

.agenda-list {
  border-top: 1px solid rgba(3, 21, 43, 0.22);
}

.agenda-item {
  display: grid;
  grid-template-columns: 88px 180px minmax(0, 1fr) 52px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(3, 21, 43, 0.22);
  padding: 22px 0;
}

.agenda-item time {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--navy-950);
}

.agenda-item time strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}

.agenda-item time span {
  color: var(--gold-700);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
}

.agenda-item > img {
  width: 180px;
  height: 106px;
  object-fit: cover;
  filter: saturate(0.75);
  transition: filter 220ms ease;
}

.agenda-item:hover > img {
  filter: saturate(1);
}

.agenda-item > div > p {
  margin: 0 0 7px;
  color: var(--gold-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.agenda-item h3 {
  color: var(--navy-950);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.agenda-item > div > span {
  display: block;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.82rem;
}

.agenda-item > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(3, 21, 43, 0.22);
  color: var(--navy-900);
  font-size: 1.2rem;
  transition: background 180ms ease, color 180ms ease;
}

.agenda-item > a:hover {
  background: var(--navy-900);
  color: #fff;
}

.agenda-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
}

/* Editorial */
.editorial-window {
  background: var(--background);
}

.editorial-window-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto auto;
  gap: 16px clamp(36px, 7vw, 100px);
}

.editorial-window header {
  grid-row: 1 / 3;
  align-self: center;
}

.editorial-window header h2 {
  margin-bottom: 40px;
}

.editorial-window header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.editorial-window figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.editorial-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 550ms var(--ease-spring), filter 550ms ease;
}

.editorial-window figure:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.editorial-main {
  min-height: 430px;
}

.editorial-secondary {
  width: 64%;
  min-height: 250px;
  justify-self: end;
}

.editorial-window figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 72%;
  background: var(--navy-950);
  color: #fff;
  padding: 13px 18px;
  font-size: 0.78rem;
}

/* Leadership */
.leadership-editorial {
  background: #fff;
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.leadership-layout header p {
  max-width: 54ch;
  color: var(--muted-foreground);
}

.leadership-layout header .text-link {
  margin-top: 20px;
}

.leadership-portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  align-items: end;
}

.leadership-portraits img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72);
  transition: filter 250ms ease;
}

.leadership-portraits article:hover img {
  filter: saturate(1);
}

.leadership-portraits p {
  display: grid;
  gap: 3px;
  margin: 13px 0 0;
}

.leadership-portraits strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.leadership-portraits span {
  color: var(--muted-foreground);
  font-size: 0.7rem;
}

/* Membership */
.membership-authorial {
  background: var(--background);
}

.membership-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: stretch;
}

.membership-label {
  display: grid;
  min-height: 470px;
  align-content: space-between;
  border-left: 1px solid var(--gold-600);
  background:
    linear-gradient(rgba(3, 21, 43, 0.82), rgba(3, 21, 43, 0.82)),
    url("public/images/membership-associe-se-portugues.png") center / cover;
  color: #fff;
  padding: 32px;
}

.membership-label span {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  writing-mode: vertical-rl;
}

.membership-label small {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.membership-copy {
  align-self: center;
  max-width: 760px;
}

.membership-copy h2 {
  max-width: 17ch;
  margin-bottom: 28px;
}

.membership-copy > p {
  max-width: 62ch;
  color: var(--muted-foreground);
}

.membership-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.membership-copy li {
  border-top: 1px solid rgba(3, 21, 43, 0.16);
  padding: 12px 0;
  color: var(--navy-900);
  font-weight: 700;
}

.membership-plans-section {
  scroll-margin-top: 86px;
  border-top: 1px solid rgba(3, 21, 43, 0.12);
  background: #fff;
}

.membership-plans-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.membership-plans-heading h2 {
  max-width: 17ch;
}

.membership-plans-heading > p {
  margin: 0 0 7px;
  color: var(--muted-foreground);
}

.membership-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.08fr) minmax(0, 0.96fr);
  gap: 18px;
  align-items: stretch;
}

.membership-plan-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgba(3, 21, 43, 0.18);
  background: var(--background);
  padding: clamp(26px, 3vw, 38px);
}

.membership-plan-card > header {
  border-bottom: 1px solid rgba(3, 21, 43, 0.14);
  padding-bottom: 25px;
}

.membership-plan-card .plan-level {
  color: var(--gold-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.membership-plan-card h3 {
  margin-top: 10px;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.membership-plan-card > header > p:last-child {
  min-height: 3.2em;
  margin: 13px 0 0;
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 13px 0 0;
  color: var(--navy-950);
}

.plan-price small {
  font-size: 0.9rem;
  font-weight: 800;
}

.plan-price strong {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.plan-price span {
  color: var(--muted-foreground);
  font-size: 0.76rem;
  font-weight: 700;
}

.plan-benefits {
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.plan-benefits li {
  position: relative;
  color: var(--muted-foreground);
  font-size: 0.82rem;
  line-height: 1.55;
  padding-left: 22px;
}

.plan-benefits li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-700);
  font-weight: 900;
}

.membership-plan-card > .button {
  width: 100%;
  margin-top: auto;
}

.membership-plan-card.is-featured {
  border-color: var(--gold-600);
  background:
    radial-gradient(circle at 88% 8%, rgba(237, 201, 130, 0.14), transparent 30%),
    var(--navy-950);
  box-shadow: 0 24px 54px rgba(3, 21, 43, 0.2);
  transform: translateY(-18px);
}

.membership-plan-card.is-featured > header {
  border-color: rgba(255, 255, 255, 0.18);
}

.membership-plan-card.is-featured h3,
.membership-plan-card.is-featured .plan-price,
.membership-plan-card.is-featured > header > p:last-child,
.membership-plan-card.is-featured .plan-benefits li {
  color: #fff;
}

.membership-plan-card.is-featured .plan-price span {
  color: rgba(255, 255, 255, 0.62);
}

.membership-plan-card.is-featured .plan-level,
.membership-plan-card.is-featured .plan-benefits li::before {
  color: var(--gold-400);
}

.membership-plans-note {
  max-width: 82ch;
  margin: 28px auto 0;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  text-align: center;
}

.partner-note {
  border-top: 1px solid rgba(3, 21, 43, 0.14);
  border-bottom: 1px solid rgba(3, 21, 43, 0.14);
  background: #fff;
  padding: 46px 0;
}

.partner-note .container {
  display: grid;
  grid-template-columns: 0.4fr 1.1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.partner-note .eyebrow,
.partner-note h2,
.partner-note p {
  margin: 0;
}

.partner-note h2 {
  max-width: 28ch;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.partner-note > .container > p:last-child {
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

/* Final CTA and footer */
.final-cta-authorial {
  overflow: hidden;
  background: var(--navy-950);
  padding: clamp(80px, 10vw, 136px) 0;
}

.final-cta-authorial .final-cta-inner {
  overflow: visible;
  border-radius: 0;
  background: none;
  padding: 0;
}

.final-cta-authorial .final-cta-inner::before {
  top: -42px;
  width: 86px;
  height: 1px;
  background: var(--gold-400);
}

.final-cta-authorial h2 {
  max-width: 22ch;
  color: #fff;
  font-size: clamp(2.2rem, 5.1vw, 5rem);
  font-weight: 600;
}

.final-cta-authorial .hero-actions {
  margin-top: 42px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-950);
}

.footer-brand img {
  border-radius: 2px;
}

.cookie-banner {
  border-radius: 3px;
  background: rgba(3, 21, 43, 0.98);
  backdrop-filter: none;
}

/* Internal pages: editorial institutional shell */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(237, 201, 130, 0.24);
  background: var(--navy-950);
  padding: 154px 0 82px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(28px, 8vw, 120px);
  width: 1px;
  height: 100%;
  background: rgba(237, 201, 130, 0.18);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(28px, 8vw, 120px);
  bottom: 0;
  width: min(36vw, 420px);
  height: 1px;
  background: rgba(237, 201, 130, 0.4);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 650;
  line-height: 1.04;
}

.page-hero p {
  max-width: 68ch;
  font-size: 1rem;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-card,
.legal-card,
.form-card,
.event-card,
.presence-card,
.leader-card,
.pricing-card,
.director-card {
  border-radius: 4px;
  box-shadow: none;
}

.content-card:hover,
.event-card:hover,
.presence-card:hover,
.leader-card:hover,
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(3, 21, 43, 0.09);
}

/* Internal page families */
.page-about .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 0.98) 0%, rgba(3, 21, 43, 0.88) 58%, rgba(3, 21, 43, 0.5) 100%),
    url("public/images/referencia/home/conexao-internacional-houston.jpg") center / cover;
}

.page-about .content-grid .content-card {
  border-width: 0 0 0 2px;
  border-color: var(--gold-600);
  background: transparent;
  padding: 10px 26px;
}

.page-about .section:not(.section-dark):not(.about-timeline):nth-of-type(even) {
  background: var(--background);
}

.page-leadership .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 1) 0%, rgba(3, 21, 43, 0.94) 55%, rgba(3, 21, 43, 0.55) 100%),
    url("public/images/referencia/diretoria/renata-miwszuk.jpeg") 88% 34% / 34% auto no-repeat,
    var(--navy-950);
}

.page-leadership .director-card {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(3, 21, 43, 0.18);
  background: #fff;
}

.page-leadership .director-card > div {
  align-self: center;
}

.page-chambers .page-hero {
  background:
    repeating-linear-gradient(120deg, transparent 0 42px, rgba(237, 201, 130, 0.06) 42px 43px),
    linear-gradient(115deg, var(--navy-950), var(--navy-800));
}

.page-chambers .institutional-profile {
  border: 0;
  border-left: 4px solid var(--gold-600);
  background: var(--navy-900);
  color: #fff;
}

.page-chambers .institutional-profile h2 {
  color: #fff;
}

.page-chambers .institutional-profile a:not(.button) {
  color: var(--gold-400);
}

.page-events .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 0.98) 0%, rgba(3, 21, 43, 0.84) 64%, rgba(3, 21, 43, 0.38) 100%),
    url("public/images/referencia/eventos/encontro-empresarial-referencia.png") center 48% / cover;
}

.page-events .event-card {
  overflow: hidden;
  border: 0;
  border-bottom: 2px solid var(--navy-900);
}

.page-events .event-card .card-media {
  border-radius: 0;
}

.page-calendar .page-hero {
  background:
    linear-gradient(120deg, rgba(3, 21, 43, 0.97), rgba(7, 88, 58, 0.8)),
    url("public/images/vida-institucional-auditorio.png") center 48% / cover;
}

.page-calendar .calendar {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: none;
}

.page-gallery .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 0.98), rgba(3, 21, 43, 0.58)),
    url("public/images/referencia/eventos/encontro-empresarial-referencia.png") center 45% / cover;
}

.page-gallery .gallery-grid {
  gap: 10px;
}

.page-gallery .gallery-item {
  border-radius: 0;
}

.page-gallery .gallery-item img {
  filter: saturate(0.78);
}

.page-gallery .gallery-item:hover img {
  filter: saturate(1);
}

.page-membership .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 0.99), rgba(3, 21, 43, 0.72)),
    url("public/images/membership-associe-se-portugues.png") 88% center / auto 140% no-repeat,
    var(--navy-950);
}

.page-membership .pricing-card {
  border-top: 3px solid var(--navy-900);
  background: #fff;
}

.page-membership .pricing-card.is-featured {
  border-color: var(--gold-600);
  background: var(--background);
}

.page-news .page-hero {
  background:
    linear-gradient(90deg, rgba(3, 21, 43, 0.99), rgba(3, 21, 43, 0.62)),
    url("public/images/referencia/eventos/troca-empresarial-referencia.png") center / cover;
}

.page-news .news-card {
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.page-contact .page-hero {
  background:
    linear-gradient(115deg, rgba(3, 21, 43, 0.98), rgba(7, 88, 58, 0.86)),
    url("public/images/referencia/home/contato-institucional-referencia.png") 88% 34% / 34% auto no-repeat,
    var(--navy-950);
}

.page-contact .form-card {
  border: 0;
  border-top: 3px solid var(--gold-600);
  background: var(--background);
}

.page-partners .page-hero {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
}

.page-portal .page-hero {
  background:
    linear-gradient(135deg, rgba(3, 21, 43, 0.97), rgba(6, 43, 82, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 36px, rgba(237, 201, 130, 0.07) 36px 37px);
}

.page-portal .form-card,
.page-portal .content-card {
  border: 0;
  border-top: 3px solid var(--gold-600);
}

.page-legal .page-hero {
  background: linear-gradient(110deg, var(--navy-950), #18324c);
}

.page-legal .legal-card {
  max-width: 900px;
  margin-inline: auto;
  border: 0;
  border-left: 1px solid var(--gold-600);
  padding-left: clamp(22px, 5vw, 64px);
}

.page-error .page-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 48px, rgba(237, 201, 130, 0.055) 48px 49px),
    var(--navy-950);
}

.page-draft .page-hero::before {
  background: rgba(237, 201, 130, 0.3);
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: minmax(210px, 1fr) auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .header-actions {
    order: 3;
  }

  .site-nav {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    max-height: calc(100vh - 98px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(237, 201, 130, 0.22);
    border-radius: 3px;
    background: var(--navy-950);
    padding: 12px;
    box-shadow: 0 24px 48px rgba(3, 21, 43, 0.28);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 15px 12px;
    font-size: 0.9rem;
  }

  .site-nav a::after {
    content: none;
  }

  .site-nav .nav-member {
    margin: 0;
    border-left: 0;
    padding-left: 12px;
  }

  .manifesto-grid {
    grid-template-columns: 72px 1fr;
  }

  .manifesto-photo {
    grid-column: 2;
    margin-top: 0;
  }

  .presence-directory article {
    grid-template-columns: minmax(130px, 0.8fr) 1fr;
  }

  .presence-directory p,
  .presence-directory a {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 1280px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    min-height: 72px;
  }

  .site-header .header-actions {
    grid-column: auto;
    width: auto;
    justify-content: flex-end;
  }

  .site-nav {
    inset: 76px 14px auto;
  }

  .brand-text small {
    display: none;
  }

  .hero-authorial {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .hero-authorial .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy";
    gap: 28px;
  }

  .hero-authorial .hero-copy {
    grid-area: copy;
  }

  .hero-authorial::before {
    top: 72px;
    right: 20px;
  }

  .hero-brand-panel {
    grid-area: brand;
    width: min(68vw, 320px);
    margin: 0;
    justify-self: center;
  }

  .hero-brand-panel::before {
    inset: -8px 8px 8px -8px;
  }

  .hero-brand-panel figcaption {
    display: none;
  }

  .institutional-rail .container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 24px;
  }

  .institutional-rail ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-layout,
  .network-story-grid,
  .presence-stage,
  .agenda-heading,
  .editorial-window-grid,
  .leadership-layout,
  .membership-layout {
    grid-template-columns: 1fr;
  }

  .membership-plans-heading,
  .membership-plan-grid {
    grid-template-columns: 1fr;
  }

  .membership-plan-card.is-featured {
    transform: none;
  }

  .offer-intro {
    position: static;
  }

  .network-copy {
    max-width: 720px;
  }

  .network-mosaic {
    grid-template-rows: 280px 280px auto;
  }

  .presence-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .presence-brand-card {
    grid-template-rows: auto minmax(320px, auto) auto auto;
    min-height: auto;
  }

  .agenda-heading {
    gap: 24px;
  }

  .editorial-window header {
    grid-row: auto;
  }

  .editorial-secondary {
    width: 72%;
  }

  .leadership-layout {
    gap: 72px;
  }

  .partner-note .container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1280px);
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    gap: 8px;
    padding-inline: 13px;
  }

  .brand {
    gap: 7px;
  }

  .brand-logo {
    width: 45px;
    height: 45px;
  }

  .brand-text strong {
    font-size: 0.84rem;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .nav-toggle {
    width: 42px;
  }

  .hero-authorial {
    min-height: auto;
    padding: 100px 0 48px;
  }

  .hero-authorial h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero-authorial .hero-text {
    line-height: 1.55;
  }

  .hero-brand-panel {
    width: min(68vw, 260px);
    margin-top: 0;
  }

  .hero-brand-frame::after {
    border-width: 4px;
  }

  .hero-authorial .hero-actions,
  .membership-copy .hero-actions,
  .final-cta-authorial .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-authorial .button,
  .membership-copy .button,
  .final-cta-authorial .button {
    width: 100%;
  }

  .institutional-rail ul {
    grid-template-columns: 1fr 1fr;
  }

  .institutional-rail li {
    padding: 9px 10px;
    font-size: 0.78rem;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-index {
    display: flex;
    align-items: center;
  }

  .manifesto-index i {
    width: 60px;
    height: 1px;
  }

  .manifesto-index small {
    writing-mode: horizontal-tb;
  }

  .manifesto-photo {
    grid-column: auto;
  }

  .manifesto-photo img {
    min-height: 280px;
  }

  .offer-layout {
    gap: 42px;
  }

  .offer-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 23px 0;
  }

  .network-story-grid {
    gap: 46px;
  }

  .network-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 340px 220px 220px auto;
  }

  .network-mosaic .mosaic-tall {
    grid-row: auto;
  }

  .network-mosaic p {
    grid-column: auto;
  }

  .presence-heading {
    margin-bottom: 42px;
  }

  .presence-brand-card {
    grid-template-rows: auto minmax(290px, auto) auto auto;
    min-height: auto;
    gap: 18px;
    padding: 22px;
  }

  .presence-brand-media {
    min-height: 290px;
  }

  .presence-brand-media::before {
    bottom: 4px;
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .presence-brand-media img {
    width: min(84%, 282px);
  }

  .presence-base-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .presence-base-card a {
    line-height: 1.3;
  }

  .presence-directory article {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 21px 0;
  }

  .presence-directory a {
    line-height: 1.3;
  }

  .agenda-item {
    grid-template-columns: 64px 1fr 46px;
    grid-template-areas:
      "date media action"
      "date details action";
    gap: 14px;
    align-items: start;
    padding: 20px 0;
  }

  .agenda-item > img {
    grid-area: media;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .agenda-item > div {
    grid-area: details;
  }

  .agenda-item > a {
    grid-area: action;
    align-self: center;
  }

  .agenda-item time {
    grid-area: date;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .agenda-item time strong {
    font-size: 1.8rem;
  }

  .editorial-main {
    min-height: 340px;
  }

  .editorial-secondary {
    width: 100%;
  }

  .leadership-portraits {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-portraits article:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
  }

  .membership-label {
    min-height: 260px;
  }

  .membership-label span {
    writing-mode: horizontal-tb;
  }

  .membership-copy ul {
    grid-template-columns: 1fr;
  }

  .membership-plan-card {
    padding: 26px 22px;
  }

  .membership-plan-card > header > p:last-child {
    min-height: auto;
  }

  .final-cta-authorial {
    padding: 92px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .brand-text {
    display: none;
  }

  .hero-authorial {
    min-height: auto;
  }

  .hero-authorial h1 {
    font-size: 2.3rem;
  }

  .hero-authorial .hero-actions {
    margin-top: 24px;
  }

  .hero-brand-panel {
    width: min(70vw, 240px);
    margin-right: 0;
  }

  .institutional-rail ul {
    grid-template-columns: 1fr;
  }

  .institutional-rail li {
    border-left: 0;
    border-top: 1px solid rgba(3, 21, 43, 0.12);
    padding-left: 0;
  }

  .agenda-item {
    grid-template-columns: 56px 1fr 44px;
    gap: 9px;
  }

  .agenda-item h3 {
    font-size: 1.02rem;
  }
}

@media (max-width: 640px) {
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-actions .button {
    width: 100%;
  }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

/* Publication-ready internal pages */
.about-story {
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.about-story-copy {
  display: grid;
  gap: 18px;
  border-left: 2px solid var(--gold-600);
  padding-left: clamp(24px, 4vw, 48px);
}

.about-story-copy p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

body.page-about section.about-timeline {
  background: var(--navy-950);
  color: #fff;
}

.about-timeline .section-heading h2 {
  color: #fff;
}

.about-timeline .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  display: grid;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px 24px 0 0;
}

.timeline-list li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  background: var(--gold-400);
  content: "";
}

.timeline-list > li > span {
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.timeline-list h3 {
  margin-bottom: 10px;
  color: #fff;
}

.timeline-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.board-section {
  background: #fff;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.board-card {
  overflow: hidden;
  border: 1px solid rgba(3, 21, 43, 0.15);
  border-top: 3px solid var(--gold-600);
  background: #fff;
}

.board-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.board-card > div {
  padding: 24px;
}

.board-card span,
.calendar-entry > div > span {
  color: var(--gold-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-card h2 {
  max-width: none;
  margin: 8px 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.board-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.international-board {
  border-top: 1px solid var(--border);
  background: var(--background);
}

.page-events .events-grid {
  align-items: stretch;
}

.page-events .event-card {
  grid-template-rows: auto auto auto auto 1fr auto;
}

.page-events .event-card h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.page-events .event-card .card-actions {
  align-self: end;
}

.page-portal .page-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
}

.page-portal .page-hero .button-secondary:hover {
  border-color: var(--gold-400);
  background: #fff;
  color: var(--navy-950);
}

.agenda-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid rgba(3, 21, 43, 0.2);
  padding-bottom: 32px;
}

.agenda-intro h2 {
  max-width: none;
}

.agenda-intro > p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.calendar-list {
  display: grid;
}

.calendar-entry {
  display: grid;
  grid-template-columns: 86px 180px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  border-bottom: 1px solid rgba(3, 21, 43, 0.18);
  padding: 26px 0;
}

.calendar-entry time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
}

.calendar-entry time strong {
  font-size: 2.45rem;
  line-height: 1;
}

.calendar-entry time span {
  color: var(--gold-700);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.calendar-entry > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.calendar-entry h2 {
  max-width: none;
  margin: 7px 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.calendar-entry p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.calendar-entry > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(3, 21, 43, 0.22);
  color: var(--navy-950);
  padding: 10px 14px;
  font-weight: 750;
  white-space: nowrap;
}

.calendar-entry > a:hover {
  border-color: var(--gold-600);
  background: var(--navy-950);
  color: #fff;
}

.agenda-footer,
.gallery-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
}

.agenda-footer p,
.gallery-note p {
  margin: 0;
  color: var(--muted-foreground);
}

.gallery-note {
  border-top: 1px solid rgba(3, 21, 43, 0.16);
  padding-top: 24px;
}

.social-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(3, 21, 43, 0.18);
  background: transparent;
  color: var(--navy-950);
  padding: 9px 13px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1;
}

.social-button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-button svg[fill="none"] {
  fill: none;
}

.social-button .fill-current {
  fill: currentColor;
  stroke: none;
}

.contact-social .social-button {
  border: 1px solid rgba(3, 21, 43, 0.18);
  color: var(--navy-950);
  padding: 9px 13px;
}

.contact-social > span {
  flex-basis: 100%;
}

.contact-social .social-button:hover {
  border-color: var(--gold-600);
  background: var(--navy-950);
  color: #fff;
}

.site-footer .footer-social .social-button {
  min-height: 44px;
  gap: 8px;
  border: 1px solid rgba(237, 201, 130, 0.28);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 12px;
}

.site-footer .footer-social .social-button:hover {
  border-color: var(--gold-400);
  background: rgba(237, 201, 130, 0.1);
  color: var(--gold-300);
}

.site-footer .footer-social .social-button svg {
  width: 18px;
  height: 18px;
}

.whatsapp-float {
  border-color: rgba(237, 201, 130, 0.7);
  background: var(--navy-900);
  color: #fff;
}

.whatsapp-float svg {
  color: var(--gold-300);
}

.whatsapp-float:hover {
  border-color: var(--gold-400);
  background: var(--gold-400);
  color: var(--navy-950);
}

.whatsapp-float:hover svg {
  color: var(--navy-950);
}

.whatsapp-float.is-hidden-over-footer {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

@media (max-width: 1100px) {
  .page-events .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-entry {
    grid-template-columns: 72px 150px minmax(0, 1fr);
  }

  .calendar-entry > a {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .about-story-grid,
  .agenda-intro {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

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

@media (max-width: 640px) {
  .about-story-copy {
    padding-left: 20px;
  }

  .timeline-list,
  .board-grid,
  .page-events .events-grid {
    grid-template-columns: 1fr;
  }

  .calendar-entry {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
  }

  .calendar-entry > img {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .calendar-entry time {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    flex-direction: column;
    gap: 3px;
  }

  .calendar-entry > div {
    grid-column: 2;
    grid-row: 2;
  }

  .calendar-entry > a {
    grid-column: 2;
    justify-self: start;
  }

  .calendar-entry h2 {
    font-size: 1.3rem;
  }

  .agenda-footer,
  .gallery-note {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-mosaic img,
  .editorial-window img,
  .leadership-portraits img {
    transform: none !important;
  }
}
