

:root {
  --bg:            #04080f;   
  --surface:       #0a1422;   
  --surface-2:     #0e1b2e;
  --hero-navy:     #0a1929;   
  --hero-blue:     #061328;
  --hero-black:    #02060d;
  --line:          rgba(255, 255, 255, 0.10);
  --line-soft:     rgba(255, 255, 255, 0.06);
  --accent:        #00c3ff;   
  --accent-deep:   #0f33ff;
  --text:          #ffffff;
  --text-soft:     rgba(255, 255, 255, 0.72);
  --text-mute:     rgba(255, 255, 255, 0.45);
  --radius-hero:   48px;
  --radius-card:   20px;
  --maxw:          1280px;
  --nav-h:         72px;
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.u-wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.nav {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding-inline: 20px;
  pointer-events: none;       
}
.nav__inner {
  pointer-events: auto;
  width: 100%;
  max-width: 1040px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  background: rgba(8, 16, 28, 0.55);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled .nav__inner {
  background: rgba(6, 12, 22, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.nav__brand { display: flex; align-items: center; gap: 12px; padding-left: 4px; }
.nav__logo-img { height: 42px; width: auto; display: block; flex-shrink: 0; }
.nav__brand-sub {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent);
  padding-left: 12px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav__links a.is-active { color: #fff; background: rgba(0,195,255,0.12); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: #04101f;
  background: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, transform .15s ease, box-shadow .25s ease;
}
.nav__cta svg { width: 15px; height: 15px; }
.nav__cta:hover { background: var(--accent); color: #02101c; box-shadow: 0 0 26px rgba(0,195,255,0.45); }
.nav__cta:active { transform: scale(0.96); }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #fff;
  align-items: center; justify-content: center;
}
.nav__burger svg { width: 22px; height: 22px; }
.nav__burger .icon-close { display: none; }
.nav.is-open .nav__burger .icon-open { display: none; }
.nav.is-open .nav__burger .icon-close { display: block; }

.nav__mobile {
  pointer-events: auto;
  position: absolute;
  top: calc(var(--nav-h) + 26px);
  left: 20px; right: 20px;
  background: rgba(8, 16, 28, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s .25s;
}
.nav.is-open .nav__mobile { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .25s ease, transform .25s ease; }
.nav__mobile a {
  display: block;
  font-size: 15px; font-weight: 600;
  color: var(--text-soft);
  padding: 14px 16px;
  border-radius: 14px;
}
.nav__mobile a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav__mobile .nav__cta { display: flex; justify-content: center; margin-top: 8px; width: 100%; color: #04101f; }
.nav__mobile .nav__cta:hover { color: #02101c; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__inner > .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (min-width: 901px) { .nav__mobile { display: none; } }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 90px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom-left-radius: var(--radius-hero);
  border-bottom-right-radius: var(--radius-hero);
  isolation: isolate;
  
  background: linear-gradient(115deg, var(--hero-blue) 0%, var(--hero-navy) 42%, var(--hero-black) 100%);
}

.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background-image: url('../img/sede-v2.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0,195,255,0.20) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,11,26,0.45) 0%, rgba(6,19,40,0.55) 42%, rgba(2,6,13,0.88) 100%),
    linear-gradient(115deg, rgba(6,19,40,0.55) 0%, rgba(10,25,41,0.30) 45%, rgba(2,6,13,0.75) 100%);
}

.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: 
    radial-gradient(60% 50% at 50% 118%, rgba(0,195,255,0.22), transparent 70%),
    linear-gradient(180deg, transparent 70%, var(--bg) 100%);
  pointer-events: none;
}

.hero__content { max-width: 880px; display: flex; flex-direction: column; align-items: center; gap: 22px; }

.hero__ig {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  background: rgba(4, 12, 24, 0.5);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
  color: var(--text-soft);
  transition: border-color .25s ease, color .25s ease;
}
.hero__ig:hover { border-color: rgba(0,195,255,0.45); color: #fff; }
.hero__ig-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(0,195,255,0.14); color: var(--accent);
}
.hero__ig-icon svg { width: 15px; height: 15px; }

.hero__label {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); opacity: .9;
}
.hero__title {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.55);
}
.hero__title span { color: var(--accent); }
.hero__subtitle {
  margin: 0; max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--text-soft);
}
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 10px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: scale(0.97); }
.btn--primary { background: #fff; color: #04101f; }
.btn--primary:hover { background: var(--accent); color: #02101c; box-shadow: 0 0 30px rgba(0,195,255,0.45); }
.btn--ghost { background: rgba(255,255,255,0.04); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,195,255,0.07); }
.btn--whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn--whatsapp:hover { background: #20ba5a; border-color: #20ba5a; box-shadow: 0 0 30px rgba(37,211,102,0.4); }

.section { padding: 96px 0; }
.section__head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section__eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--accent); display: block; margin-bottom: 14px;
}
.section__title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800; letter-spacing: -0.5px; line-height: 1.15;
}
.section__lead { margin: 0; color: var(--text-soft); font-size: 1.02rem; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 30px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(0,195,255,0.10), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.card:hover { border-color: rgba(0,195,255,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.card:hover::before { opacity: 1; }
.card__icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(0,195,255,0.10);
  border: 1px solid rgba(0,195,255,0.25);
  color: var(--accent);
  margin-bottom: 22px;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { margin: 0 0 10px; font-size: 1.25rem; font-weight: 700; }
.card__text { margin: 0 0 22px; color: var(--text-soft); font-size: 0.95rem; flex-grow: 1; }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent); }
.card__link svg { width: 15px; height: 15px; transition: transform .25s ease; }
.card:hover .card__link svg { transform: translateX(4px); }

@media (max-width: 900px) { .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.footer {
  position: relative;
  margin-top: 40px;
  border-top-left-radius: var(--radius-hero);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(15,51,255,0.12), transparent 55%),
    linear-gradient(105deg, rgba(5,11,31,0.86) 0%, rgba(10,21,48,0.72) 42%, rgba(12,18,38,0.55) 70%, rgba(5,8,15,0.5) 100%),
    url('../img/venezuela-flag-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr;
  gap: 40px;
  padding: 72px 0 56px;
}
.footer__logo { height: 58px; width: auto; display: block; margin-bottom: 22px; }
.footer__desc { color: var(--text-soft); font-size: 0.92rem; max-width: 300px; }

.footer__col h4 {
  margin: 0 0 22px;
  font-size: 14px; font-weight: 700;
  position: relative; padding-bottom: 12px;
}
.footer__col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.footer__col address { font-style: normal; color: var(--text-soft); font-size: 0.9rem; line-height: 1.8; }
.footer__contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { font-size: 0.9rem; color: var(--text-soft); transition: color .25s ease; }
.footer__contact a:hover { color: var(--accent); }
.footer__contact a.is-strong { font-weight: 700; color: #fff; }

.footer__links { display: flex; flex-direction: column; gap: 13px; }
.footer__links a { color: var(--text-soft); font-size: 0.92rem; width: fit-content; transition: color .25s ease, padding-left .25s ease; }
.footer__links a:hover { color: #fff; padding-left: 6px; }

.footer__ig {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  transition: border-color .25s ease, background .25s ease, transform .15s ease;
}
.footer__ig:hover { border-color: rgba(0,195,255,0.45); background: rgba(0,195,255,0.06); transform: translateY(-2px); }
.footer__ig-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: #fff; color: #061021;
}
.footer__ig-icon svg { width: 19px; height: 19px; }
.footer__ig-text { display: flex; flex-direction: column; line-height: 1.25; }
.footer__ig-text b { font-size: 0.92rem; font-weight: 700; color: #fff; }
.footer__ig-text span { font-size: 0.78rem; color: var(--text-mute); }

.footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding: 26px 0;
  text-align: center;
}
.footer__bottom p { margin: 0; font-size: 0.82rem; color: var(--text-mute); }

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 560px) {
  :root { --radius-hero: 32px; }
  .footer__top { grid-template-columns: 1fr; padding: 56px 0 44px; }
  .section { padding: 72px 0; }
}

.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 96px) 24px 72px;
  text-align: center;
  border-bottom-left-radius: var(--radius-hero);
  border-bottom-right-radius: var(--radius-hero);
  background: linear-gradient(115deg, var(--hero-blue) 0%, var(--hero-navy) 45%, var(--hero-black) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(0,195,255,0.18), transparent 60%),
    radial-gradient(55% 50% at 50% 122%, rgba(0,195,255,0.16), transparent 70%);
}
.page-hero__inner { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-mute); }
.breadcrumb a { color: var(--text-soft); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb svg { width: 13px; height: 13px; opacity: .5; }
.page-hero__title { margin: 0; font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.05; }
.page-hero__title span { color: var(--accent); }
.page-hero__lead { margin: 4px 0 0; max-width: 620px; color: var(--text-soft); font-size: 1.05rem; }

.hero--detail { min-height: auto; padding-block: calc(var(--nav-h) + 96px) 96px; }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag {
  font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--text-soft); display: inline-flex; align-items: center; gap: 7px;
}
.tag svg { width: 14px; height: 14px; color: var(--accent); }

.btn--soft { background: rgba(0,195,255,0.12); color: var(--accent); border-color: rgba(0,195,255,0.25); }
.btn--soft:hover { background: var(--accent); color: #02101c; box-shadow: 0 0 26px rgba(0,195,255,0.4); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 12px 22px; font-size: 13px; }

.toolbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px; }
.chip {
  font-size: 13px; font-weight: 600; color: var(--text-soft);
  padding: 9px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  cursor: pointer; transition: color .2s, background .2s, border-color .2s;
}
.chip:hover { color: #fff; border-color: rgba(0,195,255,0.35); }
.chip.is-active { background: var(--accent); color: #02101c; border-color: transparent; font-weight: 700; }

.pnf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pnf-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-card);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.pnf-card.is-hidden { display: none; }
.pnf-card:hover { border-color: rgba(0,195,255,0.35); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.pnf-card__media { position: relative; height: 168px; overflow: hidden; }
.pnf-card__media img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: transform .5s ease; }
.pnf-card:hover .pnf-card__media img { transform: scale(1.06); }
.pnf-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,8,15,.05), rgba(12,21,38,.9)); }
.pnf-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(4,12,24,0.55); color: #cdeeff; border: 1px solid rgba(0,195,255,0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.pnf-card {
  position: relative; 
}
.pnf-card__icon {
  position: absolute; top: 144px; left: 22px; z-index: 3;
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid rgba(0,195,255,0.3); color: var(--accent);
}
.pnf-card__icon svg { width: 24px; height: 24px; }
.pnf-card__body { padding: 34px 22px 0; flex-grow: 1; }
.pnf-card__title { margin: 0 0 9px; font-size: 1.18rem; font-weight: 700; line-height: 1.25; }
.pnf-card__desc { margin: 0 0 18px; font-size: .88rem; color: var(--text-soft); }
.pnf-card__meta { display: flex; flex-direction: column; gap: 9px; padding-bottom: 20px; }
.pnf-meta-row { display: flex; align-items: flex-start; gap: 9px; font-size: .8rem; color: var(--text-soft); }
.pnf-meta-row svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.pnf-card__foot { padding: 0 22px 22px; }

@media (max-width: 980px) { .pnf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pnf-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }

.parish-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.parish-card {
  overflow: hidden; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-card);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.parish-card:hover { border-color: rgba(0,195,255,0.3); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.parish-card__media { position: relative; height: 190px; }
.parish-card__media img { width: 100%; height: 100%; object-fit: cover; }
.parish-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,8,15,.1), rgba(10,18,32,.94)); }
.parish-card__head { position: absolute; bottom: 16px; left: 24px; right: 24px; z-index: 2; }
.parish-card__name { margin: 0; font-size: 1.4rem; font-weight: 800; }
.parish-card__place { margin: 5px 0 0; font-size: .82rem; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.parish-card__place svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }
.parish-card__body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px 18px; }
.motor-group h5 { margin: 0 0 9px; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.motor-group ul { display: flex; flex-direction: column; gap: 6px; border-left: 2px solid rgba(0,195,255,0.18); padding-left: 12px; }
.motor-group li { font-size: .85rem; color: var(--text-soft); }
.motor-group a { color: var(--text-soft); transition: color .2s, padding-left .2s; }
.motor-group a:hover { color: var(--accent); padding-left: 3px; }

@media (max-width: 880px) { .parish-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
@media (max-width: 480px) { .parish-card__body { grid-template-columns: 1fr; } }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--radius-card);
  background: linear-gradient(115deg, #061a3a 0%, #0a1929 60%, #02060d 100%);
  border: 1px solid var(--line);
  padding: 60px 40px;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 0%, rgba(0,195,255,0.16), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin: 0 0 12px; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.5px; }
.cta-band p { margin: 0 auto 28px; max-width: 580px; color: var(--text-soft); }

@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .cta-band { padding: 44px 24px; } }

.req-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 36px; }
.req-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.req-panel {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-card);
  padding: 30px 28px;
}
.req-panel__title { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font-size: 1.2rem; font-weight: 700; }
.req-panel__title .ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(0,195,255,0.1); border: 1px solid rgba(0,195,255,0.25); color: var(--accent); flex-shrink: 0; }
.req-panel__title .ico svg { width: 22px; height: 22px; }
.req-list { display: flex; flex-direction: column; gap: 10px; }
.req-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 16px; border: 1px solid var(--line-soft); border-radius: 12px; background: rgba(0,195,255,0.02); transition: border-color .2s, background .2s; }
.req-item:hover { border-color: rgba(0,195,255,0.28); background: rgba(0,195,255,0.05); }
.req-item__num { font-size: 12px; font-weight: 700; color: var(--accent); opacity: .7; min-width: 20px; padding-top: 1px; }
.req-item__text { margin: 0; font-size: .9rem; color: var(--text-soft); line-height: 1.5; }
.req-item__text em { font-style: normal; color: var(--text-mute); }
.req-badge { display: inline-block; font-size: 9.5px; font-weight: 700; letter-spacing: 1px; color: #ffcf66; border: 1px solid rgba(255,185,0,.35); padding: 2px 7px; border-radius: 6px; margin-left: 6px; vertical-align: middle; }

@media (max-width: 820px) { .req-cols { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }

.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.footer__map-link {
  display: block;
  color: var(--text-soft);
  transition: color .25s ease;
}
.footer__map-link:hover {
  color: var(--accent);
}

@media (min-width: 901px) {
  .parish-card--featured {
    flex-direction: row;
    min-height: 400px;
    grid-column: span 2;
  }
  .parish-card--featured .parish-card__media {
    width: 45%;
    height: auto;
    min-height: 400px;
  }
  .parish-card--featured .parish-card__body {
    width: 55%;
    grid-template-columns: repeat(2, 1fr);
    align-content: center;
    padding: 34px 40px;
  }
}

.program-section {
  margin-top: 56px;
}
.program-section__title {
  margin-bottom: 24px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.program-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
.accordion-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color .25s ease;
}
.accordion-item:hover {
  border-color: rgba(0, 195, 255, 0.22);
}
.accordion-item.is-active {
  border-color: rgba(0, 195, 255, 0.35);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}
.accordion-header svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: transform .25s ease;
}
.accordion-item.is-active .accordion-header svg {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0, 1, 0, 1), padding .3s ease;
  padding-inline: 24px;
  background: rgba(4, 8, 15, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-item.is-active .accordion-content {
  max-height: 500px;
  padding-block: 16px 20px;
  transition: max-height .3s ease-in-out, padding .3s ease;
  border-top: 1px solid var(--line-soft);
}
.accordion-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  transition: border-color .2s, background .2s, color .2s;
}
.accordion-link:hover {
  border-color: rgba(0, 195, 255, 0.35);
  background: rgba(0, 195, 255, 0.06);
  color: #fff;
}
.accordion-link svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.tag--clickable {
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.tag--clickable:hover {
  border-color: var(--accent);
  background: rgba(0, 195, 255, 0.08);
  color: #fff;
}

.whatsapp-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.22);
  padding: 22px 26px;
  margin-bottom: 34px;
  border-radius: 8px;
}
.whatsapp-banner__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.3);
}
.whatsapp-banner__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.whatsapp-banner__content {
  flex: 1;
}
.whatsapp-banner__title {
  margin: 0 0 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.whatsapp-banner__desc {
  margin: 0 0 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.whatsapp-banner__desc strong {
  color: #fff;
}
@media (max-width: 600px) {
  .whatsapp-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
}

.hero__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.28);
  padding: 8px 18px;
  border-radius: 999px;
  color: #25d366;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background .22s, box-shadow .22s, border-color .22s, color .22s;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.05);
}
.hero__whatsapp:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.3);
  color: #fff;
}
.hero__whatsapp svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

