:root {
  --navy: #1B3A6B;
  --navy-deep: #122848;
  --navy-soft: #2b4f85;
  --gold: #C9A84C;
  --gold-deep: #A8892F;
  --gold-soft: #E6D097;
  --ivory: #F5F0E8;
  --ivory-deep: #ECE3D0;
  --sepia: #2D1B0E;
  --sepia-soft: #5c4a3a;
  --ink: #1a1714;
  --ink-2: #4a4239;
  --ink-3: #7a7266;
  --line: rgba(45,27,14,.12);
  --line-strong: rgba(45,27,14,.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-md: 0 8px 24px rgba(27,58,107,.10), 0 2px 6px rgba(27,58,107,.06);
  --shadow-lg: 0 24px 60px rgba(27,58,107,.16), 0 6px 18px rgba(27,58,107,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 700; color: var(--sepia); line-height: 1.15; letter-spacing: 0; }
h1 { font-size: 72px; }
h2 { font-size: 46px; }
h3 { font-size: 26px; }
p { margin: 0 0 1em; color: var(--ink-2); }

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; scroll-margin-top: 90px; }
.bg-ivory { background: var(--ivory); }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: all .25s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--sepia); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; transform: translateY(-1px); }
.btn-navy { color: #fff; background: var(--navy); border-color: var(--navy); }
.btn-navy:hover { color: #fff; background: var(--navy-deep); transform: translateY(-1px); }
.btn-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.10); border-color: #fff; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in, .reveal.is-visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.4) blur(12px);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled { background: rgba(255,255,255,.985); box-shadow: 0 10px 28px rgba(18,40,72,.08); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; color: var(--navy); }
.brand-mark { width: 50px; height: 60px; position: relative; flex-shrink: 0; display: grid; place-items: center; padding: 4px; background: #fff; border: 1px solid rgba(201,168,76,.32); border-radius: 7px; box-shadow: 0 5px 14px rgba(18,40,72,.10); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 2px 3px rgba(18,40,72,.12)); }
.crest-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  border: 1.5px solid var(--gold);
  border-radius: 4px 4px 24px 24px / 4px 4px 48px 48px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
}
.crest-ph::before { content: "ICM"; }
.crest-ph::after { content: ""; position: absolute; bottom: 6px; left: 50%; width: 18px; height: 2px; background: var(--gold); opacity: .6; transform: translateX(-50%); }
.brand-name { color: var(--navy); font-family: var(--serif); font-size: 15px; font-weight: 700; line-height: 1.2; }
.brand-name span { display: block; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; color: var(--gold-deep); text-transform: uppercase; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 1px; }
.nav-links a { padding: 9px 6px; color: var(--ink-2); font-size: 11.5px; font-weight: 700; }
.nav-links a:hover, .nav-links a.is-active { color: var(--navy); background: rgba(27,58,107,.06); border-radius: var(--radius); }
.donate-link, .discern-link { margin-left: 4px; color: var(--sepia) !important; background: var(--gold); border-radius: var(--radius); }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--line-strong); border-radius: var(--radius); }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy); }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: #fff;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,.22), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(27,58,107,.6), transparent 60%),
    linear-gradient(160deg, #0e1f3b 0%, #1B3A6B 55%, #2b4f85 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.012) 0 14px, transparent 14px 28px);
}
.hero-bg::before {
  content: "";
  position: absolute;
  left: -20%;
  bottom: 18%;
  width: 64%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,208,151,.7), transparent);
  animation: heroLightSweep 8s var(--ease) infinite;
}
.hero-photo {
  position: absolute;
  right: -6%;
  top: 0;
  bottom: 0;
  width: 58%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--navy);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .78; filter: saturate(.88) contrast(1.04); animation: heroImageDrift 18s var(--ease) infinite alternate; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(27,58,107,.35), rgba(18,40,72,.76) 70%); }
.hero-photo-label {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 3;
  padding: 6px 12px;
  color: rgba(255,255,255,.58);
  background: rgba(18,40,72,.62);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2px;
  font: 10px/1.4 "SF Mono", Menlo, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: labelFloat 4s var(--ease) infinite alternate;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px 16px;
  color: var(--gold-soft);
  border: 1px solid rgba(201,168,76,.5);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2.4s infinite; }
.hero h1 { margin-bottom: 28px; color: #fff; line-height: 1.03; letter-spacing: 0; text-wrap: balance; }
.hero h1 em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.hero-sub { max-width: 620px; margin-bottom: 40px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.6; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 40px; max-width: 640px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { color: var(--gold-soft); font-family: var(--serif); font-size: 30px; font-weight: 700; line-height: 1; }
.hero-meta .v { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll .line { width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollLine 2.2s infinite; }

/* Audience gateways */
.audience-gateway {
  position: relative;
  z-index: 4;
  margin-top: -76px;
  padding-bottom: clamp(34px, 5vw, 64px);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.audience-card {
  min-height: 286px;
  display: grid;
  align-content: end;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18,40,72,.15), rgba(18,40,72,.92)),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(230,208,151,.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.audience-card:nth-child(2) { background: linear-gradient(180deg, rgba(45,27,14,.18), rgba(45,27,14,.88)), url("assets/barbara-memory-triptych.webp") center / cover; }
.audience-card:nth-child(3) { background: linear-gradient(180deg, rgba(18,40,72,.10), rgba(18,40,72,.90)), url("assets/conselho-geral-web.jpg") center 32% / cover; }
.audience-card:hover { color: #fff; transform: translateY(-8px); border-color: rgba(230,208,151,.62); box-shadow: 0 30px 72px rgba(18,40,72,.22); }
.audience-kicker {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.audience-card h2 { margin-top: 12px; color: #fff; font-size: 32px; }
.audience-card p { margin-top: 12px; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.62; }
.audience-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
}

/* Welcome */
.welcome { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.welcome-lead { margin-top: 24px; color: var(--sepia); font-family: var(--serif); font-size: 31px; line-height: 1.35; }
.welcome-lead::first-letter { float: left; padding: 6px 10px 0 0; color: var(--gold-deep); font-size: 3.4em; font-weight: 700; line-height: .86; }
.welcome-body p { margin-bottom: 18px; color: var(--ink-2); font-size: 17px; }
.welcome-signature { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.sigmark { width: 40px; height: 1px; background: var(--gold); }
.sigtext { color: var(--sepia); font-family: var(--serif); font-style: italic; font-size: 15px; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.pillar { min-height: 240px; padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar .n { margin-bottom: 22px; color: var(--gold-deep); font-family: var(--serif); font-size: 28px; font-style: italic; }
.pillar p { margin-top: 12px; color: var(--ink-3); font-size: 15px; }

/* Impact */
.impact { padding: clamp(60px, 7vw, 96px) 0; background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.impact .text-center { margin-bottom: 48px; }
.impact h2 { margin-top: 14px; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.impact-card { padding: 28px 32px; border-right: 1px solid var(--line); }
.impact-card:last-child { border-right: 0; }
.impact-card .num { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; color: var(--navy); font-family: var(--serif); font-size: 58px; font-weight: 700; line-height: 1; }
.impact-card .plus { color: var(--gold-deep); font-size: .5em; }
.impact-card .lbl { color: var(--ink-2); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.impact-card .desc { margin-top: 10px; color: var(--ink-3); font-size: 14px; }

/* Section heads */
.shead { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.shead h2 { margin-top: 14px; max-width: 760px; }
.shead p { max-width: 650px; color: var(--ink-3); }

/* Real map */
.world-section { padding: clamp(70px, 9vw, 120px) 0; color: #fff; background: var(--navy-deep); }
.world-section h2, .world-section h3 { color: #fff; }
.world-section p { color: rgba(255,255,255,.78); }
.real-map-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 18px; }
.map-card, .map-panel { border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); box-shadow: var(--shadow-lg); overflow: hidden; }
.map-card { position: relative; min-height: 560px; }
.world-map { position: absolute; inset: 0; z-index: 2; min-height: 560px; background: #c8d8d9; }
.map-fallback { position: absolute; inset: 0; z-index: 1; background: radial-gradient(circle at 35% 60%, rgba(255,255,255,.16) 0 13%, transparent 13.5%), radial-gradient(circle at 60% 50%, rgba(255,255,255,.10) 0 18%, transparent 18.5%), linear-gradient(135deg, #173d66, #142c4a); }
.fallback-dot, .icm-marker { width: 18px; height: 18px; border: 3px solid #fff; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(228,200,111,.18); }
.fallback-dot { position: absolute; }
.icm-marker { position: relative; display: block; animation: markerPulse 2.2s var(--ease) infinite; }
.fallback-dot.br { left: 36%; top: 67%; } .fallback-dot.ht { left: 27%; top: 50%; } .fallback-dot.bo { left: 34%; top: 65%; } .fallback-dot.ar { left: 36%; top: 78%; }
.fallback-dot.py { left: 37%; top: 72%; } .fallback-dot.ao { left: 55%; top: 66%; } .fallback-dot.mz { left: 62%; top: 68%; } .fallback-dot.it { left: 53%; top: 38%; }
.map-panel { padding: 24px; }
.country-tabs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.country-tab { min-height: 42px; padding: 9px 12px; color: #fff; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.06); font-size: 14px; font-weight: 700; text-align: left; transition: all .22s var(--ease); }
.country-tab:hover, .country-tab.is-active { color: var(--sepia); background: var(--gold); transform: translateY(-1px); }
.country-card { margin-top: 20px; padding: 26px; color: var(--ink); background: var(--ivory); border-radius: var(--radius-lg); }
.country-card .meta { color: var(--gold-deep); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.country-card h3 { margin-top: 12px; color: var(--sepia); }
.country-card p { margin-top: 12px; color: var(--ink-2); }
.country-card.is-changing > * { animation: swapIn .34s var(--ease) both; }
.leaflet-container { font-family: var(--sans); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--ivory); color: var(--ink); }

/* Institutional identity */
.identity-map-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18,40,72,.96), rgba(27,58,107,.88)),
    url("assets/hero-instituto.jpg") center / cover;
}
.identity-map-section h2,
.identity-map-section h3 { color: #fff; }
.identity-map-section p { color: rgba(255,255,255,.78); }
.identity-map-section .eyebrow { color: var(--gold-soft); }
.identity-map-grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 14px;
}
.identity-card {
  min-height: 260px;
  padding: 28px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.identity-card.primary { background: rgba(201,168,76,.18); border-color: rgba(230,208,151,.44); }
.identity-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.identity-card p { margin: 12px 0 0; }
.identity-card a { display: inline-block; margin-top: 18px; color: var(--gold-soft); font-weight: 900; }

/* Legacy archive */
.legacy-archive-section {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45,27,14,.04) 1px, transparent 1px) 0 0 / 84px 84px,
    #fff;
}
.legacy-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.legacy-portrait {
  position: relative;
  margin: 0;
  padding: 14px 14px 48px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(var(--tilt, -1.2deg));
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.legacy-portrait:nth-child(2) { --tilt: .7deg; margin-top: 28px; }
.legacy-portrait:nth-child(3) { --tilt: -2deg; }
.legacy-portrait:nth-child(4) { --tilt: 1.4deg; margin-top: 34px; }
.legacy-portrait:hover { transform: rotate(0) translateY(-6px); box-shadow: var(--shadow-lg); }
.legacy-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  filter: sepia(.15) contrast(1.02);
  background: #fff;
}
.legacy-portrait figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: var(--sepia-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Barbara */
body[data-page="barbara"] {
  background:
    linear-gradient(90deg, rgba(45,27,14,.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #fff 0%, #fff 45%, var(--ivory) 100%);
}
.barbara-cinema-hero { min-height: calc(100vh - 72px); align-items: center; isolation: isolate; }
.barbara-cinema-hero .page-hero-media img {
  opacity: 1;
  object-position: center;
  filter: saturate(.92) contrast(1.06);
  animation: barbaraCinematicDrift 18s var(--ease) infinite alternate;
}
.barbara-cinema-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .18;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(230,208,151,.45) 48%, transparent 54%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  animation: filmBreath 5.5s var(--ease) infinite alternate;
}
.barbara-cinema-hero::after {
  background:
    radial-gradient(circle at 72% 28%, rgba(201,168,76,.12), transparent 28%),
    linear-gradient(90deg, rgba(10,18,32,.98), rgba(18,40,72,.88) 37%, rgba(18,40,72,.32) 70%, rgba(18,40,72,.12));
}
.barbara-cinema-hero .page-hero-inner { padding-top: 120px; padding-bottom: 92px; }
.barbara-cinema-hero .breadcrumb,
.barbara-cinema-hero .eyebrow,
.barbara-cinema-hero h1,
.barbara-cinema-hero p,
.barbara-hero-actions,
.barbara-hero-meta {
  position: relative;
  z-index: 4;
}
.barbara-cinema-hero .eyebrow { color: var(--gold-soft); text-shadow: 0 8px 26px rgba(0,0,0,.45); }
.barbara-cinema-hero h1 { max-width: 720px; color: #fff; font-size: clamp(48px, 7vw, 88px); text-shadow: 0 12px 38px rgba(0,0,0,.44); }
.barbara-cinema-hero p { max-width: 580px; color: rgba(255,255,255,.88); text-shadow: 0 10px 28px rgba(0,0,0,.38); }
.barbara-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.barbara-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
  max-width: 760px;
}
.barbara-hero-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.barbara-hero-meta strong { color: var(--gold-soft); font-family: var(--serif); font-size: 22px; letter-spacing: 0; }
.barbara-ribbon {
  overflow: hidden;
  color: var(--gold-soft);
  background: var(--navy-deep);
  border-top: 1px solid rgba(230,208,151,.24);
  border-bottom: 1px solid rgba(230,208,151,.24);
}
.barbara-ribbon-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 15px 0;
  animation: ribbonRun 32s linear infinite;
}
.barbara-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: rgba(230,208,151,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.barbara-ribbon span::after { content: ""; width: 36px; height: 1px; background: rgba(230,208,151,.35); }
.barbara-editorial-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, rgba(245,240,232,.68));
}
.barbara-editorial-section::before {
  content: "";
  position: absolute;
  left: -14vw;
  top: 16%;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(201,168,76,.22);
  transform: rotate(12deg);
}
.barbara-editorial-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.barbara-copy-xl h2 { max-width: 560px; margin-top: 16px; font-size: clamp(40px, 5.8vw, 74px); }
.barbara-copy-xl p { max-width: 600px; font-size: 18px; }
.cinema-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy-deep);
  box-shadow: var(--shadow-lg);
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 10% 100%, 0 86%);
}
.cinema-frame img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowCinemaZoom 14s var(--ease) infinite alternate;
}
.cinema-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,40,72,.48), transparent 35%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: .55;
}
.cinema-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(230,208,151,.45);
}
.cinema-frame-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(18,40,72,.58);
  border: 1px solid rgba(230,208,151,.25);
  backdrop-filter: blur(10px);
}
.cinema-frame-caption span { color: var(--gold-soft); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.cinema-frame-caption strong { font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.barbara-motion-chapter {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 132px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 14% 22%, rgba(201,168,76,.28), transparent 24%),
    linear-gradient(135deg, #091425 0%, #122848 52%, #1f477d 100%);
}
.barbara-motion-chapter::before {
  content: "1848";
  position: absolute;
  left: -3vw;
  top: -7vw;
  color: rgba(230,208,151,.055);
  font-family: var(--serif);
  font-size: clamp(140px, 26vw, 360px);
  font-weight: 700;
  line-height: 1;
}
.barbara-motion-chapter::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(255,255,255,.12) 50%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 70px);
  animation: filmBreath 6s var(--ease) infinite alternate;
}
.barbara-motion-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.motion-copy h2 { max-width: 520px; margin-top: 16px; color: #fff; font-size: clamp(40px, 5.4vw, 72px); }
.motion-copy p { max-width: 470px; color: rgba(255,255,255,.78); font-size: 18px; }
.barbara-motion-chapter .eyebrow { color: var(--gold-soft); }
.motion-reel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #07111f;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}
.motion-reel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(230,208,151,.4);
}
.motion-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7,17,31,.74), transparent 46%, rgba(7,17,31,.22)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}
.reel-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: frameFade 15s var(--ease) infinite;
}
.reel-frame-one { background-image: url("assets/barbara-cinematic-hero.webp"); }
.reel-frame-two {
  background:
    radial-gradient(circle at 63% 47%, rgba(230,208,151,.18), transparent 28%),
    url("assets/barbara-maix-oficial.webp") 68% 50% / auto 86% no-repeat,
    linear-gradient(135deg, #14243d, #08131f);
  animation-delay: 5s;
}
.reel-frame-three { background-image: url("assets/barbara-memory-triptych.webp"); animation-delay: 10s; }
.reel-light {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -22%;
  z-index: 6;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: rotate(10deg);
  animation: reelSweep 4.8s var(--ease) infinite;
}
.reel-code {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 7;
  display: flex;
  gap: 8px;
}
.reel-code span {
  min-width: 48px;
  padding: 7px 9px;
  color: rgba(230,208,151,.86);
  background: rgba(7,17,31,.62);
  border: 1px solid rgba(230,208,151,.24);
  font: 11px/1 var(--sans);
  font-weight: 900;
  letter-spacing: .18em;
  text-align: center;
}
.barbara-life-map {
  background:
    linear-gradient(90deg, rgba(27,58,107,.04) 1px, transparent 1px) 0 0 / 88px 88px,
    #fff;
}
.barbara-life-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}
.life-sticky {
  position: sticky;
  top: 104px;
  padding: 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-lg);
}
.life-sticky h2 { margin-top: 16px; font-size: 34px; }
.life-facts {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.life-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.life-facts span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.life-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--sepia);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}
.life-timeline {
  position: relative;
  display: grid;
  gap: 18px;
}
.life-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.12));
}
.life-timeline article {
  position: relative;
  padding: 2px 0 22px 58px;
}
.life-timeline article::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201,168,76,.13);
}
.life-timeline article:nth-child(4)::before,
.life-timeline article:nth-child(6)::before { border-color: var(--navy); box-shadow: 0 0 0 6px rgba(27,58,107,.12); }
.life-timeline span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
}
.life-timeline h3 { margin-top: 4px; font-size: 26px; }
.life-timeline p { max-width: 760px; margin-top: 8px; }
.barbara-beatification .timeline.compact { grid-template-columns: repeat(4, minmax(160px, 1fr)); }
.barbara-beatification .timeline div {
  min-height: 210px;
  border: 0;
  box-shadow: none;
  background: linear-gradient(180deg, #fff, rgba(255,255,255,.6));
}
.barbara-beatification .timeline div::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transform: scaleX(.35);
  transition: transform .35s var(--ease);
}
.barbara-beatification .timeline div:hover::after { transform: scaleX(1); }
.barbara-prayer-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18,40,72,.96), rgba(18,40,72,.84)),
    url("assets/barbara-memory-triptych.webp") center / cover;
}
.barbara-prayer-section .eyebrow { color: var(--gold-soft); }
.barbara-prayer-block {
  max-width: 940px;
  margin-left: auto;
  background: rgba(255,255,255,.09);
  border-color: var(--gold);
  box-shadow: none;
  backdrop-filter: blur(12px);
}
.barbara-prayer-block p { color: #fff; }
.barbara-prayer-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.barbara-archive-section { overflow: hidden; }
.archive-showcase {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: var(--shadow-lg);
}
.archive-showcase img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(.94) contrast(1.02);
  animation: archiveFloat 16s var(--ease) infinite alternate;
}
.archive-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,40,72,.86), rgba(18,40,72,.22) 52%, rgba(18,40,72,.06));
}
.archive-note {
  position: absolute;
  left: clamp(20px, 5vw, 54px);
  bottom: clamp(20px, 5vw, 54px);
  z-index: 2;
  max-width: 360px;
}
.archive-note span { display: block; margin-bottom: 10px; color: var(--gold-soft); font-size: 12px; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.archive-note p { color: rgba(255,255,255,.84); font-family: var(--serif); font-size: 28px; line-height: 1.28; }
.archive-grid { margin-top: 24px; }
.archive-grid img {
  border: 0;
  border-radius: 0;
  background: #fff;
  transform: rotate(var(--tilt, -1deg));
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.archive-grid img:nth-child(2) { --tilt: 1.3deg; }
.archive-grid img:nth-child(3) { --tilt: -.5deg; }
.archive-grid img:hover { transform: rotate(0) translateY(-6px); box-shadow: var(--shadow-lg); }
.barbara-memorial-cta {
  padding: clamp(56px, 7vw, 92px) 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(18,40,72,.94), rgba(45,27,14,.82)),
    url("assets/santuario.jpg") center / cover;
}
.barbara-memorial-cta h2 { margin-top: 14px; color: #fff; }
.barbara-memorial-cta p { color: rgba(255,255,255,.78); }
.barbara-memorial-cta .eyebrow { color: var(--gold-soft); }
.memorial-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
}
.memorial-cta-grid p { max-width: 720px; }
.barbara-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; margin-top: 40px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.barbara-feature-img { position: relative; min-height: 430px; background: linear-gradient(145deg, rgba(201,168,76,.2), rgba(27,58,107,.12)), var(--ivory-deep); }
.sepia-frame { position: absolute; inset: 42px; border: 1px solid rgba(45,27,14,.16); background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.38), transparent 43%), url("assets/barbara-maix-oficial.webp") center / contain no-repeat; }
.barbara-feature-img .label { position: absolute; left: 24px; bottom: 22px; color: var(--sepia-soft); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.barbara-feature-text { padding: clamp(32px, 5vw, 64px); }
.dates { margin: 12px 0 24px; color: var(--gold-deep); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tags span { padding: 7px 11px; color: var(--navy); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; font-weight: 700; }

/* Works */
.works-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(270px, auto)); gap: 18px; }
.work-card { position: relative; min-height: 270px; overflow: hidden; color: #fff; border-radius: var(--radius-lg); background: var(--navy); box-shadow: var(--shadow-md); transform-style: preserve-3d; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.work-card.feature { grid-row: span 2; }
.work-card img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; transition: transform .45s var(--ease); }
.work-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(18,40,72,.86), rgba(18,40,72,.08) 65%); }
.work-card div { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; }
.work-card p { margin: 0; color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.work-card h3 { margin-top: 8px; color: #fff; }
.work-card span { display: block; margin-top: 8px; color: rgba(255,255,255,.82); }
.work-card:hover img { transform: scale(1.045); }
.work-card:hover { box-shadow: var(--shadow-lg); }

/* CTA */
.vocation-cta { padding: clamp(70px, 9vw, 120px) 0; color: #fff; background: linear-gradient(120deg, rgba(18,40,72,.96), rgba(27,58,107,.78)), url("assets/art-vocacao-caminho.webp") center / cover; }
.vocation-cta h2 { max-width: 820px; margin-top: 18px; color: #fff; }
.vocation-cta h2 em { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.vocation-cta p { max-width: 720px; color: rgba(255,255,255,.82); font-size: 18px; }
.actions { margin-top: 28px; }
.donate-section { background: #fff; }
.donate-band { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 40px; background: var(--ivory); border: 1px solid var(--line); border-left: 6px solid var(--gold); border-radius: var(--radius-lg); }
.donate-band h3 { margin-top: 12px; }
.footer { padding: 32px 0; color: rgba(255,255,255,.76); background: var(--navy-deep); }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.footer a { color: var(--gold-soft); }

/* Pages */
.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .45; filter: saturate(.85) contrast(1.05); transform: scale(1.03); animation: heroImageDrift 20s var(--ease) infinite alternate; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(18,40,72,.94), rgba(18,40,72,.58) 54%, rgba(18,40,72,.38)); }
.page-hero-inner { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 72px; }
.page-hero h1 { max-width: 840px; margin-top: 16px; color: #fff; font-size: 58px; }
.page-hero p { max-width: 700px; margin-top: 18px; color: rgba(255,255,255,.82); font-size: 19px; }
.devotional-hero .page-hero-media img { object-position: center 18%; opacity: .38; }
.vocation-page-hero .page-hero-media img { object-position: center; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; color: rgba(255,255,255,.68); font-size: 13px; font-weight: 700; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb span::before { content: "/"; margin-right: 10px; color: rgba(255,255,255,.38); }

.two-col { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.story-copy p { font-size: 18px; }
.feature-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.feature-copy p { font-size: 18px; }
.feature-copy .btn { margin-top: 12px; }
.feature-image { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--ivory); }
.feature-image img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform .5s var(--ease); }
.feature-image:hover img { transform: scale(1.04); }
.sepia-image img { object-fit: contain; padding: 28px; filter: sepia(.24); }
.gold-quote { max-width: 850px; margin: 50px auto 0; padding: 32px 40px; border-left: 6px solid var(--gold); background: #fff; box-shadow: var(--shadow-md); }
.gold-quote p { margin: 0; color: var(--sepia); font-family: var(--serif); font-size: 30px; font-style: italic; line-height: 1.35; }

.vocation-listening-band {
  padding: clamp(54px, 7vw, 88px) 0;
  background:
    linear-gradient(90deg, rgba(45,27,14,.04) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--ivory);
}
.vocation-listening-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.listening-copy h2 { margin-top: 16px; font-size: clamp(38px, 5.6vw, 70px); }
.listening-copy p { max-width: 520px; font-size: 18px; }
.listening-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.listening-card {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.listening-card span {
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
}
.listening-card h3 { margin-top: 22px; }
.listening-card p { margin-top: 10px; font-size: 15px; }

/* Irma Miria */
body[data-page="irma-miria"] {
  background:
    linear-gradient(90deg, rgba(27,58,107,.035) 1px, transparent 1px) 0 0 / 92px 92px,
    #fff;
}
.miria-hero .page-hero-media img {
  opacity: .7;
  object-position: center;
  filter: saturate(.88) contrast(1.06);
}
.miria-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .18;
  background:
    repeating-linear-gradient(0deg, transparent 0 19px, rgba(230,208,151,.52) 19px 20px, transparent 20px 34px),
    linear-gradient(115deg, transparent 0 45%, rgba(255,255,255,.18) 50%, transparent 56%);
  mix-blend-mode: screen;
  animation: filmBreath 6s var(--ease) infinite alternate;
}
.miria-hero::after {
  background:
    radial-gradient(circle at 72% 35%, rgba(230,208,151,.16), transparent 28%),
    linear-gradient(90deg, rgba(8,18,34,.98), rgba(18,40,72,.84) 48%, rgba(18,40,72,.28));
}
.miria-hero h1 { max-width: 820px; font-size: clamp(48px, 7vw, 86px); }
.miria-hero p { max-width: 680px; }
.miria-hero-meta { max-width: 860px; }
.miria-score-band {
  position: relative;
  overflow: hidden;
  height: 86px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 0 var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.score-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45,27,14,.24), transparent);
}
.note {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(201,168,76,.12);
  animation: noteTravel 9s linear infinite;
}
.note::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 10px;
  width: 2px;
  height: 42px;
  background: var(--gold-deep);
}
.note-a { left: -4%; top: 34px; }
.note-b { left: -16%; top: 22px; animation-delay: 1.8s; }
.note-c { left: -26%; top: 48px; animation-delay: 3.6s; }
.note-d { left: -38%; top: 30px; animation-delay: 5.4s; }
.miria-intro-section {
  background: linear-gradient(180deg, #fff, rgba(245,240,232,.66));
}
.miria-intro-grid,
.miria-timeline-grid,
.miria-player-grid,
.miria-cta-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.miria-lead h2 { max-width: 620px; margin-top: 16px; font-size: clamp(40px, 5.7vw, 74px); }
.miria-copy p { max-width: 760px; font-size: 18px; }
.miria-quest-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201,168,76,.08) 0 1px, transparent 1px 22px) 0 0 / 24px 24px,
    linear-gradient(120deg, #0d1725, #142d4f 58%, #213a46);
}
.miria-quest-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent) 0 0 / 260px 100%;
  animation: questScan 9s linear infinite;
  opacity: .55;
}
.miria-quest-section .container { position: relative; z-index: 1; }
.miria-quest-section .eyebrow { color: var(--gold-soft); }
.miria-quest-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.miria-quest-copy h2 {
  max-width: 680px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(42px, 6vw, 82px);
}
.miria-quest-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.quest-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.quest-mini-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
}
.quest-mini-stats strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
}
.miria-quest-board {
  position: relative;
  min-height: 520px;
  padding: clamp(20px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05)),
    rgba(7,16,29,.72);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.miria-quest-board::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #2fa79b, var(--gold), #d85a3a, #2fa79b);
  background-size: 220% 100%;
  animation: questGradient 7s linear infinite;
}
.quest-options {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.quest-options button {
  min-height: 104px;
  padding: 16px;
  text-align: left;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.quest-options button:hover,
.quest-options button.is-active {
  color: #fff;
  border-color: rgba(230,208,151,.58);
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.quest-options button span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}
.quest-panel {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 22px 58px rgba(0,0,0,.22);
  animation: swapIn .45s var(--ease);
}
.quest-panel-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}
.quest-panel-top span,
.quest-panel-top strong {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.quest-panel h3 {
  max-width: 520px;
  font-size: clamp(34px, 4vw, 56px);
}
.quest-panel p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 17px;
}
.quest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.quest-tags span {
  padding: 8px 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(27,58,107,.14);
  border-radius: var(--radius);
  background: rgba(27,58,107,.06);
}
.quest-meter {
  height: 8px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(27,58,107,.12);
}
.quest-meter i {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2fa79b, var(--gold), #d85a3a);
  transition: width .45s var(--ease);
}
.quest-visual {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 0;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 110px;
  opacity: .28;
}
.quest-visual span {
  width: 13px;
  height: 46px;
  border-radius: 999px;
  background: var(--gold-soft);
  animation: questBars 1.3s ease-in-out infinite alternate;
}
.quest-visual span:nth-child(2) { height: 74px; animation-delay: .12s; background: #2fa79b; }
.quest-visual span:nth-child(3) { height: 96px; animation-delay: .24s; }
.quest-visual span:nth-child(4) { height: 58px; animation-delay: .36s; background: #d85a3a; }
.quest-visual span:nth-child(5) { height: 86px; animation-delay: .48s; }
.miria-archive-lab {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(27,58,107,.045) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--ivory);
}
.miria-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.miria-library-card {
  min-height: 270px;
  padding: 28px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255,255,255,.12), transparent 42%),
    var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.miria-library-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.miria-library-card span {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
}
.miria-library-card h3 { margin-top: 58px; color: #fff; }
.miria-library-card p { color: rgba(255,255,255,.74); font-size: 15px; }
.miria-timeline-grid .life-sticky .btn { margin-top: 22px; }
.miria-player-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(194,145,47,.13), transparent 26%),
    #fff;
}
.miria-video-wall h2,
.spotify-shell h2 { margin-top: 14px; font-size: clamp(38px, 5vw, 66px); }
.video-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.video-thumb {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18,40,72,.8), rgba(45,27,14,.36)),
    url("assets/barbara-memory-triptych.webp") center / cover;
}
.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.play-dot::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--navy);
}
.video-card span,
.catalog-head span,
.catalog-row em {
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mini-video-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.mini-video-row article {
  min-height: 120px;
  padding: 16px;
  color: #fff;
  background: var(--navy-deep);
  border-radius: var(--radius);
}
.mini-video-row span {
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 42px;
  background: var(--gold);
}
.mini-video-row p { margin: 0; color: rgba(255,255,255,.86); font-weight: 800; }
.spotify-shell {
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background:
    linear-gradient(160deg, rgba(35,174,96,.28), transparent 36%),
    var(--navy-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.spotify-shell h2 { color: #fff; }
.spotify-shell p { color: rgba(255,255,255,.75); }
.spotify-card {
  display: grid;
  gap: 20px;
  margin: 26px 0 22px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
}
.spotify-orb {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #23ae60, var(--gold));
  box-shadow: 0 0 0 12px rgba(255,255,255,.06);
}
.spotify-card span { color: var(--gold-soft); font-size: 12px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.spotify-card h3 { color: #fff; }
.spotify-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  min-height: 44px;
}
.spotify-bars i {
  width: 8px;
  height: 20px;
  border-radius: 8px;
  background: var(--gold-soft);
  animation: spotifyBars 1.4s ease-in-out infinite alternate;
}
.spotify-bars i:nth-child(2) { height: 34px; animation-delay: .12s; }
.spotify-bars i:nth-child(3) { height: 18px; animation-delay: .24s; }
.spotify-bars i:nth-child(4) { height: 40px; animation-delay: .36s; }
.spotify-bars i:nth-child(5) { height: 26px; animation-delay: .48s; }
.miria-work-section {
  background:
    linear-gradient(120deg, rgba(18,40,72,.96), rgba(18,40,72,.88)),
    url("assets/art-hero-memoria.webp") center / cover;
  color: #fff;
}
.miria-work-section h2,
.miria-work-section h3 { color: #fff; }
.miria-work-section p { color: rgba(255,255,255,.76); }
.miria-work-section .eyebrow { color: var(--gold-soft); }
.miria-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.miria-work-card {
  min-height: 280px;
  padding: 30px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.miria-work-card span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.miria-work-card h3 { margin-top: 18px; }
.miria-catalog {
  margin-top: 34px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
}
.catalog-head,
.catalog-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr .7fr;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.catalog-head { background: rgba(255,255,255,.07); }
.catalog-head strong,
.catalog-row strong { color: var(--gold-soft); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.catalog-row span { font-family: var(--serif); font-size: 22px; font-weight: 700; }
.catalog-row:last-child { border-bottom: 0; }
.miria-cta {
  padding: clamp(62px, 8vw, 104px) 0;
  color: #fff;
  background: linear-gradient(135deg, #10233f, #1B3A6B);
}
.miria-cta h2 { margin-top: 14px; color: #fff; }
.miria-cta p { color: rgba(255,255,255,.78); }
.miria-cta .eyebrow { color: var(--gold-soft); }
.miria-cta-grid {
  grid-template-columns: 1fr auto;
  align-items: center;
}
.miria-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 56px; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 2px; background: var(--gold); opacity: .45; }
.timeline div { position: relative; padding: 58px 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.timeline span { position: absolute; top: 12px; left: 18px; color: var(--navy); font-family: var(--serif); font-size: 25px; font-weight: 700; }
.timeline p { margin: 0; color: var(--ink-3); font-size: 14px; }
.timeline.compact { grid-template-columns: repeat(4, 1fr); margin-top: 30px; }

.values-grid, .mission-grid, .news-grid, .council-grid { display: grid; gap: 18px; }
.values-grid { grid-template-columns: repeat(3, 1fr); }
.mission-grid { grid-template-columns: repeat(4, 1fr); }
.news-grid { grid-template-columns: repeat(3, 1fr); }
.news-grid.large { grid-template-columns: repeat(3, 1fr); }
.council-grid { grid-template-columns: repeat(4, 1fr); }
.value-card, .mission-card, .news-card, .council-card, .info-panel, .form-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.value-card span, .mission-card span, .news-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.value-card p, .mission-card p, .news-card p, .council-card p { margin: 12px 0 0; color: var(--ink-3); font-size: 15px; }
.mission-card.accent { border-left: 6px solid #C0392B; }
.news-card { min-height: 230px; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.news-card { display: block; color: inherit; }
.news-card:hover { color: inherit; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.council-feature {
  position: relative;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: var(--shadow-lg);
}
.council-feature img { width: 100%; height: clamp(300px, 42vw, 520px); object-fit: cover; object-position: center 28%; }
.council-feature::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(0deg, rgba(18,40,72,.52), transparent); pointer-events: none; }
.council-card { text-align: center; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.council-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.avatar { width: 82px; height: 82px; margin: 0 auto 18px; display: grid; place-items: center; color: var(--gold); background: linear-gradient(180deg, var(--navy), var(--navy-deep)); border-radius: 50%; font-family: var(--serif); font-size: 25px; font-weight: 700; }
.council-headshot { width: 112px; height: 136px; margin: 0 auto 18px; object-fit: cover; object-position: center top; border: 1px solid var(--line); border-radius: 6px; background: var(--ivory); box-shadow: 0 10px 20px rgba(18,40,72,.10); }
.council-card h3 { font-size: 22px; }

.prayer-block {
  padding: 42px;
  background: var(--ivory);
  border-left: 7px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.prayer-block p { margin-top: 20px; color: var(--sepia); font-family: var(--serif); font-size: 28px; font-style: italic; line-height: 1.45; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid img { width: 100%; height: 380px; object-fit: contain; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 32px; align-items: start; }
.info-panel h3 { margin-top: 20px; font-size: 22px; }
.info-panel h3:first-child { margin-top: 0; }
.info-panel p { margin-bottom: 0; }
.form-card { display: grid; gap: 16px; }
.form-card label { display: grid; gap: 7px; color: var(--sepia); font-size: 14px; font-weight: 900; }
.form-card input, .form-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font: inherit;
}
.form-card textarea { min-height: 132px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus { outline: 2px solid rgba(201,168,76,.55); border-color: var(--gold); background: #fff; }
.form-status { min-height: 24px; margin: 0; color: var(--navy); font-weight: 900; }
.vocation-numbers { margin-top: 24px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.vocation-numbers p { margin: 0 0 10px; }

.discernment-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.discernment-steps div { position: relative; min-height: 180px; padding: 24px; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.discernment-steps span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 20px; color: var(--sepia); background: var(--gold); border-radius: 50%; font-weight: 900; }
.discernment-steps h3 { font-size: 23px; }
.discernment-steps p { margin-top: 8px; font-size: 15px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 20px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.faq-list summary { color: var(--sepia); font-weight: 900; cursor: pointer; }
.faq-list p { margin: 12px 0 0; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-row button { padding: 10px 14px; color: var(--navy); background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 900; }
.filter-row button.is-active { color: var(--sepia); background: var(--gold); border-color: var(--gold); }

.footer { padding: 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr; gap: 36px; padding-top: 48px; padding-bottom: 34px; border-top: 4px solid var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 14px; color: #fff; font-family: var(--serif); font-size: 24px; font-weight: 700; }
.footer-brand::before { content: ""; width: 44px; height: 54px; flex: 0 0 auto; background: #fff url("assets/brasao-congregacao-tight.webp") center / 82% auto no-repeat; border: 1px solid rgba(230,208,151,.48); border-radius: 7px; filter: drop-shadow(0 5px 10px rgba(0,0,0,.22)); }
.footer h3 { margin-bottom: 12px; color: #fff; font-size: 20px; }
.footer p { color: rgba(255,255,255,.72); }
.footer a { display: block; margin-top: 7px; color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 16px; padding-bottom: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.66); font-size: 13px; }
.footer-bottom a { display: inline; }
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 760px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: 14px; }

/* Home editorial direction inspired by premium nonprofit and keynote layouts */
body[data-page="inicio"] {
  background:
    linear-gradient(90deg, rgba(45,27,14,.035) 1px, transparent 1px) 0 0 / 82px 82px,
    #fffaf3;
}
body[data-page="inicio"] .nav {
  position: fixed;
  left: 0;
  right: 0;
  color: #fff;
  background: rgba(5,14,39,.72);
  border-bottom-color: rgba(255,255,255,.12);
}
body[data-page="inicio"] .nav.is-scrolled {
  background: rgba(5,14,39,.92);
  box-shadow: 0 16px 34px rgba(5,14,39,.22);
}
body[data-page="inicio"] .brand-name,
body[data-page="inicio"] .nav-links a { color: rgba(255,255,255,.86); }
body[data-page="inicio"] .brand-name span { color: var(--gold-soft); }
body[data-page="inicio"] .nav-links a:hover,
body[data-page="inicio"] .nav-links a.is-active {
  color: #fff;
  background: rgba(255,255,255,.10);
}
body[data-page="inicio"] .nav-toggle { border-color: rgba(255,255,255,.24); }
body[data-page="inicio"] .nav-toggle span { background: #fff; }
.home-premium-hero {
  min-height: 820px;
  padding: 150px 0 190px;
  isolation: isolate;
  background: #061331;
}
.home-premium-hero .hero-bg {
  background:
    radial-gradient(circle at 78% 24%, rgba(109,184,197,.22), transparent 26%),
    radial-gradient(circle at 22% 86%, rgba(201,168,76,.16), transparent 34%),
    linear-gradient(135deg, #061331, #071b48 54%, #08245c);
}
.home-premium-hero .hero-bg::after {
  opacity: .55;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 92px 92px;
}
.home-premium-hero .hero-photo {
  right: 2.5%;
  top: 118px;
  bottom: 110px;
  width: min(560px, 44vw);
  border-radius: 44px 44px 12px 12px;
  clip-path: none;
  box-shadow: 0 38px 90px rgba(0,0,0,.34);
}
.home-premium-hero .hero-photo::before {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -38px;
  z-index: 1;
  width: 178px;
  height: 178px;
  border-radius: 0 0 88px 0;
  border-right: 58px solid #6DB8C5;
  border-bottom: 58px solid #6DB8C5;
  opacity: .92;
}
.home-premium-hero .hero-photo::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,19,49,.12), rgba(6,19,49,.58)),
    linear-gradient(90deg, rgba(6,19,49,.48), transparent 40%);
}
.home-premium-hero .hero-photo img {
  filter: grayscale(.8) saturate(.66) contrast(1.12);
  object-position: center;
}
.home-premium-hero .hero-photo-label {
  right: 72px;
  bottom: 102px;
  color: rgba(255,255,255,.74);
  border-color: rgba(109,184,197,.36);
}
.home-premium-hero .hero-inner {
  max-width: 720px;
}
.home-premium-hero .hero-eyebrow {
  border-radius: 0;
  border-color: rgba(230,208,151,.32);
  background: rgba(255,255,255,.04);
}
.home-premium-hero h1 {
  max-width: 730px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: .98;
}
.home-premium-hero h1 em {
  display: inline-block;
  color: #8fd6e1;
  font-family: "Caveat", cursive;
  font-size: 1.12em;
  font-style: normal;
  font-weight: 700;
  transform: rotate(-2deg);
}
.home-premium-hero .hero-sub {
  max-width: 680px;
  color: rgba(255,255,255,.78);
}
.home-proof-strip {
  position: relative;
  z-index: 6;
  margin-top: -104px;
  padding-bottom: clamp(54px, 7vw, 90px);
}
.home-proof-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(45,27,14,.08);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(6,19,49,.18);
}
.home-proof-card div {
  min-height: 158px;
  padding: 30px 28px;
  border-right: 1px solid rgba(45,27,14,.10);
}
.home-proof-card div:last-child { border-right: 0; }
.proof-icon {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 38px;
  margin-bottom: 16px;
  color: #0b255d;
  border: 1px solid rgba(109,184,197,.46);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.home-proof-card strong {
  display: block;
  color: var(--sepia);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}
.home-proof-card p {
  margin: 8px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.45;
}
.home-pathways {
  margin-top: 0;
  padding: clamp(18px, 3vw, 34px) 0 clamp(62px, 8vw, 96px);
  background: #fffaf3;
}
.pathways-head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.pathways-head .eyebrow { justify-content: center; }
.pathways-head h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.8vw, 64px);
}
.home-pathways .audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-pathways .audience-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  border-radius: 20px 20px 36px 20px;
  border-color: rgba(11,37,93,.12);
  box-shadow: 0 22px 54px rgba(6,19,49,.14);
}
.home-pathways .audience-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 16px;
  height: 54%;
  border-radius: 15px;
  background: rgba(6,19,49,.58);
  border: 1px solid rgba(255,255,255,.13);
}
.home-pathways .audience-card::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 32px;
  width: 118px;
  height: 30px;
  border-radius: 2px;
  background: rgba(255,255,255,.78);
  transform: rotate(-8deg);
  opacity: .92;
}
.home-pathways .audience-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(6,19,49,.05), rgba(6,19,49,.96)),
    url("assets/art-vocacao-caminho.webp") center / cover;
}
.home-pathways .audience-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(45,27,14,.03), rgba(45,27,14,.91)),
    url("assets/barbara-cinematic-hero.webp") center / cover;
}
.home-pathways .audience-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(6,19,49,.06), rgba(6,19,49,.94)),
    url("assets/conselho-geral-web.jpg") center 32% / cover;
}
.home-pathways .audience-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(6,19,49,.04), rgba(6,19,49,.92)),
    url("assets/art-hero-memoria.webp") center / cover;
}
.home-pathways .audience-card > * {
  position: relative;
  z-index: 1;
}
.home-pathways .audience-card h2 {
  margin-top: auto;
  padding-top: 190px;
  font-size: 28px;
}
.home-pathways .audience-kicker {
  color: #8fd6e1;
}
.home-video-stage {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 10vw, 140px) 0;
  background: #fffaf3;
}
.video-stage-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.outline-word {
  position: absolute;
  z-index: 0;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(6,19,49,.16);
  font-family: var(--sans);
  font-size: clamp(78px, 14vw, 208px);
  font-weight: 900;
  line-height: .78;
  text-transform: lowercase;
  pointer-events: none;
}
.word-left { left: -2vw; top: 50px; }
.word-right {
  right: -1vw;
  bottom: 58px;
  writing-mode: vertical-rl;
}
.video-window {
  position: relative;
  z-index: 1;
  width: min(820px, 86vw);
  overflow: hidden;
  color: #fff;
  border-radius: 22px;
  background: #061331;
  box-shadow: 0 34px 90px rgba(6,19,49,.24);
}
.video-window img {
  width: 100%;
  height: clamp(360px, 48vw, 520px);
  object-fit: cover;
  filter: saturate(.84) contrast(1.02);
}
.video-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 24%, rgba(6,19,49,.82)),
    linear-gradient(90deg, rgba(6,19,49,.74), transparent 55%);
}
.video-overlay {
  position: absolute;
  inset: auto 40px 38px;
  z-index: 2;
  display: grid;
  gap: 14px;
  max-width: 520px;
}
.play-button {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  color: #fff;
  border-radius: 50%;
  background: #276DFF;
  box-shadow: 0 0 0 12px rgba(39,109,255,.18);
}
.play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}
.video-overlay h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 66px);
}
.video-overlay h2::first-line {
  font-family: "Caveat", cursive;
  color: #8fd6e1;
}
.video-overlay p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
}
.audio-platforms {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.audio-platforms span {
  min-width: 136px;
  padding: 14px 18px;
  text-align: center;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(6,19,49,.08);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(6,19,49,.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body[data-page="inicio"] .donate-section {
  padding-top: 0;
  background: #fffaf3;
}
body[data-page="inicio"] .donate-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(100deg, #9E1F2D, #C73A45);
  border: 0;
  border-radius: 0;
  box-shadow: 0 22px 58px rgba(158,31,45,.24);
}
body[data-page="inicio"] .donate-band::after {
  content: "JUNTE-SE";
  position: absolute;
  right: -18px;
  top: 50%;
  color: rgba(255,255,255,.18);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: .08em;
  transform: translateY(-50%) rotate(90deg);
}
body[data-page="inicio"] .donate-band h3,
body[data-page="inicio"] .donate-band p,
body[data-page="inicio"] .donate-band .eyebrow { color: #fff; }
body[data-page="inicio"] .donate-band p { max-width: 620px; color: rgba(255,255,255,.82); }
body[data-page="inicio"] .donate-band .btn {
  position: relative;
  z-index: 1;
  color: #9E1F2D;
  background: #fff;
  border-color: #fff;
}

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(201,168,76,.15); } 50% { box-shadow: 0 0 0 8px rgba(201,168,76,.02); } }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes swapIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroImageDrift { from { transform: scale(1.02) translateX(-1%); } to { transform: scale(1.08) translateX(1.5%); } }
@keyframes heroLightSweep { 0%, 100% { transform: translateX(0); opacity: .25; } 50% { transform: translateX(120%); opacity: .8; } }
@keyframes markerPulse { 0%, 100% { box-shadow: 0 0 0 6px rgba(228,200,111,.16), 0 0 0 0 rgba(228,200,111,.26); } 50% { box-shadow: 0 0 0 10px rgba(228,200,111,.08), 0 0 0 18px rgba(228,200,111,0); } }
@keyframes labelFloat { from { transform: translateY(0); } to { transform: translateY(-6px); } }
@keyframes barbaraCinematicDrift { from { transform: scale(1.02) translateX(-1.5%); } to { transform: scale(1.09) translateX(1.5%); } }
@keyframes filmBreath { from { opacity: .10; transform: translateX(-3%); } to { opacity: .24; transform: translateX(3%); } }
@keyframes ribbonRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slowCinemaZoom { from { transform: scale(1.02) translateX(-1%); } to { transform: scale(1.10) translateX(1.5%); } }
@keyframes archiveFloat { from { transform: scale(1.02) translateX(0); } to { transform: scale(1.08) translateX(-1.4%); } }
@keyframes noteTravel {
  from { transform: translateX(0) translateY(0); }
  50% { transform: translateX(55vw) translateY(-8px); }
  to { transform: translateX(112vw) translateY(4px); }
}
@keyframes questScan {
  from { background-position: -260px 0; }
  to { background-position: 100vw 0; }
}
@keyframes questGradient {
  from { background-position: 0 0; }
  to { background-position: 220% 0; }
}
@keyframes questBars {
  from { transform: scaleY(.58); opacity: .54; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes spotifyBars {
  from { transform: scaleY(.48); opacity: .54; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes frameFade {
  0% { opacity: 1; transform: scale(1.08) translateX(-1.2%); }
  31% { opacity: 1; }
  42% { opacity: 0; transform: scale(1.02) translateX(1.2%); }
  100% { opacity: 0; transform: scale(1.02) translateX(1.2%); }
}
@keyframes reelSweep {
  0%, 34% { transform: translateX(0) rotate(10deg); opacity: 0; }
  42% { opacity: .82; }
  68% { opacity: .24; }
  100% { transform: translateX(780%) rotate(10deg); opacity: 0; }
}

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: var(--gutter); right: var(--gutter); display: none; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
  .nav-links.is-open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .discern-link { margin-left: 0; text-align: center; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 100px 0 120px; }
  .hero-photo { width: 84%; right: -28%; opacity: .45; }
  .welcome, .audience-grid, .real-map-grid, .identity-map-grid, .legacy-archive-grid, .barbara-feature, .barbara-life-grid, .two-col, .feature-split, .vocation-listening-grid, .miria-intro-grid, .miria-quest-grid, .miria-timeline-grid, .miria-player-grid, .miria-cta-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .audience-gateway { margin-top: 0; padding-top: 16px; }
  .audience-card { min-height: 240px; }
  .legacy-portrait, .legacy-portrait:nth-child(2), .legacy-portrait:nth-child(4) { margin-top: 0; }
  .life-sticky { position: static; }
  .barbara-editorial-grid { grid-template-columns: 1fr; }
  .barbara-motion-grid { grid-template-columns: 1fr; }
  .barbara-cinema-hero { min-height: 720px; }
  .barbara-cinema-hero::after { background: linear-gradient(90deg, rgba(10,18,32,.96), rgba(18,40,72,.82) 62%, rgba(18,40,72,.42)); }
  .cinema-frame, .cinema-frame img, .archive-showcase, .archive-showcase img { min-height: 420px; }
  .motion-reel { min-height: 440px; clip-path: polygon(0 0, 100% 0, 100% 94%, 8% 100%, 0 90%); }
  .barbara-beatification .timeline.compact { grid-template-columns: 1fr; }
  .memorial-cta-grid { grid-template-columns: 1fr; }
  .pillars, .impact-grid, .values-grid, .mission-grid, .news-grid, .news-grid.large, .council-grid, .discernment-steps, .gallery-grid, .listening-cards, .miria-library-grid, .miria-work-grid { grid-template-columns: 1fr; }
  .quest-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .works-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .work-card.feature { grid-row: auto; }
  .shead, .donate-band, .footer-inner { display: grid; }
  .page-hero { min-height: 480px; }
  .page-hero h1 { font-size: 46px; }
  .timeline, .timeline.compact { grid-template-columns: 1fr; }
  .timeline::before { left: 26px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .footer-bottom { display: grid; }
}

@media (max-width: 560px) {
  .brand-name { display: none; }
  .nav-links.is-open { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  .hero h1 { font-size: 48px; }
  .page-hero h1 { font-size: 40px; }
  .barbara-cinema-hero h1 { font-size: 46px; }
  .barbara-hero-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .barbara-hero-meta span { align-items: center; justify-content: center; }
  .barbara-hero-actions { display: grid; }
  .cinema-frame { clip-path: none; }
  .motion-reel { min-height: 360px; clip-path: none; }
  .motion-reel::before { inset: 12px; }
  .reel-code { left: 18px; right: 18px; bottom: 18px; justify-content: space-between; }
  .reel-code span { min-width: 0; flex: 1; }
  .life-sticky { padding: 22px; }
  .life-timeline article { padding-left: 44px; }
  .life-timeline h3 { font-size: 23px; }
  .barbara-prayer-actions { display: grid; }
  .video-card { grid-template-columns: 1fr; }
  .quest-options { grid-template-columns: 1fr; }
  .quest-options button { min-height: 78px; }
  .quest-options button span { margin-bottom: 12px; }
  .quest-visual { display: none; }
  .mini-video-row { grid-template-columns: 1fr; }
  .catalog-head { display: none; }
  .catalog-row { grid-template-columns: 1fr; gap: 6px; }
  .miria-cta-actions { justify-content: stretch; }
  .miria-cta-actions .btn { width: 100%; }
  .archive-note p { font-size: 23px; }
  .welcome-lead { font-size: 26px; }
  .impact-card .num { font-size: 48px; }
  .hero-meta { gap: 22px; }
  .hero-ctas { display: grid; }
  .map-card, .world-map { min-height: 420px; }
  .country-tabs { grid-template-columns: 1fr; }
  .barbara-feature-img { min-height: 340px; }
  .donate-band { padding: 28px; }
  .feature-image, .feature-image img { min-height: 320px; }
  .gallery-grid img { height: 300px; }
  .cookie-banner { display: none !important; }
}

@media (max-width: 1120px) {
  body[data-page="inicio"] .nav-links {
    background: #fff;
    border-color: var(--line);
  }
  body[data-page="inicio"] .nav-links a {
    color: var(--ink-2);
  }
  body[data-page="inicio"] .nav-links a:hover,
  body[data-page="inicio"] .nav-links a.is-active {
    color: var(--navy);
    background: rgba(27,58,107,.06);
  }
  .home-pathways .audience-grid,
  .home-proof-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-proof-card div:nth-child(2) {
    border-right: 0;
  }
  .home-proof-card div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(45,27,14,.10);
  }
}

@media (max-width: 900px) {
  .home-premium-hero {
    min-height: auto;
    padding: 132px 0 120px;
  }
  .home-premium-hero .hero-photo {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 430px;
    margin-top: 42px;
    opacity: 1;
  }
  .home-premium-hero .hero-photo-label {
    right: var(--gutter);
    bottom: 42px;
  }
  .home-proof-strip {
    margin-top: -58px;
  }
  .home-pathways .audience-grid {
    grid-template-columns: 1fr;
  }
  .home-pathways .audience-card h2 {
    padding-top: 170px;
  }
  .video-stage-inner {
    min-height: 540px;
  }
  .word-right {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-premium-hero h1 {
    font-size: 50px;
  }
  .home-premium-hero .hero-photo {
    height: 320px;
    border-radius: 28px 28px 8px 8px;
  }
  .home-proof-card {
    grid-template-columns: 1fr;
  }
  .home-proof-card div,
  .home-proof-card div:nth-child(2),
  .home-proof-card div:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(45,27,14,.10);
  }
  .home-proof-card div:last-child {
    border-bottom: 0;
  }
  .video-overlay {
    inset: auto 22px 22px;
  }
  .play-button {
    width: 54px;
    height: 54px;
  }
  .audio-platforms span {
    min-width: 0;
    width: 100%;
  }
}

/* Home alignment repair */
body[data-page="inicio"] .nav {
  background: rgba(5,14,39,.86);
}
.home-premium-hero {
  min-height: 760px;
  padding: 142px 0 160px;
}
.home-premium-hero .container {
  position: relative;
  z-index: 3;
}
.home-premium-hero .hero-inner {
  max-width: 540px;
}
.home-premium-hero .hero-photo {
  right: max(38px, calc((100vw - var(--max)) / 2 + var(--gutter)));
  top: 132px;
  bottom: 112px;
  width: min(470px, 38vw);
  border-radius: 28px;
}
.home-premium-hero .hero-photo::before {
  right: -32px;
  bottom: -28px;
  width: 128px;
  height: 128px;
  border-right-width: 42px;
  border-bottom-width: 42px;
  border-radius: 0 0 58px 0;
}
.home-premium-hero .hero-photo-label {
  right: max(72px, calc((100vw - var(--max)) / 2 + var(--gutter) + 20px));
  bottom: 104px;
}
.home-premium-hero h1 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: 1.02;
}
.home-premium-hero h1 span {
  display: block;
}
.home-premium-hero h1 em {
  display: block;
  margin-top: 8px;
  color: #8fd6e1;
  font-family: var(--serif);
  font-size: .86em;
  font-style: italic;
  font-weight: 700;
  transform: none;
}
.home-premium-hero .hero-sub {
  max-width: 500px;
  margin-bottom: 34px;
  font-size: 18px;
}
.home-proof-strip {
  margin-top: -76px;
}
.home-proof-card {
  border-radius: 10px;
  box-shadow: 0 22px 56px rgba(6,19,49,.15);
}
.home-proof-card div {
  min-height: 132px;
  padding: 24px 26px;
}
.home-pathways {
  padding-top: clamp(34px, 5vw, 58px);
}
.pathways-head {
  margin-bottom: 30px;
}
.pathways-head h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 4.2vw, 56px);
}
.home-pathways .audience-grid {
  gap: 16px;
}
.home-pathways .audience-card {
  min-height: 340px;
  padding: 22px;
  border-radius: 12px;
}
.home-pathways .audience-card::before {
  height: 48%;
}
.home-pathways .audience-card::after {
  width: 96px;
  height: 24px;
}
.home-pathways .audience-card h2 {
  padding-top: 158px;
  font-size: 25px;
}
.home-pathways .audience-card p {
  font-size: 14px;
}
.home-video-stage {
  padding: clamp(58px, 8vw, 108px) 0;
}
.video-stage-inner {
  min-height: 520px;
}
.video-window {
  width: min(760px, 86vw);
  border-radius: 14px;
}
.video-window img {
  height: clamp(320px, 42vw, 470px);
}
.outline-word {
  font-size: clamp(72px, 12vw, 168px);
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-premium-hero .hero-inner {
    max-width: 470px;
  }
  .home-premium-hero h1 {
    max-width: 470px;
    font-size: clamp(48px, 5.2vw, 64px);
  }
  .home-premium-hero .hero-sub {
    max-width: 450px;
  }
  .home-premium-hero .hero-photo {
    width: 43vw;
    right: 28px;
  }
}

@media (max-width: 900px) {
  .home-premium-hero {
    padding: 124px 0 92px;
  }
  .home-premium-hero .hero-inner {
    max-width: 680px;
  }
  .home-premium-hero h1,
  .home-premium-hero .hero-sub {
    max-width: 680px;
  }
  .home-premium-hero .hero-photo {
    width: 100%;
    height: 360px;
    margin-top: 34px;
    border-radius: 18px;
  }
  .home-premium-hero .hero-photo::before {
    display: none;
  }
  .home-premium-hero .hero-photo-label {
    right: calc(var(--gutter) + 18px);
    bottom: 84px;
  }
  .home-proof-strip {
    margin-top: -36px;
  }
}

@media (max-width: 560px) {
  .home-premium-hero h1 {
    font-size: 44px;
  }
  .home-premium-hero h1 em {
    font-size: .92em;
  }
  .home-premium-hero .hero-photo {
    height: 280px;
  }
  .home-pathways .audience-card {
    min-height: 310px;
  }
  .home-pathways .audience-card h2 {
    padding-top: 140px;
  }
}

/* Home rollback: restore the stable pre-reference layout */
body[data-page="inicio"] {
  background: #fff;
}
body[data-page="inicio"] .nav {
  position: sticky;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--line);
}
body[data-page="inicio"] .nav.is-scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 28px rgba(18,40,72,.08);
}
body[data-page="inicio"] .brand-name {
  color: var(--navy);
}
body[data-page="inicio"] .brand-name span {
  color: var(--gold-deep);
}
body[data-page="inicio"] .nav-links a {
  color: var(--ink-2);
}
body[data-page="inicio"] .nav-links a:hover,
body[data-page="inicio"] .nav-links a.is-active {
  color: var(--navy);
  background: rgba(27,58,107,.06);
}
body[data-page="inicio"] .nav-toggle {
  border-color: var(--line-strong);
}
body[data-page="inicio"] .nav-toggle span {
  background: var(--navy);
}
body[data-page="inicio"] .donate-section {
  padding-top: clamp(64px, 9vw, 120px);
  background: #fff;
}
body[data-page="inicio"] .donate-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
body[data-page="inicio"] .donate-band::after {
  content: none;
}
body[data-page="inicio"] .donate-band h3 {
  color: var(--sepia);
}
body[data-page="inicio"] .donate-band p {
  color: var(--ink-2);
}
body[data-page="inicio"] .donate-band .eyebrow {
  color: var(--gold-deep);
}
body[data-page="inicio"] .donate-band .btn {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 900px) {
  body[data-page="inicio"] .donate-band {
    display: grid;
  }
}

@media (max-width: 560px) {
  body[data-page="inicio"] .donate-band {
    padding: 28px;
  }
}
