
:root {
  /* Brand */
  --green-900: #0e2516;
  --green-800: #143020;
  --green-700: #1f3d2a;      /* primary */
  --green-600: #294f37;
  --green-500: #355f44;
  --green-50:  #ecf1ed;

  --gold-700: #8a6b2a;
  --gold-600: #a8853d;
  --gold-500: #b8924a;       /* accent */
  --gold-400: #c9a55e;
  --gold-300: #d8bd86;
  --gold-100: #f1e6cd;

  --cream-50: #faf6ec;
  --cream-100: #f5efe1;
  --cream-200: #ece2c8;

  --ink-900: #0f1a13;
  --ink-700: #2a3a30;
  --ink-500: #5c6a60;
  --ink-300: #97a098;
  --line:    #e5dfd1;
  --line-soft: rgba(31,61,42,0.10);
  --white: #ffffff;
  --bg: #fbf8f1;

  /* Type */
  --font-serif: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 4px 14px -8px rgba(15, 26, 19, 0.18);
  --shadow:    0 18px 40px -28px rgba(15, 26, 19, 0.35);
  --shadow-lg: 0 32px 70px -32px rgba(15, 26, 19, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--green-800);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 1.8vw, 1.75rem); }
p  { margin: 0; text-wrap: pretty; }

.kicker {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px; background: var(--gold-500);
}

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

section { padding: clamp(72px, 9vw, 128px) 0; position: relative; }

/* =====================  Buttons  ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 18px 40px -22px rgba(184,146,74,0.7), inset 0 0 0 1px rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--gold-400); box-shadow: 0 22px 46px -22px rgba(184,146,74,0.85); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.36);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--green-700);
  color: var(--cream-50);
  box-shadow: 0 16px 36px -22px rgba(31,61,42,0.7);
}
.btn-dark:hover { background: var(--green-800); }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  box-shadow: inset 0 0 0 1px var(--green-700);
}
.btn-outline:hover { background: var(--green-700); color: var(--cream-50); }

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 18px 40px -18px rgba(37,211,102,0.6);
}
.btn-whatsapp:hover { background: #1fbd5a; }

/* =====================  Header  ===================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  background: linear-gradient(180deg, rgba(14,37,22,0.96), rgba(14,37,22,0.86));
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 240ms var(--ease), box-shadow 240ms var(--ease);
}
.header.is-scrolled {
  background: rgba(10,28,17,0.94);
  box-shadow: 0 20px 50px -34px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 120px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 96px; width: auto; transition: height 220ms var(--ease); }
.header.is-scrolled .brand img { height: 72px; }
.header.is-scrolled .header-inner { height: 96px; }
.brand-wordmark {
  font-family: var(--font-serif);
  color: var(--cream-50);
  font-size: 18px; line-height: 1; letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
}

.nav {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  color: rgba(245,239,225,0.86);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: color 200ms, background 200ms;
}
.nav-link:hover, .nav-item.open .nav-link { color: var(--gold-400); }
.nav-link .chev { width: 12px; height: 12px; transition: transform 200ms var(--ease); }
.nav-item.open .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 240px;
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 200ms var(--ease), transform 220ms var(--ease), visibility 200ms;
  border: 1px solid var(--line);
}
.dropdown.wide { min-width: 540px; columns: 2; column-gap: 10px; }
.dropdown.wide a { break-inside: avoid; }
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
  transition: background 160ms, color 160ms;
}
.dropdown a:hover { background: rgba(31,61,42,0.06); color: var(--green-700); }

.header-cta { margin-left: 14px; }
.menu-toggle { display: none; margin-left: auto; color: var(--cream-50); padding: 10px; }
.menu-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 120px 0 0 0;
  background: var(--green-800);
  z-index: 70;
  padding: 28px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform 280ms var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 4px;
}
.mobile-drawer summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--cream-50); font-size: 16px; font-weight: 500;
  cursor: pointer;
}
.mobile-drawer summary::-webkit-details-marker { display: none; }
.mobile-drawer details[open] summary { color: var(--gold-400); }
.mobile-drawer details a {
  display: block; padding: 10px 12px;
  color: rgba(245,239,225,0.78); font-size: 14px;
}
.mobile-drawer > a {
  display: block; padding: 16px 4px; color: var(--cream-50);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px; font-weight: 500;
}
.mobile-drawer .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* =====================  Hero  ===================== */
.hero {
  position: relative; min-height: 100vh; padding: 0;
  display: grid; align-items: end;
  color: var(--cream-50);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(120deg, rgba(14,37,22,0.92) 0%, rgba(14,37,22,0.55) 55%, rgba(14,37,22,0.85) 100%),
    url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1900&q=80") center/cover no-repeat;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 100%, rgba(184,146,74,0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; padding: 180px 0 110px; max-width: 880px; margin: 0 auto; text-align: center; }
.hero-inner .kicker { display: inline-block; }
.hero-inner .hero-actions { justify-content: center; }
.hero-inner .lead { margin-left: auto; margin-right: auto; max-width: 640px; }
.hero h1 {
  color: var(--cream-50);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  line-height: 1.05;
  margin: 22px 0 20px;
}
.hero h1 em { font-style: italic; color: var(--gold-400); font-weight: 400; }
.hero .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: rgba(245,239,225,0.86);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 36px;
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,225,0.6);
  padding-top: 18px;
  border-top: 1px solid rgba(245,239,225,0.12);
  flex-wrap: wrap;
}
.hero-meta .dot { display: inline-block; width: 6px; height: 6px; background: var(--gold-500); border-radius: 50%; vertical-align: middle; margin: 0 10px; }

/* =====================  Banners strip  ===================== */
.banners {
  background: var(--cream-100);
  padding: 0; margin-top: -1px;
}
.banners-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}
.banner-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 180px;
  color: var(--cream-50);
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--green-700);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.banner-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.banner-card.gold { background: var(--gold-500); color: var(--green-900); }
.banner-card.gold .banner-tag { background: rgba(15,26,19,0.12); color: var(--green-900); }
.banner-card.cream { background: var(--cream-50); color: var(--green-800); border: 1px solid var(--line); }
.banner-card.cream .banner-tag { background: rgba(31,61,42,0.08); color: var(--green-800); }
.banner-card.dark { background: var(--green-800); }
.banner-tag {
  align-self: flex-start;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255,255,255,0.14); color: var(--cream-50);
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}
.banner-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 500;
  color: inherit; line-height: 1.15;
}
.banner-card .arrow {
  align-self: flex-end;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.14);
  transition: transform 200ms var(--ease);
}
.banner-card.gold .arrow, .banner-card.cream .arrow { background: rgba(31,61,42,0.10); }
.banner-card:hover .arrow { transform: translate(3px, -3px); }

/* =====================  Sobre  ===================== */
.sobre { background: var(--bg); }
.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sobre-visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
}
.sobre-visual img { width: 100%; height: 100%; object-fit: cover; }
.sobre-visual .badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--cream-50);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
  max-width: 280px;
}
.sobre-visual .badge img { width: 44px; height: 44px; object-fit: contain; }
.sobre-visual .badge div { font-size: 12px; color: var(--ink-500); line-height: 1.3; }
.sobre-visual .badge strong { display: block; color: var(--green-800); font-size: 14px; font-weight: 600; }
.sobre h2 { margin: 18px 0 22px; }
.sobre p { font-size: 1.05rem; color: var(--ink-500); margin-bottom: 16px; line-height: 1.65; }
.sobre p strong { color: var(--green-700); font-weight: 600; }

.differentials {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.diff-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-50);
  transition: border-color 200ms, transform 200ms var(--ease);
}
.diff-pill:hover { border-color: var(--gold-400); transform: translateX(2px); }
.diff-pill .icon {
  width: 36px; height: 36px;
  background: var(--green-700); color: var(--gold-400);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.diff-pill .icon svg { width: 18px; height: 18px; }
.diff-pill span { font-size: 14px; font-weight: 500; color: var(--green-800); }

/* =====================  Períodos  ===================== */
.periodos {
  background: var(--green-800);
  color: var(--cream-50);
  position: relative; overflow: hidden;
}
.periodos::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 60% at 90% 10%, rgba(184,146,74,0.18), transparent 60%),
    radial-gradient(45% 50% at 5% 95%, rgba(184,146,74,0.12), transparent 60%);
  pointer-events: none;
}
.periodos .container { position: relative; }
.periodos-header { max-width: 720px; margin-bottom: 60px; }
.periodos h2 { color: var(--cream-50); margin: 18px 0 16px; font-weight: 400; }
.periodos h2 em { font-style: italic; color: var(--gold-400); }
.periodos-lead { color: rgba(245,239,225,0.75); font-size: 1.05rem; max-width: 600px; }

.periodos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.periodo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), transform 280ms var(--ease);
  position: relative;
}
.periodo-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(184,146,74,0.4); transform: translateY(-3px); }
.periodo-card .time {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 500;
  color: var(--gold-400); line-height: 1; margin-bottom: 12px;
}
.periodo-card .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,239,225,0.65); margin-bottom: 18px;
}
.periodo-card h3 { color: var(--cream-50); font-size: 1.5rem; margin-bottom: 14px; font-weight: 500; }
.periodo-card p { font-size: 14.5px; color: rgba(245,239,225,0.75); line-height: 1.6; }
.periodo-card.featured { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.periodo-card.featured .time, .periodo-card.featured h3 { color: var(--green-900); }
.periodo-card.featured .label { color: rgba(15,26,19,0.65); }
.periodo-card.featured p { color: rgba(15,26,19,0.8); }
.featured-tag {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--green-900); color: var(--gold-400);
  padding: 5px 10px; border-radius: 999px; font-weight: 600;
}

/* =====================  Segmentos  ===================== */
.segmentos { background: var(--bg); }
.section-head {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 { margin-top: 18px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; max-width: 480px; }
.section-head .head-actions { justify-self: end; }

.segmentos-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px;
}
.seg-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-800);
  color: var(--cream-50);
  min-height: 380px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
  cursor: pointer;
  transition: transform 320ms var(--ease);
}
.seg-card::before {
  content: ""; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 600ms var(--ease);
  z-index: 0;
}
.seg-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,37,22,0.1) 0%, rgba(14,37,22,0.85) 100%);
  z-index: 1;
}
.seg-card:hover::before { transform: scale(1.06); }
.seg-card > * { position: relative; z-index: 2; }
.seg-card .age { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 10px; font-weight: 600; }
.seg-card h3 { font-family: var(--font-serif); color: var(--cream-50); font-size: 1.9rem; margin-bottom: 12px; font-weight: 500; }
.seg-card p { font-size: 14px; color: rgba(245,239,225,0.82); line-height: 1.55; margin-bottom: 18px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 360ms var(--ease), opacity 280ms var(--ease), margin 360ms var(--ease); }
.seg-card .seg-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gold-400); }
.seg-card:hover p { max-height: 200px; opacity: 1; }

.seg-card.petit { grid-column: span 4; }
.seg-card.petit::before { background-image: url("https://images.unsplash.com/photo-1588075592446-265fd1e6e76f?auto=format&fit=crop&w=1100&q=80"); }
.seg-card.fund1 { grid-column: span 4; }
.seg-card.fund1::before { background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1100&q=80"); }
.seg-card.fund2 { grid-column: span 4; }
.seg-card.fund2::before { background-image: url("https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?auto=format&fit=crop&w=1100&q=80"); }
.seg-card.em { grid-column: span 12; min-height: 320px; }
.seg-card.em::before { background-image: url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=1900&q=80"); }
.seg-card.em::after {
  background: linear-gradient(110deg, rgba(14,37,22,0.92) 0%, rgba(14,37,22,0.6) 50%, rgba(14,37,22,0.2) 100%);
}
.seg-card.em .em-inner { max-width: 520px; }
.seg-card.em h3 { font-size: 2.4rem; }
.seg-card.em .soon-tag {
  display: inline-block;
  background: rgba(184,146,74,0.18);
  color: var(--gold-400);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
  margin-bottom: 14px;
}

/* =====================  Atividades  ===================== */
.atividades {
  background: var(--cream-100);
  position: relative;
}
.atividades .head-bg {
  position: absolute; top: -1px; left: 0; right: 0; height: 200px;
  background: linear-gradient(180deg, var(--bg), var(--cream-100));
}
.atividades .container { position: relative; }
.atividades-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 50px;
}
.atv-card {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
  min-height: 160px;
}
.atv-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-sm);
}
.atv-icon {
  width: 48px; height: 48px;
  background: var(--green-700);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--gold-400);
}
.atv-icon svg { width: 24px; height: 24px; }
.atv-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 500;
  color: var(--green-800); margin: 0;
}
.atv-card .num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-300);
  font-weight: 500;
  margin-left: auto;
}

.atv-foot {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--green-700);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  display: flex; gap: 24px; justify-content: space-between; align-items: center;
}
.atv-foot p { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; max-width: 720px; line-height: 1.4; }

/* =====================  Capelania  ===================== */
.capelania {
  background: var(--green-700);
  color: var(--cream-50);
  position: relative;
  overflow: hidden;
}
.capelania::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 60% at 80% 30%, rgba(184,146,74,0.12), transparent 60%),
    url("https://images.unsplash.com/photo-1493804714600-6edb1cd93080?auto=format&fit=crop&w=1900&q=80") center/cover;
  opacity: 0.18;
  mix-blend-mode: screen;
}
.capelania .container { position: relative; }
.cap-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center;
}
.cap-emblem {
  position: relative; aspect-ratio: 1/1; max-width: 460px;
  display: grid; place-items: center;
}
.cap-emblem::before {
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  background: linear-gradient(180deg, #f8f2e1 0%, #ede4cb 100%);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.45),
    0 0 0 1px rgba(184,146,74,0.55),
    inset 0 0 0 6px rgba(255,255,255,0.6),
    inset 0 0 0 7px rgba(184,146,74,0.35);
}
.cap-emblem::after {
  content: ""; position: absolute; inset: 1%;
  border: 1px dashed rgba(184,146,74,0.30);
  border-radius: 50%;
}
.cap-emblem img {
  position: relative; z-index: 2;
  width: 70%; height: auto;
}
.capelania h2 { color: var(--cream-50); font-weight: 400; margin: 18px 0 24px; }
.capelania h2 em { font-style: italic; color: var(--gold-400); }
.capelania p { font-size: 1.02rem; color: rgba(245,239,225,0.78); margin-bottom: 18px; line-height: 1.7; }
.cap-quote {
  margin-top: 30px;
  padding: 24px 28px;
  border-left: 2px solid var(--gold-500);
  background: rgba(255,255,255,0.04);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-300);
  line-height: 1.5;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.cap-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 30px;
}
.cap-pillar {
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.cap-pillar strong {
  display: block; color: var(--gold-400); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 6px;
  font-weight: 600;
}
.cap-pillar span { font-size: 14px; color: rgba(245,239,225,0.75); }

/* =====================  Memórias  ===================== */
.memorias { background: var(--bg); padding-bottom: 60px; }
.mem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 12px;
  margin-top: 50px;
}
.mem-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-100);
}
.mem-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.mem-tile:hover img { transform: scale(1.06); }
.mem-tile.t1 { grid-column: span 4; grid-row: span 2; }
.mem-tile.t2 { grid-column: span 4; grid-row: span 1; }
.mem-tile.t3 { grid-column: span 4; grid-row: span 1; }
.mem-tile.t4 { grid-column: span 2; grid-row: span 1; }
.mem-tile.t5 { grid-column: span 6; grid-row: span 2; }
.mem-tile.t6 { grid-column: span 2; grid-row: span 1; }
.mem-tile.t7 { grid-column: span 2; grid-row: span 1; }
.mem-tile.t8 { grid-column: span 2; grid-row: span 1; }
.mem-tile .caption {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  color: white; font-size: 12px; font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  opacity: 0; transition: opacity 240ms var(--ease);
}
.mem-tile:hover .caption { opacity: 1; }

/* =====================  Aconteceu  ===================== */
.aconteceu { background: var(--cream-100); }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 50px;
}
.news-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-img { aspect-ratio: 16/10; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.news-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-600); font-weight: 600;
}
.news-meta .sep { color: var(--ink-300); }
.news-meta .date { color: var(--ink-300); }
.news-card h3 { font-size: 1.35rem; line-height: 1.2; font-weight: 500; }
.news-card .excerpt { font-size: 14px; color: var(--ink-500); line-height: 1.6; flex: 1; }
.news-card .read-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--green-700);
  margin-top: 4px;
}
.news-card .read-more svg { width: 14px; height: 14px; transition: transform 200ms var(--ease); }
.news-card:hover .read-more svg { transform: translateX(4px); }

/* =====================  Final CTA  ===================== */
.final-cta {
  background:
    linear-gradient(120deg, rgba(14,37,22,0.92) 0%, rgba(14,37,22,0.62) 50%, rgba(14,37,22,0.88) 100%),
    url("assets/cta-criancas.jpg") center 30%/cover no-repeat;
  color: var(--cream-50);
  padding: 120px 0;
  text-align: center;
}
.final-cta .container { max-width: 880px; }
.final-cta h2 {
  color: var(--cream-50); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 22px 0 24px;
}
.final-cta h2 em { font-style: italic; color: var(--gold-400); }
.final-cta p { color: rgba(245,239,225,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.final-cta .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =====================  Footer  ===================== */
.footer { background: var(--green-900); color: rgba(245,239,225,0.7); padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px; align-items: start;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 70px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(245,239,225,0.7); transition: color 180ms; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact div { font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.footer-contact strong { display: block; color: rgba(245,239,225,0.92); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.footer-instagram {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 16px;
}
.footer-instagram a {
  aspect-ratio: 1; overflow: hidden; border-radius: 8px; display: block;
  position: relative;
}
.footer-instagram a::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(14,37,22,0.4); opacity: 0; transition: opacity 200ms;
}
.footer-instagram a:hover::after { opacity: 1; }
.footer-instagram img { width: 100%; height: 100%; object-fit: cover; }
.footer-bottom {
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(245,239,225,0.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  color: rgba(245,239,225,0.7);
  transition: background 200ms, color 200ms;
}
.footer-social a:hover { background: var(--gold-500); color: var(--green-900); }
.footer-social svg { width: 16px; height: 16px; }

/* =====================  Floating WhatsApp  ===================== */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  display: flex; align-items: center; gap: 12px;
  background: #25D366; color: white;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 22px 40px -16px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.18);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
  animation: wa-pulse 2.4s var(--ease) infinite;
}
.whatsapp-fab:hover { transform: translateY(-2px) scale(1.02); }
.whatsapp-fab svg { width: 22px; height: 22px; }
.whatsapp-fab .wa-text { line-height: 1.15; }
.whatsapp-fab .wa-text small { display: block; font-size: 11px; font-weight: 500; opacity: 0.92; letter-spacing: 0.04em; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 22px 40px -16px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.5); }
  70%      { box-shadow: 0 22px 40px -16px rgba(37,211,102,0.6), 0 0 0 16px rgba(37,211,102,0); }
}

/* =====================  Responsive  ===================== */
@media (max-width: 1100px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .sobre-grid, .cap-grid, .section-head { grid-template-columns: 1fr; gap: 40px; }
  .section-head .head-actions { justify-self: start; }
  .banners-grid { grid-template-columns: repeat(2, 1fr); }
  .periodos-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .periodo-card { padding: 28px 22px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid .news-card:nth-child(3) { grid-column: span 2; flex-direction: row; }
  .news-grid .news-card:nth-child(3) .news-img { aspect-ratio: auto; width: 45%; }
  .news-grid .news-card:nth-child(3) .news-img img { height: 100%; }
  .news-grid .news-card:nth-child(3) .news-body { flex: 1; }
  .atividades-grid { grid-template-columns: repeat(3, 1fr); }
  .seg-card.petit, .seg-card.fund1, .seg-card.fund2 { grid-column: span 12; min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cap-emblem { max-width: 320px; margin: 0 auto; }
  .mem-grid { grid-auto-rows: 130px; }
}
@media (max-width: 720px) {
  .header-inner { height: 84px; }
  .header.is-scrolled .header-inner { height: 72px; }
  .mobile-drawer { inset: 84px 0 0 0; }
  .brand img { height: 64px; }
  .header.is-scrolled .brand img { height: 54px; }
  .hero-meta { font-size: 10.5px; letter-spacing: 0.15em; gap: 12px; }
  .hero-meta span:last-child { display: none; }
  .hero-inner { padding: 120px 0 100px; }
  .hero-meta { display: none; }
  .banners-grid { grid-template-columns: 1fr; padding: 20px 0; }
  .atividades-grid { grid-template-columns: repeat(2, 1fr); }
  .periodos-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid .news-card:nth-child(3) { grid-column: auto; flex-direction: column; }
  .news-grid .news-card:nth-child(3) .news-img { width: 100%; aspect-ratio: 16/10; }
  .differentials { grid-template-columns: 1fr; }
  .cap-pillars { grid-template-columns: 1fr; }
  .mem-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .mem-tile.t1 { grid-column: span 6; grid-row: span 2; }
  .mem-tile.t2, .mem-tile.t3 { grid-column: span 3; }
  .mem-tile.t4, .mem-tile.t6, .mem-tile.t7, .mem-tile.t8 { grid-column: span 3; }
  .mem-tile.t5 { grid-column: span 6; grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .atv-foot { flex-direction: column; align-items: flex-start; }
  .whatsapp-fab .wa-text { display: none; }
  .whatsapp-fab { padding: 14px; }
}

/* =====================  Tweaks Panel hook  ===================== */
.tweaks-fab { position: fixed; bottom: 24px; left: 24px; z-index: 70; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
