/* ==================================================
   1. VARIÁVEIS & RESET
================================================== */
:root {
  --azul: #0e4f7a;
  --azul-escuro: #083c5f;
  --azul-claro: #1e6aa8;
  --dourado: #d4a84f;
  --dourado-claro: #f3b24c;
  --bege: #f6f1e7;
  --branco: #fff;
  --sombra: 0 10px 30px rgba(0,0,0,.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
/* TIPOGRAFIA DO SITE - PADRÃO DO MANUAL */
body {
  font-family: 'Petrona', serif;
  background: #FCF3E4;
  color: #033C59;
  line-height: 1.7;
  text-align: justify;
}
h1 {
  color: #fff;
}
h2, h3, h4, h5, h6 {
  font-family: 'Cratch', serif;
  color: #1963AD;
}
/* Container Global */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: block;
}
/* ==================================================
   2. HEADER & NAVEGAÇÃO
================================================== */
/* Top Bar (Barra Dourada) */
.top-bar {
  background: var(--dourado-claro);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-left a {
  color: #222;
  text-decoration: none;
}
.top-search input {
  padding: 6px 14px;
  border-radius: 20px;
  border: none;
  outline: none;
}
.top-social {
  display: flex;
  gap: 12px;
}
.top-social img {
  width: 20px;
}
/* Header Principal */
.header {
  background: linear-gradient(180deg, var(--azul), var(--azul-escuro));
  position: center;
  z-index: 1000;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.logo img {
  width: 60px; /* Ajuste se necessário para 48px conforme preferência */
}
.logo span {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
}
/* Menu Desktop */
.menu {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  font-weight: 500;
}
.menu a.active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--dourado); /* Alterado para dourado para destaque */
}
/* Botão Mobile (Hambúrguer) */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1300;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
}
/* Overlay do Menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 1100;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/* ==================================================
   3. HERO SLIDER & COMPONENTES GERAIS
================================================== */
.hero {
  background: url("imagens/igraja.jpeg") center/cover no-repeat;
  padding: 180px 0 140px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* OVERLAY ESCURO (NÃO BLOQUEIA MAIS O BOTÃO) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}
/* CONTEÚDO ACIMA DO OVERLAY */
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
}
/* SLIDES */
.hero-slide {
  display: none;
  animation: fade .8s ease;
}
.hero-slide.active {
  display: block;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* CARD CENTRALIZADO */
.hero-card {
  background: var(--azul-claro);
  color: #fff;
  padding: 36px 40px 54px;
  border-radius: 20px;
  max-width: 560px;
  min-height: 160px;
  box-shadow: var(--sombra);
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.hero-card h1 {
  font-size: 28px;
  margin-bottom: 18px;
}
/* BOTÃO */
.hero-card .btn {
  background: var(--dourado);
  color: #fff;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}
/* DOTS */
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.hero-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.6);
  border-radius: 50%;
  cursor: pointer;
}
.hero-dots .dot.active {
  background: var(--dourado);
  transform: scale(1.2);
}
/* Botões Gerais */
.btn {
  background: var(--dourado);
  color: #fff;
  padding: 10px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}
.btn-1 {
  background: var(--azul);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}
.btn-1:hover {
  background: var(--azul-escuro);
}
/* ==================================================
   4. SEÇÕES DE CONTEÚDO (HOME)
================================================== */
/* História */
.historia {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 120px 0;
  align-items: center;
}
.historia h2 {
  font-size: 34px;
  color: var(--azul);
  margin-bottom: 18px;
}
.historia p {
  max-width: 420px;
  margin-bottom: 22px;
}
.historia img {
  width: 100%;
  border-radius: 24px;
}
/* Obras */
.obras {
  background: var(--dourado-claro);
  padding: 120px 0;
  text-align: center;
}
.obras h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 50px;
}
.obras-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  max-width: 900px;
  margin: auto;
}
.obra {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.obra img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.obra p {
  padding: 14px;
  font-weight: 600;
}
/* Notícias Home */
.noticias {
  padding: 120px 0;
  text-align: center;
}
.noticias h2 {
  font-size: 32px;
  color: #b89445;
  margin-bottom: 50px;
}
#noticias-home .noticia-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}
#noticias-home .news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
#noticias-home .news-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
}
#noticias-home .news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Vídeos */
.videos {
  padding: 120px 0;
  text-align: center;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}
.video-card iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 18px;
}




/* ==================================================
   5. RELIGIOSO (Oração, MSM, Missa)
================================================== */
/* Oração */
.oracao {
  padding: 120px 0;
  background: var(--bege);
}
.oracao-conteudo {
  background: #fff;
  max-width: 820px;
  margin: auto;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.oracao h2 {
  text-align: center;
  font-size: 30px;
  color: var(--azul);
  margin-bottom: 25px;
}
.oracao-conteudo p {
  font-size: 17px;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
  line-height: 1.8;
  hyphens: auto;
}
.oracao-final {
  text-align: center;
  font-weight: bold;
  margin-top: 25px;
}

/* ================================
   EU VOU - BEATIFICAÇÃO
================================ */

.eu-vou{
  padding:120px 0;
  background:var(--bege);
  text-align:center;
}

.eu-vou-box{
  background:#fff;
  max-width:600px;
  margin:auto;
  padding:60px;
  border-radius:24px;
  box-shadow:var(--sombra);
  border-top:6px solid var(--dourado);
}

.eu-vou-box h2{
  margin:15px 0;
  color:var(--azul);
}

.eu-vou-box p{
  margin-bottom:30px;
  color:#444;
}

.btn-eu-vou{
  display:inline-block;
  padding:14px 34px;
  background:linear-gradient(135deg,#F9BA53,#d4a84f);
  color:#fff;
  font-weight:600;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 4px 12px rgba(0,0,0,.25);
  transition:.3s;
}

.btn-eu-vou:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

.btn-eu-vou:active{
  transform:scale(.96);
}

/* MSM */
.msm {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}
.msm h2 {
  font-size: 34px;
  color: var(--azul);
  margin-bottom: 40px;
}
.msm-texto {
  max-width: 860px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}
/* ================================
   HORÁRIOS DE MISSA
================================ */
/* SECTION */
.horario-missa {
  background:
    linear-gradient(rgba(252,243,228,.92), rgba(252,243,228,.92)),
    url("imagens/igraja.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  text-align: center;
}
/* TÍTULO */
.horario-missa h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--azul-escuro);
}
/* SUBTÍTULO */
.horario-sub {
  font-size: 17px;
  margin-bottom: 60px;
  color: #555;
}
/* GRID DOS CARDS */
.horario-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: auto;
}
/* CARD PADRÃO */
.horario-card {
  background: #fff;
  color: #033C59;
  padding: 36px 28px;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  transition: all .3s ease;
}
/* HOVER SUAVE */
.horario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
/* TÍTULO DO CARD */
.horario-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--azul);
}
/* LISTA */
.horario-card ul {
  list-style: none;
  padding: 0;
}
.horario-card li {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.horario-card li:last-child {
  border-bottom: none;
}
/* CARD DESTAQUE (DOMINGO) */
.horario-card.destaque {
  border: 3px solid var(--dourado);
  transform: scale(1.05);
}
/* BOTÃO */
.horario-btn {
  margin-top: 50px;
  text-align: center;
}
/* BOTÃO DOURADO */
.btn-gold {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #F9BA53, #d4a84f);
  color: #fff;
  font-family: 'Petrona', serif;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
/* brilho passando */
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent
  );
  transition: .6s;
}
.btn-gold:hover::before {
  left: 100%;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.btn-gold:active {
  transform: scale(.96);
}
/* ==================================================
   6. DOACAO & MAPA
================================================== */
/* Pix */
.doa-pix {
  background: var(--bege);
  padding: 120px 0;
}
.doa-pix-card {
  background: #fff;
  max-width: 620px;
  margin: auto;
  padding: 46px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
}
.doa-pix-card h2 {
  color: var(--azul);
  font-size: 28px;
  margin-bottom: 12px;
}
.doa-pix-card p {
  font-size: 16px;
  margin-bottom: 10px;
}
.doa-pix-card strong {
  font-size: 18px;
  color: var(--dourado);
}
.doa-pix-card img {
  width: 160px;
}
.pix-chave {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  background: #f3e8d3;
  padding: 10px 12px;
  border-radius: 8px;
}
.pix-chave span {
  font-weight: 600;
  font-size: 15px;
}
.pix-chave button {
  border: none;
  background: linear-gradient(135deg, #0c4a6e, #083654);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  transition: all .25s ease;
}
.pix-chave button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
  opacity: .95;
}
.pix-chave button:active {
  transform: scale(.96);
}
#pixMsg {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: green;
}
/* Mapa */
.mapa-box iframe {
  width: 100%;
  height: 420px;
  border: 0; /* Remove borda padrão iframe */
}
/* ==================================================
   7. FORMULÁRIOS & ADMINISTRAÇÃO
================================================== */
/* Form Padrão (Contato) */
.form-padrao {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeUp .6s ease;
}
.form-padrao label {
  font-weight: 600;
  color: #083654;
  margin-bottom: -5px;
}
.form-padrao input,
.form-padrao textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  transition: .3s;
  background: #f9f9f9;
}
.form-padrao input:focus,
.form-padrao textarea:focus {
  border-color: #083654;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(8,54,84,.15);
}
.form-padrao textarea {
  resize: vertical;
  min-height: 140px;
}
.form-padrao .btn {
  background: linear-gradient(135deg, #083654, #0b4f7d);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: .3s;
  margin-top: 10px;
}
.form-padrao .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  background: linear-gradient(135deg, #0b4f7d, #083654);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Form Admin (Notícias/Painel) */
.admin-form {
  padding: 60px 0;
  max-width: 720px;
  margin: 0 auto;
}
.admin-form h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #0d2b4d;
}
.msg-admin {
  background: #e6f7e6;
  color: #1b5e20;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
}
.form-noticia label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}
.form-noticia input,
.form-noticia textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  font-family: inherit;
}
.form-noticia textarea {
  resize: vertical;
  min-height: 120px;
}
/* Filtros Admin */
.admin-filtros-form {
  background: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.1);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  align-items: end;
  max-width: 900px;
  margin: 40px auto;
}
.filtro-campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.filtro-campo label {
  font-weight: 600;
  color: #083654;
  font-size: 14px;
}
.filtro-campo select,
.filtro-campo input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.admin-filtros-form button {
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  background: #d4a84f;
  color: #fff;
}
.admin-filtros-form button:hover {
  background: #f3c86d;
}
/* Relatos e Cards de Admin */
.admin-relato {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  margin: 24px 0;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.admin-relato h3 {
  color: #083654;
}
.admin-status {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.aprovado { background: #e8f6ef; color: #1e7f5c; }
.pendente { background: #fff7ed; color: #9a3412; }
.admin-acoes {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.admin-acoes button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-aprovar { background: #e8f6ef; color: #1e7f5c; }
.btn-ocultar { background: #fff7ed; color: #9a3412; }
.btn-excluir { background: #fdecea; color: #b42318; }
/* Paginação */
.paginacao {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  gap: 8px;
}
.paginacao a {
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b4f7b;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.paginacao a.ativo {
  background: #083654;
}
/* Relato Público Card */
.relato-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 28px;
  margin-bottom: 30px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  border-left: 6px solid var(--azul);
  transition: .3s;
}
.relato-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.relato-card h3 {
  color: var(--azul);
  margin-bottom: 12px;
  font-size: 20px;
}
.relato-card p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
  text-align: justify;
}
.relato-data {
  font-size: 13px;
  color: #777;
  display: block;
  text-align: right;
  font-style: italic;
}
.alert.success {
  background: #e7f8ee;
  color: #0f5132;
  border-left: 5px solid #0f5132;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 15px;
}
/* ==================================================
   8. GALERIA & MODAL
================================================== */
.galeria {
  padding: 70px 0;
}
.galeria-topo span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a6d3b;
}
.galeria-topo h1 {
  font-size: 34px;
  margin: 10px 0;
  color: #083654;
}
.galeria-topo p {
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 50px;
}
.galeria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.galeria-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  cursor: pointer;
  transition: .3s;
  width: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.galeria-item:hover {
  transform: translateY(-4px);
}
.img-box {
  width: 220px;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #ddd;
}
.img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.legenda {
  padding: 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.5;
  background: #f3e8d3;
  min-height: 50px;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.modal img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}
.modal-info {
  color: #fff;
  text-align: center;
  max-width: 600px;
}
.modal-info h3 {
  margin-bottom: 6px;
}
.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}
/* ==================================================
   9. IMPRENSA
================================================== */
.hero-imprensa {
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
              url("imagens/igraja.jpeg") center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}
.hero-imprensa .hero-card h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero-imprensa .hero-card p {
  font-size: 18px;
  opacity: 0.9;
}
.imprensa-texto {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}
.imprensa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 80px;
}
.imprensa-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.imprensa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.imprensa-tipo {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #083654;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}
.imprensa-card h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #083654;
}
.imprensa-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin: 15px 0 25px;
}
.imprensa-card .btn-1 {
  display: inline-block;
  background: #083654;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: background .3s ease;
}
.imprensa-card .btn-1:hover {
  background: #0b4d7a;
}
/* ==================================================
   10. RODAPÉ
================================================== */
.footer {
  background: linear-gradient(180deg, var(--azul), #062b42);
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
/* ==================================================
   11. RESPONSIVO (MOBILE)
================================================== */
@media (max-width: 900px) {
  /* Menu */
  .menu-toggle {
    display: flex;
  }
  .menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--azul);
    flex-direction: column;
    padding: 100px 20px 40px;
    transition: .3s;
    z-index: 1200;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .menu.active {
    right: 0;
  }
  .menu a {
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  /* Grids Gerais */
  .historia,
  .obras-cards,
  .videos-grid,
  .horario-cards,
  .imprensa-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  /* Notícias */
  #noticias-home .noticia-grid {
    grid-template-columns: 1fr;
  }
  /* Pix */
  .doa-pix-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .horario-card.destaque {
    transform: none;
  }
  .horario-missa {
    padding: 90px 0;
  }
  .horario-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .horario-card.destaque {
    transform: none;
  }
}
@media (max-width: 768px) {
  .hero-imprensa {
    padding: 90px 15px;
  }
  .hero-imprensa .hero-card h1 {
    font-size: 28px;
  }
  .imprensa-card .btn-1 {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 18px;
  }
  .oracao-conteudo,
  .hino-box,
  .videos,
  .msm,
  .mapa-box {
    padding: 24px 18px !important;
    border-radius: 14px;
    text-align: left;
  }
  .oracao h2,
  .hino-box h2,
  .videos h2,
  .msm h2 {
    font-size: 24px;
    text-align: center;
  }
  /* Galeria Mobile */
  .galeria-topo h1 { font-size: 26px; }
  .galeria-grid { gap: 8px; justify-content: center; }
  .galeria-item { width: 160px; }
  .img-box { width: 160px; height: 160px; }
  .legenda { font-size: 12px; padding: 10px; }
  section {
    margin-bottom: 80px;
  }
}
/* ==================================================
   COMUNICADO OFICIAL
================================================== */
.comunicado {
  background: var(--bege);
  padding: 120px 0;
}
.comunicado-box {
  background: #fff;
  max-width: 820px;
  margin: auto;
  padding: 60px;
  border-radius: 24px;
  box-shadow: var(--sombra);
  border-top: 6px solid var(--dourado);
}
.tag-comunicado {
  display: block;
  text-align: center;
  font-family: 'Cratch', serif;
  letter-spacing: 4px;
  color: var(--dourado);
  margin-bottom: 20px;
  font-size: 14px;
}
.comunicado-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.comunicado-data {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
  color: #777;
}
.comunicado-box p {
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}
.assinatura {
  display: block;
  margin-top: 40px;
  text-align: right;
  color: var(--azul-escuro);
}
.news-link,
.news-title a {
  text-decoration: none !important;
  color: inherit !important;
}

/* COLOCAR NO SITE*/

.peregrino{
padding:120px 0;
background:var(--bege);
}

.peregrino-box{
background:#fff;
max-width:820px;
margin:auto;
padding:60px;
border-radius:24px;
box-shadow:var(--sombra);
border-top:6px solid var(--dourado);
}

.peregrino-box h3{
margin-top:20px;
color:var(--azul);
}

.peregrino-box hr{
margin:30px 0;
border:none;
height:1px;
background:#eee;
}

/* ================================
   REVEAL ANIMAÇÃO AO SCROLL
================================ */

.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* DIREÇÕES OPCIONAIS */

.reveal-left{
  opacity:0;
  transform:translateX(-60px);
  transition:all .8s ease;
}

.reveal-left.active{
  opacity:1;
  transform:translateX(0);
}

.reveal-right{
  opacity:0;
  transform:translateX(60px);
  transition:all .8s ease;
}

.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

/* LGPD CHECKBOX */
.lgpd-box{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:20px 0;
  max-width:600px;
}

.lgpd-box input[type="checkbox"]{
  margin-top:4px;
  width:18px;
  height:18px;
  cursor:pointer;
}

.lgpd-box label{
  font-size:14px;
  line-height:1.4;
  cursor:pointer;
}
