:root {
  --dark: #232323;
  --dark-2: #171717;
  --panel: #2a2a2a;
  --gold: #d4af74;
  --gold-soft: rgba(212, 175, 116, .22);
  --light: #f5f5f5;
  --muted: rgba(245,245,245,.68);
  --line: rgba(212,175,116,.18);
  --shadow: 0 26px 80px rgba(0,0,0,.34);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--dark);
  color: var(--light);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.08), transparent 32%),
    radial-gradient(circle at 85% 25%, rgba(212,175,116,.08), transparent 34%);
  z-index: -2;
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 5vw, 70px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(21,21,21,.94);
  border-bottom: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo-img {
  height: 62px;
  width: auto;
  max-width: 190px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,255,255,.28));
}
.hero-logo-img {
  width: min(430px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.25)) drop-shadow(0 18px 48px rgba(0,0,0,.58));
}
.main-nav { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; }
.main-nav a { color: rgba(245,245,245,.82); padding: 10px 13px; border-radius: 2px; transition: color .2s ease, background .2s ease; }
.main-nav a:hover { color: var(--gold); background: rgba(212,175,116,.08); }
.nav-button { border: 2px solid #fff; color: #fff !important; margin-left: 8px; }
.nav-button:hover { background: #fff !important; color: #151515 !important; }
.nav-button.active { background: #fff; color: #151515 !important; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid #fff; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 5px auto; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 110px 22px 70px;
  overflow: hidden;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg { background: url('inicial.jpg') center 42% / cover no-repeat; transform: scale(1.03); }
.hero-shade {
  background:
    linear-gradient(180deg, rgba(0,0,0,.65), rgba(35,35,35,.38) 42%, rgba(35,35,35,.94)),
    radial-gradient(circle at center, rgba(0,0,0,.08), rgba(0,0,0,.7));
}
.hero-content { position: relative; z-index: 2; width: min(980px, 100%); }
.overline { display: inline-block; color: #fff; text-transform: uppercase; letter-spacing: .22em; font-size: 12px; font-weight: 800; margin-bottom: 14px; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2 { font-family: Arial, Helvetica, sans-serif; letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(42px, 8vw, 96px); line-height: .98; text-shadow: 0 14px 50px rgba(0,0,0,.72); }
.hero p { width: min(720px, 100%); margin: 24px auto 0; color: rgba(245,245,245,.84); font-size: clamp(16px, 2vw, 21px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 26px; border-radius: 2px; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.solid { background: #fff; border: 2px solid #fff; color: #151515; }
.btn.outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn.outline:hover { background: #fff; color: #151515; }
.btn.light { color: var(--light); }
.btn.full { width: 100%; margin-top: 18px; }
.scroll-cue { position: absolute; z-index: 2; bottom: 24px; color: rgba(245,245,245,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #1b1b1b; }
.info-strip article { padding: 28px clamp(18px, 4vw, 46px); border-right: 1px solid var(--line); }
.info-strip article:last-child { border-right: 0; }
.info-strip span { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.info-strip strong { display: block; margin-top: 8px; font-size: 17px; }
.section { padding: clamp(70px, 10vw, 124px) clamp(22px, 7vw, 110px); }
.section-title { width: min(870px, 100%); margin-bottom: 42px; }
.section-title.centered { margin-inline: auto; text-align: center; }
h2 { margin: 0; color: var(--light); font-size: clamp(34px, 5vw, 62px); line-height: 1.08; }
.section-title p { color: var(--muted); font-size: 17px; }
.about-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr); gap: clamp(34px, 6vw, 80px); align-items: start; }
.about-text p { color: var(--muted); font-size: 18px; line-height: 1.8; margin: 0 0 18px; }
.text-link { display: inline-block; margin-top: 12px; color: var(--gold); border-bottom: 1px solid var(--gold); font-weight: 800; padding-bottom: 4px; }
.mission-cards { display: grid; gap: 16px; }
.mission-cards article, .event-card, .contact-card {
  background: linear-gradient(180deg, rgba(42,42,42,.98), rgba(25,25,25,.98));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
}
.mission-cards article { padding: 24px; }
.mission-cards span { color: var(--gold); font-weight: 900; }
.mission-cards h3 { margin: 8px 0; color: var(--gold); font-size: 23px; font-family: Arial, Helvetica, sans-serif; }
.mission-cards p { margin: 0; color: var(--muted); line-height: 1.7; }
.dark-band { background: #171717; border-block: 1px solid var(--line); }
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card { padding: 28px; min-height: 280px; display: flex; flex-direction: column; }
.event-date { width: 92px; height: 92px; border: 1px solid var(--gold); display: grid; place-items: center; text-align: center; margin-bottom: 22px; }
.event-date span { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.event-date strong { display: block; color: var(--gold); font-family: Arial, Helvetica, sans-serif; }
.event-card h3 { color: var(--light); font-size: 24px; margin: 0 0 12px; }
.event-card p { color: var(--muted); line-height: 1.7; margin: 0 0 22px; }
.event-card a { color: var(--gold); margin-top: auto; font-weight: 800; }
.pastors-section { position: relative; min-height: 520px; display: flex; align-items: center; padding: clamp(70px, 10vw, 120px) clamp(22px, 7vw, 110px); overflow: hidden; }
.pastors-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,35,35,.96), rgba(35,35,35,.8), rgba(35,35,35,.45)), url('inicial.jpg') center / cover no-repeat; filter: saturate(.85); }
.pastors-content { position: relative; width: min(780px, 100%); }
.pastors-content p { color: var(--muted); font-size: 18px; line-height: 1.8; margin: 22px 0 28px; }
.location-section { background: var(--dark); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 24px; align-items: stretch; }
.map-card { min-height: 520px; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--panel); }
.map-card iframe { width: 100%; height: 100%; min-height: 520px; border: 0; display: block; filter: grayscale(.2) contrast(.95); }
.contact-card { padding: clamp(24px, 4vw, 34px); }
.contact-card h3 { margin: 0 0 14px; color: var(--gold); font-family: Arial, Helvetica, sans-serif; font-size: 28px; }
.address { color: var(--muted); line-height: 1.75; margin: 0 0 20px; }
.social-links { display: grid; gap: 12px; }
.social-links a { display: flex; align-items: center; gap: 14px; padding: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.02); transition: border-color .2s ease, transform .2s ease; }
.social-links a:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-icon { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.social-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-icon.facebook svg, .social-icon.whatsapp svg { fill: currentColor; stroke: none; }
.social-icon.instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d 54%, #fcb045); }
.social-icon.facebook { background: #1877f2; }
.social-icon.whatsapp { background: #25d366; color: #073b1b; }
.social-links em { display: block; color: var(--gold); font-style: normal; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.social-links strong { display: block; margin-top: 4px; color: var(--light); }
.page-hero {
  position: relative;
  min-height: 64svh;
  display: grid;
  place-items: end start;
  padding: 150px clamp(22px, 7vw, 110px) 70px;
  overflow: hidden;
}
.page-hero-bg, .page-hero-shade { position: absolute; inset: 0; }
.page-hero-bg { background: url('inicial.jpg') center 38% / cover no-repeat; transform: scale(1.03); }
.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.48), rgba(0,0,0,.28)),
    linear-gradient(180deg, rgba(0,0,0,.42), rgba(35,35,35,.96));
}
.page-hero-content { position: relative; width: min(900px, 100%); z-index: 2; }
.page-hero-content h1 { margin: 0; font-size: clamp(40px, 6vw, 78px); line-height: 1.02; text-shadow: 0 14px 50px rgba(0,0,0,.72); }
.page-hero-content p { width: min(650px, 100%); color: var(--muted); font-size: 19px; line-height: 1.7; }
.events-page-section { background: var(--dark); }
.event-feature {
  background: linear-gradient(180deg, rgba(42,42,42,.98), rgba(25,25,25,.98));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 46px);
}
.event-feature-header { width: min(850px, 100%); margin-bottom: 30px; }
.event-feature-header h2 { font-size: clamp(34px, 5vw, 58px); }
.event-feature-header p { color: var(--muted); font-size: 18px; line-height: 1.75; }
.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.event-photo-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  border: 1px dashed rgba(212,175,116,.48);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)),
    radial-gradient(circle at center, rgba(212,175,116,.16), transparent 58%);
  color: var(--muted);
}
.event-photo-placeholder span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}
.event-photo-placeholder strong { color: var(--light); font-size: 18px; }
.final-cta { text-align: center; padding: clamp(80px, 11vw, 132px) 22px; background: #171717; border-top: 1px solid var(--line); }
.final-cta h2 { margin-bottom: 28px; }
.site-footer { display: flex; justify-content: space-between; gap: 14px; padding: 26px clamp(22px, 7vw, 110px); border-top: 1px solid var(--line); background: #111; color: var(--muted); }
.site-footer strong { color: var(--gold); font-family: Arial, Helvetica, sans-serif; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .main-nav { position: fixed; top: 82px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 12px; background: rgba(23,23,23,.98); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px; }
  .nav-button { margin-left: 0; }
  .info-strip, .about-grid, .schedule-grid, .contact-layout, .event-gallery { grid-template-columns: 1fr; }
  .info-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .map-card, .map-card iframe { min-height: 380px; }
}
@media (max-width: 560px) {
  .brand-logo-img { height: 50px; max-width: 150px; }
  .hero-logo-img { width: min(310px, 86vw); margin-bottom: 18px; }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: 43px; }
  .section { padding-inline: 18px; }
  .site-footer { flex-direction: column; }
}
