@import url('https://fonts.googleapis.com/css2?family=Georgia:wght@400;700&display=swap');

:root{
  --blue:#003f73;
  --blue-dark:#00345f;
  --blue-card:#004f86;
  --gold:#c99535;
  --cream:#fffaf1;
  --page:#fbfaf7;
  --text:#12263b;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--page);
  color:var(--text);
  font-family: Arial, Helvetica, sans-serif;
}
a{text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* TOP */
.topbar{
  height:34px;
  background:linear-gradient(90deg,#00375f,#004d83);
  color:#fff;
  font-size:13px;
}
.topbar-content{
  height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.top-left{display:flex;gap:28px;align-items:center;color:#eaf6ff}
.top-social{display:flex;gap:14px;align-items:center;}
.top-social a {
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px; height:28px;
  border-radius:50%;
  background:rgba(255,255,255,0.12);
  color:white;
  transition:background 0.2s, transform 0.2s;
}
.top-social a:hover { background:var(--gold); transform:scale(1.15); }

/* NAV */
.navbar{
  height:auto;
  background:#fff;
  box-shadow:0 1px 8px rgba(0,0,0,.08);
  position:sticky;
  top:0;
  z-index:50;
}
.nav-content{
  height:auto;
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-icon{
  width:76px;
  height:76px;
  border:2px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--blue);
  font-size:44px;
  line-height:1;
}
.brand-title{
  font-family:Georgia,serif;
  color:var(--blue);
  font-size:34px;
  line-height:.88;
  font-weight:700;
  letter-spacing:.3px;
}
.brand-subtitle{
  color:var(--gold);
  margin-top:8px;
  font-size:11px;
  line-height:1.2;
  font-weight:900;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
}
.nav-links a{color:#071d33;position:relative;padding:48px 0}
.nav-links a:hover{color:var(--gold)}
.nav-links .active::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:25px;
  width:24px;
  height:2px;
  background:var(--gold);
}
.mobile-menu{display:none}

/* HERO */
.hero{
  position:relative;
  height:485px;
  overflow:hidden;
  background:#111;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform:scale(1.035);
  transition:opacity 1s ease, transform 1s ease;
}
.slide.active{
  opacity:1;
  transform:scale(1);
}
.hero-shadow{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.75) 0%,rgba(0,0,0,.48) 33%,rgba(0,0,0,.12) 75%,rgba(0,0,0,.04) 100%);
}
.hero-inner{
  height:100%;
  display:flex;
  align-items:center;
  position:relative;
  z-index:4;
}
.hero-text{max-width:580px;color:white;padding-top:10px}
.hero-text p{
  color:#d7a63d;
  font-size:17px;
  font-weight:800;
  margin:0 0 10px;
}
.hero-text h1{
  font-family:Georgia,serif;
  font-size:57px;
  line-height:1.06;
  margin:0;
  color:white;
  text-shadow:0 4px 18px rgba(0,0,0,.45);
}
.hero-text strong{
  display:block;
  margin-top:20px;
  font-size:15px;
  color:white;
}
.hero-actions{
  display:flex;
  gap:14px;
  margin-top:28px;
}
.btn{
  color:white;
  border-radius:6px;
  padding:14px 22px;
  font-size:14px;
  font-weight:900;
  box-shadow:0 4px 14px rgba(0,0,0,.20);
}
.btn-blue{background:#0068b0}
.btn-blue:hover{background:#005694}
.btn-gold{background:var(--gold)}
.btn-gold:hover{background:#b88323}
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:44px;
  height:44px;
  border-radius:50%;
  border:0;
  background:white;
  color:var(--blue);
  font-size:35px;
  line-height:1;
  box-shadow:0 5px 18px rgba(0,0,0,.25);
  cursor:pointer;
}
.hero-prev{left:18px}
.hero-next{right:18px}
.hero-dots{
  position:absolute;
  z-index:9;
  bottom:20px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:13px;
}
.dot{
  width:11px;
  height:11px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.75);
  cursor:pointer;
}
.dot.active{background:var(--gold)}

/* COMUNIDADES */
.community-row{
  padding-top:20px;
  padding-bottom:34px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.community{
  height:210px;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  background:white;
  box-shadow:0 4px 18px rgba(0,0,0,.18);
}
.community img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.community-label{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:47px;
  background:rgba(0,73,126,.96);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
  font-weight:900;
  border-radius:12px 12px 0 0;
}

/* WELCOME + MASS */
.welcome-schedule{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:42px;
  align-items:start;
  padding-top:2px;
  padding-bottom:30px;
}
.small-title{
  color:var(--gold);
  font-size:14px;
  font-weight:900;
  margin:0 0 14px;
}
.welcome h2{
  font-family:Georgia,serif;
  color:var(--blue);
  font-size:36px;
  line-height:1.08;
  margin:0;
}
.divider{
  width:98px;
  height:2px;
  background:var(--gold);
  margin:28px 0;
  position:relative;
}
.divider span{
  position:absolute;
  width:10px;
  height:10px;
  left:44px;
  top:-4px;
  background:var(--page);
  border:1px solid var(--gold);
  transform:rotate(45deg);
}
.welcome-text{
  font-size:15px;
  line-height:1.8;
  color:#24364a;
  margin-bottom:22px;
}
.outline{
  display:inline-flex;
  align-items:center;
  gap:18px;
  border:1px solid var(--gold);
  border-radius:6px;
  padding:13px 20px;
  color:var(--blue);
  font-weight:900;
  font-size:14px;
}
.mass-card{
  background:var(--cream);
  border:1px solid #ead8b5;
  border-radius:14px;
  padding:30px 32px;
  box-shadow:0 4px 18px rgba(0,0,0,.07);
}
.mass-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:28px;
}
.mass-title{
  display:flex;
  align-items:center;
  gap:16px;
}
.chalice{
  color:var(--gold);
  font-size:36px;
}
.mass-title h2{
  margin:0;
  font-family:Georgia,serif;
  color:var(--blue);
  font-size:34px;
}
.mass-header a{
  color:var(--gold);
  font-size:14px;
  font-weight:900;
  text-decoration:underline;
}
.mass-columns{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.mass-col{
  padding:0 28px;
  border-left:1px solid #dcc493;
}
.mass-col:first-child{
  border-left:0;
  padding-left:0;
}
.mass-col h3{
  font-family:Georgia,serif;
  color:var(--blue);
  font-size:21px;
  line-height:1.15;
  margin:0 0 22px;
}
.mass-col p{
  font-size:14px;
  line-height:1.45;
  color:#2c3d4c;
  margin:0 0 14px;
}
.mass-col b{
  color:#6b2c1c;
}

/* QUICK */
.quick-links{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:white;
  border:1px solid #ddd;
  border-radius:12px;
  overflow:hidden;
  margin-top:4px;
  margin-bottom:0;
}
.quick-links a{
  min-height:104px;
  color:#12263b;
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  border-right:1px solid #ddd;
}
.quick-links a:last-child{border-right:0}
.quick-links span{
  font-size:42px;
  color:var(--gold);
  min-width:45px;
  text-align:center;
}
.quick-links .ql-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  color: var(--gold);
  flex-shrink: 0;
}
.quick-links .ql-icon svg {
  stroke: var(--gold);
  transition: transform 0.2s;
}
.quick-links a:hover .ql-icon svg {
  transform: scale(1.12);
}
.quick-links b{
  display:block;
  color:var(--blue);
  font-size:13px;
  margin-bottom:6px;
}
.quick-links small{
  display:block;
  color:#374758;
  font-size:12px;
  line-height:1.35;
}

/* FOOTER */
.footer{
  margin-top:16px;
  background:linear-gradient(110deg,#00345f,#004b82);
  color:white;
  position:relative;
  overflow:hidden;
}
.footer-wave{
  height:26px;
  background:var(--page);
  border-bottom-left-radius:50% 22px;
  border-bottom-right-radius:50% 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr 1.1fr 1fr 1fr;
  gap:48px;
  padding-top:36px;
  padding-bottom:34px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap:14px;
}
.footer-icon{
  width:68px;
  height:68px;
  border:2px solid var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  font-size:40px;
}
.footer-brand h3{
  font-family:Georgia,serif;
  font-size:28px;
  line-height:.95;
  margin:0;
}
.footer-brand p{
  color:#d4a249;
  font-size:11px;
  font-weight:900;
  line-height:1.25;
  margin:7px 0 0;
}
.footer h4{
  margin:0 0 18px;
  font-size:14px;
  font-weight:900;
}
.footer p,.footer-text{
  color:#d8edff;
  font-size:14px;
  line-height:1.55;
}
.copyright{
  border-top:1px solid rgba(255,255,255,.22);
  color:#d8edff;
  display:flex;
  justify-content:space-between;
  gap:20px;
  max-width:1180px;
  margin:0 auto;
  padding:16px 18px;
  font-size:13px;
}

/* RESPONSIVO */
@media(max-width:980px){
  .top-left{display:none}
  .mobile-menu{display:block;background:var(--blue);color:white;border:0;border-radius:8px;padding:9px 13px;font-size:22px}
  .navbar,.nav-content{height:auto}
  .nav-content{padding-top:14px;padding-bottom:14px}
  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:white;
    flex-direction:column;
    gap:0;
    padding:16px 20px;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:13px 0}
  .hero{height:560px}
  .hero-text h1{font-size:40px}
  .hero-actions{flex-direction:column;max-width:250px}
  .hero-arrow{display:none}
  .community-row,.welcome-schedule,.mass-columns,.quick-links,.footer-grid{grid-template-columns:1fr}
  .mass-col{border-left:0;border-top:1px solid #dcc493;padding:22px 0}
  .mass-col:first-child{border-top:0}
  .quick-links a{border-right:0;border-bottom:1px solid #ddd}
  .copyright{flex-direction:column;text-align:center}
  .brand-title{font-size:25px}
  .brand-icon{width:62px;height:62px}
}


/* LOGO OFICIAL COMO IMAGEM */
.brand {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  width: 130px;
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-logo-img {
  width: 130px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

@media(max-width:980px){
  .brand-logo-img {
    width: 100px;
  }

  .footer-logo-img {
    width: 110px;
  }
}

/* ── DROPDOWN A PARÓQUIA ── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-toggle {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--navy, #1a3057);
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover {
  color: var(--gold, #c9a84c);
  background: #f0f4ff;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #dde4f0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  min-width: 260px;
  z-index: 999;
  padding: 6px 0;
  /* Pseudo-bridge: extends clickable area upward to close the gap */
  margin-top: 0;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav-dropdown-menu.open {
  display: block;
  animation: dropFade 0.15s ease both;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: #1a3057;
  text-decoration: none;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: #f5f7fa;
  border-left-color: #c9a84c;
  color: #c9a84c;
}

@media (max-width: 980px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid #c9a84c;
    margin-left: 12px;
    padding: 0;
    background: transparent;
  }
  .nav-dropdown-menu a {
    color: #ffffff;
    padding: 8px 14px;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #c9a84c;
  }
}

/* ── Ícones SVG nos horários de missa ── */
.mass-col p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
}

.mass-icon-svg {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--gold, #c9a84c);
}

.mass-line-text {
  flex: 1 1 auto;
  min-width: 0;
}

/* ── BARRA DE ÍCONES FLUTUANTE NO HERO ── */
.hero-icon-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 10;
}

.hero-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 22px;
  background: rgba(10, 25, 55, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  text-decoration: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  transition: background 0.25s, transform 0.2s;
  min-width: 100px;
}

.hero-icon-btn:first-child {
  border-left: none;
}

.hero-icon-btn:hover {
  background: rgba(201, 168, 76, 0.75);
  transform: translateY(-3px);
}

.hib-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: #ffffff;
  transition: border-color 0.2s;
}

.hero-icon-btn:hover .hib-icon {
  border-color: #ffffff;
}

.hib-icon svg {
  stroke: #ffffff;
}

.hib-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero-icon-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 200;
    display: flex;
    justify-content: space-around;
    background: rgba(18, 32, 64, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
  }

  .hero-icon-btn {
    flex: 1;
    padding: 10px 6px;
    min-width: unset;
    border-left: 1px solid rgba(255,255,255,0.08);
    background: transparent;
  }

  .hero-icon-btn:first-child {
    border-left: none;
  }

  .hib-icon {
    width: 38px;
    height: 38px;
  }

  .hib-icon svg {
    width: 20px;
    height: 20px;
  }

  .hib-label {
    font-size: 0.58rem;
    letter-spacing: 0.4px;
  }

  /* Espaço para não cobrir o conteúdo da página */
  body {
    padding-bottom: 80px;
  }
}

/* ── Ícones nas community cards ── */
.comm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comm-icon svg {
  stroke: #ffffff;
}
.community-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Social links no rodapé ── */
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8edff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}
.social-link svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* PÁGINA NOSSA PADROEIRA */
.page-hero{
  position:relative;
  min-height:360px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-size:cover;
  background-position:center;
}
.padroeira-hero{
  background-image:url('assets/images/IMG-20220910-WA0042.jpg');
}
.page-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,39,72,.86),rgba(0,63,115,.48),rgba(201,149,53,.22));
}
.page-hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:70px 18px;
}
.page-hero-content p{
  color:#f1c66c;
  font-size:18px;
  font-weight:900;
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.8px;
}
.page-hero-content h1{
  font-family:Georgia,serif;
  font-size:58px;
  line-height:1;
  margin:0 0 18px;
  text-shadow:0 4px 18px rgba(0,0,0,.35);
}
.page-hero-content span{
  display:block;
  max-width:720px;
  font-size:21px;
  font-style:italic;
}
.padroeira-page{
  background:linear-gradient(180deg,#fffaf1 0%,#fbfaf7 45%,#fff 100%);
}
.padroeira-intro{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:34px;
  padding-top:55px;
  padding-bottom:38px;
  align-items:stretch;
}
.padroeira-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 34px rgba(0,0,0,.11);
  overflow:hidden;
}
.padroeira-image-card img{
  width:100%;
  height:100%;
  min-height:470px;
  object-fit:cover;
  display:block;
}
.padroeira-text-card{
  padding:44px 46px;
}
.padroeira-text-card h2,
.padroeira-main-text h2,
.prayer-box h2{
  font-family:Georgia,serif;
  color:var(--blue);
  font-size:38px;
  line-height:1.12;
  margin:0 0 12px;
}
.padroeira-text-card p,
.padroeira-main-text p,
.prayer-box p{
  color:#30495f;
  font-size:17px;
  line-height:1.78;
}
.padroeira-content-grid{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:32px;
  padding-bottom:55px;
}
.padroeira-main-text{
  background:#fff;
  padding:45px;
  border-radius:18px;
  box-shadow:0 9px 28px rgba(0,0,0,.08);
}
.padroeira-main-text h3{
  color:var(--blue);
  font-size:24px;
  margin:34px 0 10px;
}
.padroeira-main-text blockquote{
  margin:34px 0 0;
  padding:25px 30px;
  border-left:6px solid var(--gold);
  background:#fff7e8;
  color:var(--blue);
  font-family:Georgia,serif;
  font-size:27px;
  font-weight:700;
  border-radius:0 14px 14px 0;
}
.padroeira-sidebar{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.info-box{
  background:#fff;
  border-radius:16px;
  padding:28px;
  border-top:5px solid var(--gold);
  box-shadow:0 8px 26px rgba(0,0,0,.08);
}
.info-box h3{
  margin:0 0 12px;
  color:var(--blue);
  font-size:21px;
}
.info-box p{
  margin:0 0 8px;
  color:#1a3045;
  font-size:18px;
  font-weight:800;
}
.info-box span{
  color:#5c7184;
  line-height:1.5;
}
.logo-box img{
  max-width:100%;
  display:block;
  margin:0 auto;
}
.padroeira-prayer{
  padding:64px 0;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
}
.prayer-box{
  background:#fff;
  border-radius:22px;
  padding:48px;
  text-align:center;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
.prayer-box h3{
  margin:26px 0 0;
  color:var(--gold);
  font-family:Georgia,serif;
  font-size:29px;
}

@media(max-width:900px){
  .padroeira-intro,
  .padroeira-content-grid{grid-template-columns:1fr;}
  .page-hero-content h1{font-size:42px;}
  .padroeira-text-card,
  .padroeira-main-text,
  .prayer-box{padding:28px;}
}
@media(max-width:620px){
  .page-hero{min-height:300px;}
  .page-hero-content h1{font-size:34px;}
  .page-hero-content span{font-size:17px;}
  .padroeira-intro{padding-top:28px;}
  .padroeira-image-card img{min-height:330px;}
}


/* =========================================================
   ACESSIBILIDADE: Libras + voz + ajustes visuais
   ========================================================= */
.accessibility-widget{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:99998;
  font-family:Arial, Helvetica, sans-serif;
}
.accessibility-main-btn{
  width:58px;
  height:58px;
  border-radius:50%;
  border:3px solid #fff;
  background:#0b3768;
  color:#fff;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}
.accessibility-main-btn:hover,
.accessibility-main-btn:focus{
  background:#d49a2a;
  transform:translateY(-2px);
  outline:3px solid rgba(212,154,42,.35);
}
.accessibility-panel{
  position:absolute;
  left:0;
  bottom:72px;
  width:275px;
  background:#fff;
  color:#102a43;
  border-radius:18px;
  box-shadow:0 18px 45px rgba(0,0,0,.28);
  padding:14px;
  border:1px solid rgba(0,0,0,.08);
  display:none;
}
.accessibility-panel.open{display:block;}
.accessibility-panel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
  padding-bottom:8px;
  border-bottom:1px solid #e7eef5;
}
.accessibility-panel-header strong{
  color:#0b3768;
  font-size:17px;
}
.accessibility-panel-header button{
  border:0;
  background:#eef3f8;
  color:#0b3768;
  border-radius:10px;
  width:32px;
  height:32px;
  font-size:22px;
  cursor:pointer;
}
.accessibility-panel button[data-access-action]{
  width:100%;
  border:0;
  background:#f3f6fa;
  color:#102a43;
  padding:11px 12px;
  border-radius:12px;
  margin:5px 0;
  text-align:left;
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.accessibility-panel button[data-access-action]:hover,
.accessibility-panel button[data-access-action]:focus{
  background:#e7eef7;
  transform:translateX(2px);
  outline:2px solid #d49a2a;
}
.accessibility-panel small{
  display:block;
  margin-top:10px;
  color:#5c7184;
  line-height:1.35;
  font-size:12px;
}
body.access-high-contrast{
  background:#000 !important;
  color:#fff !important;
}
body.access-high-contrast *:not(svg):not(path):not(polygon):not(line):not(rect):not(circle){
  background-color:#000 !important;
  color:#fff !important;
  border-color:#fff !important;
  text-shadow:none !important;
  box-shadow:none !important;
}
body.access-high-contrast a,
body.access-high-contrast button{
  color:#ffff00 !important;
  border-color:#ffff00 !important;
}
body.access-highlight-links a{
  outline:3px solid #d49a2a !important;
  outline-offset:3px !important;
  text-decoration:underline !important;
  font-weight:900 !important;
}
body.access-readable-font,
body.access-readable-font *:not(i){
  font-family:Arial, Helvetica, sans-serif !important;
  letter-spacing:.02em;
}
body.access-font-1{font-size:112% !important;}
body.access-font-2{font-size:125% !important;}
body.access-font-3{font-size:140% !important;}

@media(max-width:620px){
  .accessibility-widget{left:12px;bottom:12px;}
  .accessibility-main-btn{width:52px;height:52px;font-size:24px;}
  .accessibility-panel{width:calc(100vw - 24px);max-width:310px;bottom:64px;}
}


/* ===== Correção botão acessibilidade fixo ===== */
#accessibilityWidget.accessibility-widget{
  position:fixed !important;
  left:18px !important;
  right:auto !important;
  bottom:18px !important;
  top:auto !important;
  z-index:2147483000 !important;
  display:block !important;
  width:auto !important;
  height:auto !important;
  margin:0 !important;
  transform:none !important;
  pointer-events:auto !important;
}
#accessibilityWidget .accessibility-main-btn{
  position:relative !important;
  z-index:2147483001 !important;
}
#accessibilityWidget .accessibility-panel{
  position:absolute !important;
  left:0 !important;
  bottom:72px !important;
  top:auto !important;
  z-index:2147483002 !important;
}
/* MOBILE: coloca a cadeira de rodas abaixo do botão Agenda Paroquial e acima do menu inferior */
@media(max-width:980px){
  #accessibilityWidget.accessibility-widget{
    position:fixed !important;
    left:12px !important;
    right:auto !important;
    bottom:165px !important;
    top:auto !important;
    z-index:2147483000 !important;
  }

  #accessibilityWidget .accessibility-main-btn{
    width:52px !important;
    height:52px !important;
    font-size:24px !important;
  }

  #accessibilityWidget .accessibility-panel{
    bottom:64px !important;
  }

  [vw-access-button],
  .vw-access-button {
    bottom:235px !important;
    top:auto !important;
  }
}


/* ===== Ajuste: descer botões dos cards Evento Especial e Programação ===== */
.event-card .btn,
.event-card .btn-gold,
.event-special .btn,
.event-special .btn-gold,
.special-event-card .btn,
.special-event-card .btn-gold,
.retiro-card .btn,
.retiro-card .btn-gold {
  margin-top: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
}

.schedule-card .outline,
.schedule-card .btn,
.week-programming .outline,
.week-programming .btn,
.programacao-card .outline,
.programacao-card .btn,
.agenda-card .outline,
.agenda-card .btn {
  margin-top: 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
}
/* Ajuste final dos botões dos cards */
.event-card a,
.event-card .btn,
.event-card .btn-gold {
  margin-top: 34px !important;
  display: inline-flex !important;
  width: fit-content !important;
}

.schedule-card a,
.schedule-card .outline,
.schedule-card .btn {
  margin-top: 30px !important;
  display: inline-flex !important;
  width: fit-content !important;
}

/* garante respiro entre os itens e o botão */
.event-card p:last-of-type {
  margin-bottom: 34px !important;
}

.schedule-card .outline {
  margin-top: 28px !important;
}


/* =========================================================
   AJUSTE DEFINITIVO - RESPIRO DOS BOTÕES DOS CARDS
   Aplica fora do HERO para não mexer no banner principal.
   ========================================================= */
section:not(.hero) a.btn-gold,
main:not(.hero) a.btn-gold,
section:not(.hero) .btn-gold,
main:not(.hero) .btn-gold {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin-top: 42px !important;
  position: relative !important;
  top: 18px !important;
}

section:not(.hero) a.outline[href*="agenda"],
main:not(.hero) a.outline[href*="agenda"],
section:not(.hero) a[href*="agenda"].outline,
main:not(.hero) a[href*="agenda"].outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin-top: 38px !important;
  position: relative !important;
  top: 16px !important;
}

/* Caso o botão esteja sem as classes acima, mas dentro dos cards criados no index */
.event-card a,
.event-special a,
.special-event-card a,
.retiro-card a,
.programacao-card a[href*="agenda"],
.schedule-card a[href*="agenda"],
.week-programming a[href*="agenda"],
.agenda-card a[href*="agenda"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  margin-top: 42px !important;
  position: relative !important;
  top: 18px !important;
}

/* Garante que os botões do HERO não sejam afetados */
.hero .btn,
.hero .btn-gold,
.hero .btn-blue,
.hero-actions .btn {
  margin-top: 0 !important;
  top: auto !important;
  position: relative !important;
}
/* =====================================================
   AJUSTE FINAL — SOBE BOTÃO CADEIRA DE RODAS NO CELULAR
   (não altera desktop)
===================================================== */

@media (max-width:980px){

  /* Botão cadeira de rodas próprio */
  #accessibilityWidget.accessibility-widget{
      position: fixed !important;

      left: 12px !important;

      bottom: 240px !important;

      right: auto !important;

      top: auto !important;

      z-index: 2147483647 !important;
  }

  #accessibilityWidget .accessibility-main-btn{
      width: 52px !important;
      height: 52px !important;
      font-size: 24px !important;
  }

  /* VLibras */
  [vw-access-button],
  .vw-access-button{

      position: fixed !important;

      bottom: 300px !important;

      top: auto !important;

      z-index: 2147483647 !important;
  }

}


/* LOGO SOMENTE DO RODAPÉ */
.footer-logo-bottom{
  width:130px !important;
  height:auto !important;
  object-fit:contain;
  display:block;
  margin:0 auto 22px;
  filter:none !important;
}
@media(max-width:980px){
  .footer-logo-bottom{
    width:110px !important;
  }
}
