/* =========================================================
   Igreja Batista de Pacaembu — estilo
   Branco + tons pastel, com o azul, dourado e verde do logo
   ========================================================= */
:root {
  --azul: #1f2d4d;          /* azul-marinho do logo */
  --azul-2: #34466f;
  --dourado: #d6a33a;       /* arco dourado do logo */
  --dourado-escuro: #a97a1c;
  --verde: #4f7f45;         /* colina do logo */

  --branco: #ffffff;
  --fundo-alt: #f7f9fc;
  --p-azul: #eaf1f9;
  --p-salvia: #ecf3e8;
  --p-creme: #fbf5e8;
  --p-lavanda: #f0edf8;

  --texto: #1f2d4d;
  --texto-suave: #5a6780;
  --borda: #e3e8f0;

  --raio: 18px;
  --raio-p: 12px;
  --sombra: 0 1px 2px rgba(31, 45, 77, .05), 0 8px 24px rgba(31, 45, 77, .07);
  --sombra-forte: 0 2px 4px rgba(31, 45, 77, .06), 0 18px 40px rgba(31, 45, 77, .12);

  --topo: 72px;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topo) + 8px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--azul-2); }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; color: var(--azul); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--dourado); outline-offset: 3px; border-radius: 6px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.container-estreito { max-width: 760px; }

/* ---------- botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .75em 1.5em;
  border-radius: 999px; border: 1.5px solid transparent;
  font: 600 .95rem/1.2 var(--sans); letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primario { background: var(--azul); color: #fff; box-shadow: 0 6px 16px rgba(31, 45, 77, .18); }
.btn-primario:hover { background: var(--azul-2); }
.btn-secundario { background: #fff; color: var(--azul); border-color: var(--borda); }
.btn-secundario:hover { border-color: var(--dourado); color: var(--dourado-escuro); }
.btn:disabled { opacity: .6; cursor: wait; }
.btn-largo { width: 100%; }

/* ---------- topo ---------- */
.topo {
  position: sticky; top: 0; z-index: 50;
  height: var(--topo);
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.topo-rolado { border-bottom-color: var(--borda); box-shadow: 0 4px 20px rgba(31, 45, 77, .05); }
.topo-inner {
  height: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.marca { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.marca-emblema { width: 46px; height: auto; }
.marca-texto { display: flex; flex-direction: column; line-height: 1; font-family: var(--serif); color: var(--azul); }
.marca-l1 { font-size: 1.3rem; font-weight: 700; letter-spacing: .02em; }
.marca-l2 { font-size: .72rem; font-family: var(--sans); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--verde); margin-top: 4px; }

.menu { display: flex; align-items: center; gap: 2px; }
.menu a {
  position: relative; padding: 8px 11px; border-radius: 999px;
  font-size: .9rem; font-weight: 600; color: var(--texto-suave); text-decoration: none;
  transition: color .2s, background-color .2s;
}
.menu a:hover { color: var(--azul); background: var(--p-azul); }
.menu a.ativo { color: var(--azul); }
.menu a.ativo::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; width: 16px; height: 2px;
  margin-left: -8px; border-radius: 2px; background: var(--dourado);
}
.menu a.menu-destaque { background: var(--azul); color: #fff; margin-left: 6px; padding: 8px 16px; }
.menu a.menu-destaque:hover { background: var(--azul-2); }
.menu a.menu-destaque.ativo::after { display: none; }

.menu-btn {
  display: none; width: 46px; height: 46px; border: 0; border-radius: 12px;
  background: var(--p-azul); cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-btn span { width: 20px; height: 2px; border-radius: 2px; background: var(--azul); transition: transform .25s, opacity .2s; }
.menu-aberto .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-aberto .menu-btn span:nth-child(2) { opacity: 0; }
.menu-aberto .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .menu-btn { display: flex; }
  .menu {
    position: fixed; top: var(--topo); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 12px 16px 20px;
    background: #fff; border-bottom: 1px solid var(--borda);
    box-shadow: 0 20px 40px rgba(31, 45, 77, .12);
    max-height: calc(100vh - var(--topo)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform .25s, opacity .25s, visibility .25s;
  }
  .menu-aberto .menu { transform: none; opacity: 1; visibility: visible; }
  .menu a { padding: 12px 14px; font-size: 1rem; border-radius: 10px; }
  .menu a.ativo { background: var(--p-azul); }
  .menu a.ativo::after { display: none; }
  .menu a.menu-destaque { margin: 6px 0 0; text-align: center; }
}

/* ---------- início (hero) ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--topo));
  display: flex; align-items: center;
  background: linear-gradient(180deg, #fff 0%, var(--p-azul) 100%);
}
.hero-foto {
  position: absolute; top: 0; right: 0; bottom: 0; width: 58%;
  background: url('img/fundo.jpg') center 35% / cover no-repeat;
}
.hero-foto {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 30%, #000 65%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 30%, #000 65%);
}
.hero-foto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(234, 241, 249, .55) 0%, rgba(234, 241, 249, 0) 40%), rgba(255, 255, 255, .12);
}
.hero-conteudo {
  position: relative; z-index: 1;
  width: 100%; max-width: 1160px; margin: 0 auto; padding: 48px 20px 64px;
}
.hero-conteudo > * { max-width: 520px; }
.hero-logo { width: clamp(190px, 26vw, 280px); height: auto; margin-bottom: 20px; filter: drop-shadow(0 8px 24px rgba(255, 255, 255, .9)); }
.hero-slogan {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.2; color: var(--azul); margin-bottom: 18px;
}
.hero-versiculo {
  margin: 0 0 28px; padding: 4px 0 4px 18px;
  border-left: 3px solid var(--dourado);
  color: var(--texto-suave); font-size: 1rem;
}
.hero-versiculo p { margin: 0 0 4px; }
.hero-versiculo cite { font-style: normal; font-weight: 700; font-size: .85rem; color: var(--dourado-escuro); letter-spacing: .04em; }
.hero-acoes { display: flex; flex-wrap: wrap; gap: 12px; }
.proximo {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 24px; padding: 10px 16px; border-radius: 14px;
  background: rgba(255, 255, 255, .85); border: 1px solid var(--borda);
  font-size: .92rem; color: var(--texto-suave); box-shadow: var(--sombra);
}
.proximo strong { color: var(--azul); }
.ponto { width: 9px; height: 9px; border-radius: 50%; background: var(--verde); box-shadow: 0 0 0 4px rgba(79, 127, 69, .18); flex-shrink: 0; }

@media (max-width: 820px) {
  .hero { min-height: auto; align-items: stretch; flex-direction: column; }
  .hero-foto { position: relative; width: 100%; height: 42vh; min-height: 260px; order: -1; background-position: center 40%; }
  .hero-foto {
    -webkit-mask-image: linear-gradient(0deg, transparent 0%, #000 55%);
    mask-image: linear-gradient(0deg, transparent 0%, #000 55%);
  }
  .hero-foto::after { background: none; }
  .hero { background: #fff; }
  .hero-conteudo { margin-top: -120px; padding: 0 20px 48px; text-align: center; }
  .hero-conteudo > * { margin-left: auto; margin-right: auto; }
  .hero-logo { background: #fff; border-radius: 24px; padding: 14px 18px; box-shadow: var(--sombra-forte); width: 200px; }
  .hero-versiculo { border-left: 0; padding: 0; }
  .hero-versiculo::before { content: ''; display: block; width: 48px; height: 3px; background: var(--dourado); border-radius: 2px; margin: 0 auto 14px; }
  .hero-acoes { justify-content: center; }
  .proximo { justify-content: center; }
}

/* ---------- seções ---------- */
.secao { padding: clamp(64px, 9vw, 110px) 0; }
.secao-azul { background: var(--p-azul); }
.secao-creme { background: var(--p-creme); }
.secao-salvia { background: var(--p-salvia); }

.secao-cabeca { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.rotulo {
  display: inline-block; margin-bottom: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dourado-escuro);
}
.secao-cabeca h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.secao-cabeca h2::after {
  content: ''; display: block; width: 56px; height: 3px; margin: 16px auto 0;
  border-radius: 2px; background: linear-gradient(90deg, var(--dourado), var(--verde));
}
.secao-sub { max-width: 560px; margin: 16px auto 0; color: var(--texto-suave); }

.texto-longo { font-size: 1.08rem; color: #33405c; }
.vazio {
  grid-column: 1 / -1; text-align: center; padding: 40px 20px;
  color: var(--texto-suave); background: rgba(255, 255, 255, .6);
  border: 1.5px dashed var(--borda); border-radius: var(--raio);
}

.revelar { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.revelar.visivel { opacity: 1; transform: none; }

/* ---------- quem somos ---------- */
.quem-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.pilares { display: grid; gap: 16px; }
.pilar { padding: 24px 26px; border-radius: var(--raio); border: 1px solid rgba(31, 45, 77, .06); }
.pilar h3 { font-size: 1.5rem; margin-bottom: 6px; }
.pilar p { color: #3d4a66; }
.pilar-azul { background: var(--p-azul); }
.pilar-salvia { background: var(--p-salvia); }
.pilar-creme { background: var(--p-creme); }

/* ---------- história ---------- */
.historia-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.historia-foto { margin: 0; border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra-forte); background: #fff; padding: 10px; }
.historia-foto img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; }
.linha-tempo { list-style: none; margin: 32px 0 0; padding: 0 0 0 22px; border-left: 2px solid rgba(214, 163, 58, .45); }
.linha-tempo li { position: relative; padding: 0 0 18px 8px; display: flex; flex-direction: column; }
.linha-tempo li:last-child { padding-bottom: 0; }
.linha-tempo li::before {
  content: ''; position: absolute; left: -30px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; border: 3px solid var(--dourado);
}
.lt-ano { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; line-height: 1.2; color: var(--azul); }
.lt-texto { color: var(--texto-suave); }

/* ---------- programação ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.prog-dia { padding: 26px; border-radius: var(--raio); border: 1px solid rgba(31, 45, 77, .06); position: relative; }
.prog-azul { background: var(--p-azul); }
.prog-salvia { background: var(--p-salvia); }
.prog-creme { background: var(--p-creme); }
.prog-lavanda { background: var(--p-lavanda); }
.prog-hoje { box-shadow: 0 0 0 2px var(--dourado), var(--sombra); }
.prog-dia h3 { font-size: 1.6rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.selo-hoje {
  font: 700 .7rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  background: var(--dourado); color: #fff; padding: 5px 9px; border-radius: 999px;
}
.prog-dia ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.prog-dia li { display: flex; gap: 14px; align-items: flex-start; padding: 12px 14px; background: rgba(255, 255, 255, .75); border-radius: var(--raio-p); }
.prog-hora {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-weight: 700; color: var(--azul); font-size: 1rem; width: 84px;
}
.prog-hora svg { width: 17px; height: 17px; fill: none; stroke: var(--dourado-escuro); stroke-width: 2; stroke-linecap: round; }
.prog-info { display: flex; flex-direction: column; line-height: 1.4; }
.prog-info strong { font-weight: 600; }
.prog-info small { color: var(--texto-suave); font-size: .88rem; margin-top: 2px; }

/* ---------- avisos ---------- */
.avisos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.aviso {
  display: flex; gap: 18px; padding: 24px; background: #fff;
  border-radius: var(--raio); box-shadow: var(--sombra); border: 1px solid var(--borda);
}
.aviso-destaque { grid-column: 1 / -1; background: linear-gradient(135deg, #fff 0%, #fff 55%, var(--p-creme) 100%); border-color: rgba(214, 163, 58, .45); }
.aviso-data {
  flex-shrink: 0; width: 62px; height: 68px; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--p-azul); color: var(--texto-suave);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; line-height: 1;
}
.aviso-data span { font-family: var(--serif); font-size: 1.9rem; color: var(--azul); letter-spacing: 0; margin-bottom: 4px; }
.aviso-destaque .aviso-data { background: var(--dourado); color: rgba(255, 255, 255, .9); }
.aviso-destaque .aviso-data span { color: #fff; }
.aviso-corpo h3 { font-size: 1.45rem; margin-bottom: 6px; }
.aviso-corpo { color: #3d4a66; font-size: 1rem; min-width: 0; overflow-wrap: anywhere; }
.selo {
  display: inline-block; margin-bottom: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--dourado-escuro); background: var(--p-creme); border: 1px solid rgba(214, 163, 58, .4);
  padding: 4px 10px; border-radius: 999px;
}

/* ---------- fotos ---------- */
.galeria { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.foto {
  position: relative; display: block; padding: 0; border: 0; cursor: zoom-in;
  border-radius: var(--raio-p); overflow: hidden; aspect-ratio: 1 / 1; background: var(--p-azul);
}
.foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.foto:hover img { transform: scale(1.05); }
.foto-legenda {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 14px 12px;
  background: linear-gradient(0deg, rgba(31, 45, 77, .75), rgba(31, 45, 77, 0));
  color: #fff; font-size: .9rem; font-weight: 600; text-align: left;
}

.lightbox {
  width: 100vw; height: 100vh; max-width: 100vw; max-height: 100vh; margin: 0; padding: 0; border: 0;
  background: rgba(20, 28, 48, .94); color: #fff;
}
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox::backdrop { background: rgba(20, 28, 48, .6); }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-height: 82vh; width: auto; border-radius: 10px; }
.lightbox figcaption { margin-top: 12px; text-align: center; opacity: .9; }
.lb-fechar, .lb-nav {
  position: absolute; border: 0; cursor: pointer; color: #fff; background: rgba(255, 255, 255, .12);
  width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.lb-fechar:hover, .lb-nav:hover { background: rgba(255, 255, 255, .25); }
.lb-fechar { top: 16px; right: 16px; }
.lb-ant { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-prox { right: 16px; top: 50%; transform: translateY(-50%); }

/* ---------- vídeos ---------- */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.video { margin: 0; background: #fff; border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); }
.video-capa, .video-frame { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; }
.video-capa { position: relative; cursor: pointer; background: #000; }
.video-capa img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transition: opacity .2s; }
.video-capa:hover img { opacity: 1; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play svg { width: 68px; height: 48px; transition: transform .2s; }
.video-capa:hover .video-play svg { transform: scale(1.08); }
.video figcaption { padding: 14px 18px; font-weight: 600; }

/* ---------- ofertas ---------- */
.ofertas-grid { display: grid; grid-template-columns: 1fr minmax(300px, 400px); gap: clamp(32px, 6vw, 80px); align-items: center; max-width: 980px; margin: 0 auto; }
.ofertas-versiculo { margin: 0; }
.ofertas-versiculo p {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.35; color: var(--azul); margin-bottom: 14px;
}
.ofertas-versiculo p::before { content: '“'; color: var(--dourado); }
.ofertas-versiculo p::after { content: '”'; color: var(--dourado); }
.ofertas-versiculo cite { font-style: normal; font-weight: 700; color: var(--dourado-escuro); letter-spacing: .04em; }

.pix-card {
  background: #fff; border-radius: 24px; padding: 26px;
  border: 1px solid var(--borda); box-shadow: var(--sombra-forte); text-align: center;
}
.pix-topo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.pix-selo { font-weight: 800; letter-spacing: .14em; color: #fff; background: var(--verde); padding: 5px 14px; border-radius: 999px; font-size: .8rem; }
.pix-aviso { font-size: .75rem; font-weight: 700; color: #9a5b00; background: #fff4dd; border: 1px solid #f0d49a; padding: 4px 10px; border-radius: 999px; }
.pix-qr { width: 210px; max-width: 100%; margin: 0 auto 14px; padding: 8px; border-radius: 14px; background: var(--p-azul); }
.pix-qr svg { width: 100%; height: auto; display: block; border-radius: 8px; }
.pix-qr svg path { fill: var(--azul); }
.pix-dados { margin: 0 0 18px; }
.pix-dados dt { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--texto-suave); margin-top: 10px; }
.pix-dados dd { margin: 2px 0 0; font-weight: 600; overflow-wrap: anywhere; }
.pix-botoes { display: grid; gap: 10px; }
.pix-msg { min-height: 1.4em; margin: 10px 0 0; font-size: .9rem; font-weight: 600; color: var(--verde); }

/* ---------- oração ---------- */
.form-oracao {
  display: grid; gap: 16px; background: #fff; padding: clamp(22px, 4vw, 36px);
  border-radius: 24px; box-shadow: var(--sombra); border: 1px solid var(--borda);
}
.campo-duplo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-oracao label { display: grid; gap: 6px; font-weight: 600; font-size: .95rem; }
.opc { font-weight: 400; color: var(--texto-suave); font-size: .85rem; }
.form-oracao input, .form-oracao textarea {
  width: 100%; font: inherit; font-size: 1rem; font-weight: 400; color: var(--texto);
  padding: 12px 14px; border-radius: var(--raio-p);
  border: 1.5px solid var(--borda); background: var(--fundo-alt);
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.form-oracao textarea { resize: vertical; min-height: 130px; }
.form-oracao input:focus, .form-oracao textarea:focus {
  outline: none; border-color: var(--azul-2); background: #fff; box-shadow: 0 0 0 4px rgba(52, 70, 111, .12);
}
.armadilha { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { min-height: 1.4em; margin: 0; text-align: center; font-weight: 600; font-size: .95rem; }
.form-msg.ok { color: var(--verde); }
.form-msg.erro { color: #b3261e; }

/* ---------- contato ---------- */
.contato-grid { display: grid; grid-template-columns: minmax(280px, 1fr) 1.4fr; gap: clamp(28px, 4vw, 48px); align-items: stretch; }
.contato-lista { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; align-content: start; }
.contato-lista li {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px;
  background: var(--fundo-alt); border-radius: var(--raio); border: 1px solid var(--borda);
}
.contato-lista small { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--texto-suave); }
.contato-lista a { color: var(--azul); font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contato-lista a:hover { color: var(--dourado-escuro); }
.contato-lista .ct-extra { display: block; font-size: .88rem; color: var(--azul-2); margin-top: 2px; }
.ct-icone {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; background: var(--p-azul);
}
.ct-icone svg { width: 22px; height: 22px; fill: none; stroke: var(--azul); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ct-redes { flex-direction: column; gap: 10px !important; }
.redes { display: flex; gap: 10px; }
.redes a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--borda); transition: background-color .2s, border-color .2s;
}
.redes a:hover { background: var(--p-creme); border-color: var(--dourado); }
.redes svg { width: 21px; height: 21px; fill: none; stroke: var(--azul); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mapa { border-radius: var(--raio); overflow: hidden; min-height: 360px; box-shadow: var(--sombra); border: 1px solid var(--borda); background: var(--p-azul); }
.mapa iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- rodapé ---------- */
.rodape { background: var(--p-azul); border-top: 1px solid var(--borda); }
.rodape-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 48px; padding-bottom: 40px; flex-wrap: wrap; }
.rodape-logo { width: 150px; height: auto; }
.rodape-info { text-align: right; color: var(--texto-suave); }
.rodape-info p { margin-bottom: 12px; }
.rodape-info .redes { justify-content: flex-end; }
.rodape-base { border-top: 1px solid rgba(31, 45, 77, .08); text-align: center; padding: 18px 20px; font-size: .88rem; color: var(--texto-suave); }
.rodape-base p { margin: 0; }

/* ---------- WhatsApp flutuante ---------- */
.whats-flutuante {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25a55f; box-shadow: 0 10px 24px rgba(37, 165, 95, .35);
  transition: transform .2s;
}
.whats-flutuante:hover { transform: scale(1.06); }
.whats-flutuante svg { width: 30px; height: 30px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- responsivo ---------- */
@media (max-width: 900px) {
  .quem-grid, .historia-grid, .ofertas-grid, .contato-grid { grid-template-columns: 1fr; }
  .historia-foto { max-width: 460px; margin: 0 auto; }
  .ofertas-versiculo { text-align: center; }
  .pix-card { max-width: 420px; width: 100%; margin: 0 auto; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .campo-duplo { grid-template-columns: 1fr; }
  .avisos-grid, .videos-grid { grid-template-columns: 1fr; }
  .galeria { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .aviso { padding: 20px; gap: 14px; }
  .aviso-data { width: 54px; height: 60px; }
  .rodape-inner { flex-direction: column; text-align: center; }
  .rodape-info { text-align: center; }
  .rodape-info .redes { justify-content: center; }
  .marca-l1 { font-size: 1.15rem; }
  .lb-nav { top: auto; bottom: 20px; transform: none; }
}

/* ---------- etapa 2 ---------- */
.centro { text-align: center; margin-top: 28px; }
.lightbox img { transition: filter .3s; }
.lightbox img.carregando { filter: blur(6px); }
.falha-conexao {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 60;
  max-width: calc(100% - 32px); padding: 12px 16px; border-radius: 14px;
  background: #fff4dd; border: 1px solid #f0d49a; color: #6b4300;
  font-size: .92rem; font-weight: 600; box-shadow: var(--sombra-forte);
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.falha-conexao button {
  font: inherit; border: 0; border-radius: 999px; padding: 6px 14px;
  background: var(--azul); color: #fff; cursor: pointer;
}
.link-pastor { color: var(--texto-suave); text-decoration: none; }
.link-pastor:hover { color: var(--azul); text-decoration: underline; }

/* ---------- registros históricos ---------- */
.hist-imagens { margin-top: clamp(40px, 6vw, 64px); }
.hist-imagens h3 { font-size: 1.8rem; text-align: center; margin-bottom: 22px; }
.hist-imagens-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.hist-img {
  display: flex; flex-direction: column; padding: 8px; border: 0; cursor: zoom-in; text-align: left;
  background: #fff; border-radius: var(--raio); box-shadow: var(--sombra); transition: transform .25s, box-shadow .25s;
}
.hist-img:hover { transform: translateY(-3px); box-shadow: var(--sombra-forte); }
.hist-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; border-radius: 10px; }
.hist-img-rodape { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 8px 6px; font-weight: 600; color: var(--azul); font-size: .95rem; }
.lupa { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--p-azul); display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; }

/* lightbox: tocar para ampliar e ler */
.lightbox #lbImg { cursor: zoom-in; }
.lightbox.lb-zoom { overflow: auto; }
.lightbox.lb-zoom[open] { display: block; }
.lightbox.lb-zoom figure { max-width: none; width: max-content; margin: 0 auto; padding: 64px 12px 24px; }
.lightbox.lb-zoom #lbImg { max-height: none; max-width: none; width: auto; cursor: zoom-out; border-radius: 4px; }
.lightbox.lb-zoom .lb-fechar { position: fixed; }
.lightbox.lb-zoom .lb-nav { display: none; }
