:root {
  --page-max-width: 430px;
  --focus-color: #1682f5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fff;
  color: #0b1021;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.botao-live-png {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
  display: inline-block;
  line-height: 0;
  border-radius: 999px;
  filter: drop-shadow(0 0 12px rgba(255, 0, 0, 0.35));
  transition: filter 180ms ease, opacity 180ms ease;
  will-change: transform;
  animation: pulsar-live 1.5s infinite;
}

.botao-live-png::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(220, 38, 38, 0.74);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.38);
  pointer-events: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.botao-live-png img {
  width: 150px;
  height: auto;
  display: block;
  transition: filter 180ms ease;
}

.botao-live-png.is-live {
  filter: drop-shadow(0 0 14px rgba(22, 163, 74, 0.55));
}

.botao-live-png.is-live::after {
  border-color: rgba(22, 163, 74, 0.88);
  box-shadow: 0 0 20px rgba(22, 163, 74, 0.52);
}

.botao-live-png.is-live img {
  filter: hue-rotate(105deg) saturate(1.35) brightness(1.04);
}

.botao-live-png.is-checking {
  opacity: 0.9;
}

.botao-live-png:hover {
  transform: scale(1.06);
}

@keyframes pulsar-live {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .botao-live-png {
    right: 15px;
    bottom: 15px;
  }

  .botao-live-png img {
    width: 100px;
  }
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

.desktop-view-toggle {
  width: 88px;
  min-height: 32px;
  position: absolute;
  top: calc(clamp(24px, 8vw, 40px) + 82px);
  right: max(12px, env(safe-area-inset-right));
  z-index: 18;
  padding: 4px 7px 4px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(238, 244, 252, 0.74), rgba(159, 173, 197, 0.42));
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    inset 0 -5px 12px rgba(92, 105, 124, 0.13),
    0 8px 20px rgba(20, 30, 52, 0.14);
  color: #172033;
  cursor: pointer;
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0.82;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-view-toggle:hover,
.desktop-view-toggle:focus-visible {
  opacity: 1;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.92),
    inset 0 -5px 12px rgba(92, 105, 124, 0.12),
    0 10px 22px rgba(20, 30, 52, 0.18);
}

.desktop-view-toggle[aria-pressed="true"] {
  opacity: 0.9;
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.78), rgba(57, 70, 92, 0.62));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.24),
    inset 0 -5px 14px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(20, 30, 52, 0.22);
  flex-direction: row-reverse;
  padding: 4px 5px 4px 7px;
}

.desktop-view-spark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.95),
    0 2px 6px rgba(15, 23, 42, 0.18);
  font-size: 0;
  line-height: 1;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.desktop-view-spark::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.62);
}

.desktop-view-toggle[aria-pressed="true"] .desktop-view-spark {
  background: #fff;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.96),
    0 2px 7px rgba(0, 0, 0, 0.24);
}

.desktop-view-toggle[aria-pressed="true"] .desktop-view-spark::before {
  background: #16a34a;
}

.desktop-view-label {
  min-width: 0;
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.page-shell {
  width: min(100%, var(--page-max-width));
  margin: 0 auto;
  position: relative;
}

.site-header {
  width: 100%;
  max-width: 420px;
  position: absolute;
  top: clamp(24px, 8vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.header-glass {
  width: 100%;
  min-height: 78px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(235, 241, 250, 0.72), rgba(164, 175, 193, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.72),
    inset 0 -10px 24px rgba(82, 96, 120, 0.18),
    0 16px 30px rgba(20, 30, 52, 0.24),
    0 2px 6px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.brand-title {
  min-width: 0;
  color: #111827;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.58);
  min-width: 66px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  color: #172033;
  background:
    linear-gradient(145deg, rgba(245, 249, 255, 0.72), rgba(169, 181, 202, 0.36));
  font-size: 15px;
  font-weight: 900;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.82),
    inset 0 -7px 14px rgba(93, 107, 132, 0.14),
    0 8px 16px rgba(20, 30, 52, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    inset 0 -7px 14px rgba(93, 107, 132, 0.12),
    0 10px 18px rgba(20, 30, 52, 0.24);
}

.menu-panel {
  width: min(320px, calc(100vw - 32px));
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  padding: 16px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(235, 241, 250, 0.78), rgba(161, 174, 195, 0.48));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.72),
    inset 0 -12px 28px rgba(82, 96, 120, 0.18),
    0 18px 42px rgba(20, 30, 52, 0.26);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.menu-label {
  margin: 0 0 12px;
  color: #263247;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-link {
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111827;
  text-decoration: none;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.46);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.menu-link:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.72);
}

.menu-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(17, 24, 39, 0.66);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.playlist-toggle {
  width: 100%;
}

.playlist-panel[hidden] {
  display: none;
}

.playlist-panel {
  width: min(380px, calc(100vw - 32px));
  max-height: min(72vh, 620px);
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  padding: 14px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(235, 241, 250, 0.9), rgba(156, 170, 193, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.74),
    inset 0 -12px 28px rgba(82, 96, 120, 0.18),
    0 18px 42px rgba(20, 30, 52, 0.3);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.playlist-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.playlist-panel-header {
  min-height: 38px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #111827;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.playlist-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: #111827;
  cursor: pointer;
  font-family: inherit;
  font-size: 24px;
  line-height: 1;
}

.playlist-list {
  max-height: calc(min(72vh, 620px) - 62px);
  padding-right: 4px;
  display: grid;
  gap: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 24, 39, 0.38) rgba(255, 255, 255, 0.24);
}

.playlist-link {
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  color: #111827;
  text-decoration: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.playlist-link:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 420px) {
  .header-glass {
    min-height: 70px;
    padding: 10px 12px;
    border-radius: 28px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .brand-title {
    font-size: 12px;
  }

  .menu-toggle {
    min-width: 60px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 13px;
  }

  .menu-panel {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 18px;
  }

  .menu-link {
    min-height: 50px;
    font-size: 13px;
  }

  .playlist-panel {
    width: 100%;
    max-height: min(70vh, 540px);
    left: 0;
    right: 0;
    border-radius: 18px;
  }

  .playlist-list {
    max-height: calc(min(70vh, 540px) - 62px);
  }
}

.site-page {
  position: relative;
  overflow-x: clip;
}

* {
  box-sizing: border-box;
}

.image-section {
  position: relative;
}

.section-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  display: none;
}

.hero-visual {
  display: none;
}

.convite-section {
  position: relative;
  z-index: 10;
  background: transparent;
}

.convite-media {
  width: 90%;
  max-width: 360px;
  margin: 0 auto;
  transform: translateX(-10px);
  position: relative;
  z-index: 11;
  background: transparent;
}

.convite-section .section-image {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  margin: 0 auto;
  background: transparent;
}

.social-buttons {
  position: absolute;
  left: 50%;
  bottom: 11%;
  z-index: 20;
  width: 100%;
  max-width: 230px;
  margin: 18px auto 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateX(-50%);
}

.social-button {
  width: 100%;
  min-height: 42px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #b99734;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  overflow: hidden;
  text-decoration: none;
  color: #0d1975;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  background: rgba(185, 151, 52, 0.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.social-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #b99734;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: #ffffff;
}

.youtube {
  border-radius: 10px;
}

.social-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.social-text strong {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #0d1975;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-text small {
  margin-top: 2px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 400;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cultos-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 34px 10px 22px;
  background: transparent;
}

.cultos-mobile-grid {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 14px;
}

.culto-card-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.info-light-card {
  width: calc(100% - 12px);
  margin: 2px auto 0;
  padding: 18px 17px;
  border-radius: 20px;
  color: #071b38;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 245, 250, 0.96)),
    radial-gradient(circle at top right, rgba(29, 93, 180, 0.08), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 28px rgba(15, 30, 55, 0.18);
}

.info-light-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.info-light-header h2 {
  margin: 0;
  color: #061a37;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.info-light-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(10, 28, 52, 0.12);
}

.info-light-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-light-icon-dark {
  color: #ffffff;
  background: #061f42;
}

.info-light-icon-dark svg {
  width: 26px;
  height: 26px;
}

.info-light-icon-accent {
  color: #e86d0d;
}

.info-light-icon-contact {
  color: #17a65c;
}

.eventos-mobile-lista {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.evento-mobile-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.evento-mobile-item + .evento-mobile-item {
  padding-left: 16px;
  border-left: 1px solid rgba(9, 29, 61, 0.09);
}

.evento-mobile-item h3 {
  margin: 0 0 3px;
  color: #071b38;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
}

.evento-mobile-item h3 strong {
  display: block;
  color: #e86d0d;
}

.evento-mobile-item p {
  margin: 0;
  color: rgba(7, 27, 56, 0.72);
  font-size: 14px;
  line-height: 1.15;
}

.contato-mobile-lista {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contato-mobile-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  text-decoration: none;
  color: #071b38;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(9, 29, 61, 0.08);
  box-shadow: 0 8px 16px rgba(15, 30, 55, 0.08);
}

.contato-mobile-texto {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.contato-mobile-texto span {
  min-width: 0;
  color: #071b38;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.12;
}

.contato-mobile-texto strong {
  color: rgba(7, 27, 56, 0.7);
  font-size: 12px;
  font-style: italic;
  font-weight: 900;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 380px) {
  .eventos-mobile-lista {
    grid-template-columns: 1fr;
  }

  .evento-mobile-item + .evento-mobile-item {
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid rgba(9, 29, 61, 0.09);
    border-left: 0;
  }

  .contato-mobile-texto {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

.cultos-card {
  width: 100%;
  max-width: 360px;
  background:
    linear-gradient(145deg, rgba(235, 241, 250, 0.76), rgba(164, 175, 193, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 32px;
  padding: 18px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.72),
    inset 0 -12px 28px rgba(82, 96, 120, 0.18),
    0 18px 36px rgba(20, 30, 52, 0.24);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.cultos-inner {
  width: 100%;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  color: #111827;
  padding: 24px 22px 26px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.58),
    inset 0 -10px 20px rgba(82, 96, 120, 0.1);
}

.cultos-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.cultos-header::before {
  content: "";
  width: 52px;
  height: 3px;
  background: #263247;
  display: block;
  flex-shrink: 0;
}

.cultos-header h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: #111827;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.cultos-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.culto-item {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: #111827;
}

.culto-item span {
  font-size: 15px;
  color: #111827;
  font-weight: 700;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

.culto-item strong {
  font-size: 15px;
  color: #263247;
  font-weight: 400;
  letter-spacing: 0.4px;
  white-space: nowrap;
  text-align: right;
}

.jovens-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 22px 18px 24px;
  color: #111827;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.62),
    inset 0 -8px 18px rgba(82, 96, 120, 0.1);
}

.jovens-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}

.jovens-header::before {
  content: "";
  width: 68px;
  height: 3px;
  background: #263247;
  display: block;
  flex-shrink: 0;
}

.jovens-header h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #111827;
  text-transform: uppercase;
  white-space: nowrap;
}

.jovens-card p {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
  text-align: left;
  color: #111827;
}

.jovens-card p strong {
  color: #d95a00;
  font-weight: 900;
}

.jovens-horario {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  color: #263247;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 480px) {
  .cultos-card {
    max-width: 310px;
    padding: 14px;
    border-radius: 24px;
  }

  .cultos-inner {
    border-radius: 22px;
    padding: 22px 18px 24px;
  }

  .cultos-header {
    gap: 8px;
    margin-bottom: 26px;
  }

  .cultos-header::before {
    width: 40px;
  }

  .cultos-header h2 {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .cultos-lista {
    gap: 15px;
    margin-bottom: 34px;
  }

  .culto-item {
    gap: 10px;
  }

  .culto-item span,
  .culto-item strong {
    font-size: 13px;
  }

  .jovens-header {
    gap: 9px;
  }

  .jovens-header::before {
    width: 44px;
  }

  .jovens-header h3 {
    font-size: 12px;
  }

  .jovens-card p {
    font-size: 15px;
  }

  .jovens-horario {
    font-size: 15px;
  }
}

.eventos-contato-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  background: transparent;
}

.mapd-card-icon,
.mapd-evento-descricao,
.mapd-social-callout {
  display: none;
}

.mapd-evento-card + .mapd-evento-card {
  margin-top: 22px;
}

.eventos-contato-card {
  width: 100%;
  max-width: 360px;
  background:
    linear-gradient(145deg, rgba(235, 241, 250, 0.76), rgba(164, 175, 193, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 32px;
  padding: 18px;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.72),
    inset 0 -12px 28px rgba(82, 96, 120, 0.18),
    0 18px 36px rgba(20, 30, 52, 0.24);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.eventos-contato-inner {
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  overflow: hidden;
  color: #111827;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.58),
    inset 0 -10px 20px rgba(82, 96, 120, 0.1);
}

.eventos-box {
  padding: 24px 28px 32px;
}

.evento-titulo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.evento-titulo span {
  width: 74px;
  height: 3px;
  background: #263247;
  display: block;
  flex-shrink: 0;
}

.evento-titulo h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  color: #111827;
  letter-spacing: 0.4px;
}

.evento-titulo strong {
  color: #d95a00;
  font-weight: 900;
}

.evento-status {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 900;
  color: #263247;
}

.evento-status:last-child {
  margin-bottom: 0;
}

.contato-box {
  padding: 8px 24px 26px;
}

.contato-box h2 {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 900;
  color: #111827;
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contato-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px 20px;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  color: #111827;
}

.contato-nome {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 900;
  color: #111827;
  line-height: 1.15;
}

.contato-numero {
  width: 104px;
  display: block;
  text-align: right;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  color: rgba(17, 24, 39, 0.68);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  color: #25d366;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.contato-item:hover .whatsapp-icon {
  transform: scale(1.15);
}

.whatsapp-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

@media (max-width: 480px) {
  .eventos-contato-card {
    max-width: 310px;
    padding: 14px;
    border-radius: 24px;
  }

  .eventos-contato-inner {
    border-radius: 22px;
  }

  .eventos-box {
    padding: 22px 22px 30px;
  }

  .evento-titulo {
    gap: 10px;
  }

  .evento-titulo span {
    width: 58px;
  }

  .evento-titulo h3 {
    font-size: 13px;
  }

  .evento-status {
    font-size: 16px;
  }

  .contato-box {
    padding: 6px 18px 24px;
  }

  .contato-box h2 {
    font-size: 18px;
  }

  .contato-item {
    grid-template-columns: minmax(0, 1fr) 92px 18px;
    column-gap: 8px;
  }

  .contato-nome {
    font-size: 12px;
  }

  .contato-numero {
    width: 92px;
    font-size: 11px;
  }

  .whatsapp-icon,
  .whatsapp-icon svg {
    width: 16px;
    height: 16px;
  }
}
.localizacao-section {
  width: calc(100% - 40px);
  max-width: 310px;
  margin: 18px auto 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1;
  transform: translateX(-7px);
}

.localizacao-section iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: 0;
}
.section-anchor {
  position: absolute;
  top: var(--anchor-top);
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 24px;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  border-radius: var(--radius, 12px);
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.hotspot:hover::after {
  background: rgba(255, 255, 255, 0.08);
}

.hotspot:focus-visible {
  outline: none;
}

.hotspot:focus-visible::after {
  background: rgba(18, 130, 245, 0.12);
  box-shadow: 0 0 0 3px var(--focus-color);
}

.mensagem-card {
  width: 100%;
  max-width: none;
  margin: 36px auto 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 32px 20px 26px;
  color: #111827;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.mensagem-topo {
  margin-bottom: 16px;
}

.mensagem-topo h2 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: #111827;
  letter-spacing: 0.2px;
  line-height: 1.1;
}

.mensagem-texto {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
  color: #111827;
}

.mensagem-texto .linha {
  display: block;
  margin-bottom: 6px;
  text-wrap: balance;
}

.mensagem-texto .linha:last-child {
  margin-bottom: 0;
}

.mensagem-rodape {
  margin-top: 24px;
  text-align: center;
}

.mensagem-rodape p {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  color: #263247;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 900px) {
  .mensagem-card {
    border-radius: 32px;
    padding: 22px 22px 18px;
  }

  .mensagem-topo h2 {
    font-size: 16px;
  }

  .mensagem-texto {
    font-size: 21px;
    line-height: 1.18;
  }

  .mensagem-rodape p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .mensagem-card {
    border-radius: 24px;
    padding: 18px 14px 16px;
  }

  .mensagem-topo {
    margin-bottom: 12px;
  }

  .mensagem-topo h2 {
    font-size: 13px;
    line-height: 1.15;
  }

  .mensagem-texto {
    font-size: 16px;
    line-height: 1.18;
  }

  .mensagem-rodape {
    margin-top: 16px;
  }

  .mensagem-rodape p {
    max-width: 260px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1.16;
  }
}

@media (max-width: 360px) {
  .mensagem-card {
    padding: 20px 12px 16px;
  }

  .mensagem-topo h2 {
    font-size: 12px;
  }

  .mensagem-texto {
    font-size: 15px;
    line-height: 1.18;
  }

  .mensagem-rodape p {
    font-size: 10px;
  }
}

.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;
}

@media (min-width: 720px) {
  body {
    background:
      radial-gradient(circle at top, rgba(141, 205, 255, 0.22), transparent 28rem),
      #fff;
  }

  .page-shell {
    box-shadow: 0 28px 70px rgba(24, 46, 95, 0.08);
  }
}

@media (min-width: 768px) {
  body {
    overflow-x: hidden;
    background:
      radial-gradient(circle at top left, rgba(141, 205, 255, 0.22), transparent 34rem),
      radial-gradient(circle at 82% 12%, rgba(185, 151, 52, 0.12), transparent 28rem),
      #f7fbff;
  }

  .page-shell {
    width: 100%;
    max-width: 760px;
    box-shadow: none;
  }

  .site-header {
    width: calc(100% - 32px);
    max-width: 720px;
  }

  .site-page {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    padding: 0 24px 56px;
  }

  .hero-section {
    grid-column: 1 / -1;
    margin: 0 -24px;
  }

  .hero-section > .section-image {
    max-width: 430px;
    margin: 0 auto;
  }

  .convite-section,
  .cultos-section,
  .eventos-contato-section {
    width: 100%;
    padding: 0;
    align-self: stretch;
  }

  .convite-media {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none;
  }

  .cultos-card,
  .eventos-contato-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .localizacao-section {
    width: 100%;
    max-width: none;
    min-height: 320px;
    margin: 0;
    transform: none;
  }

  .localizacao-section iframe {
    min-height: 320px;
  }

  .mensagem-card {
    grid-column: 1 / -1;
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  :root {
    --page-max-width: 1200px;
  }

  .page-shell {
    max-width: none;
  }

  .site-header {
    width: min(calc(100% - 48px), 1200px);
    max-width: 1200px;
    position: fixed;
    top: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: none;
  }

  .header-glass,
  .menu-panel,
  .playlist-panel {
    pointer-events: auto;
  }

  .header-glass {
    width: auto;
    min-width: 360px;
    min-height: 72px;
    padding: 12px 18px;
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .brand-title {
    max-width: 260px;
    font-size: 15px;
  }

  .menu-toggle {
    display: none;
  }

  .menu-panel {
    position: static;
    width: auto;
    max-width: none;
    margin-left: auto;
    padding: 10px;
    border-radius: 999px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .menu-label {
    display: none;
  }

  .menu-list {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .menu-link {
    min-height: 48px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .menu-badge {
    display: none;
  }

  .playlist-panel {
    width: min(420px, calc(100vw - 48px));
    max-height: min(74vh, 640px);
    top: calc(100% + 12px);
    right: 0;
  }

  .playlist-list {
    max-height: calc(min(74vh, 640px) - 62px);
  }

  .site-page {
    width: min(100%, 1200px);
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 32px;
    padding: 0 24px 86px;
    overflow: visible;
  }

  .desktop-view-toggle {
    top: 112px;
    right: max(24px, calc((100vw - 1200px) / 2 + 24px));
  }

  .hero-section {
    grid-column: 1 / -1;
    width: auto;
    min-height: 700px;
    margin: 0 calc(50% - 50vw) 10px;
    padding:
      120px max(48px, calc((100vw - 1200px) / 2 + 24px))
      0;
    display: grid;
    grid-template-columns: minmax(390px, 560px) minmax(360px, 520px);
    align-items: end;
    justify-content: center;
    gap: clamp(34px, 5vw, 72px);
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.44) 0%, rgba(255, 255, 255, 0.18) 46%, rgba(255, 255, 255, 0.02) 100%),
      image-set(
        url("assets/images/hero-background-desktop-1440.webp") 1x,
        url("assets/images/hero-background-desktop-2560.webp") 2x
      );
    background-size: cover;
    background-position: center center;
  }

  .hero-section::before,
  .hero-section::after {
    display: none;
  }

  .hero-section::before {
    width: 34rem;
    height: 34rem;
    right: max(32px, calc((100vw - 1200px) / 2 + 46px));
    top: 138px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.9),
      0 34px 80px rgba(24, 46, 95, 0.14);
  }

  .hero-section::after {
    width: 18rem;
    height: 18rem;
    left: max(28px, calc((100vw - 1200px) / 2 - 72px));
    bottom: 56px;
    background: rgba(255, 255, 255, 0.24);
    filter: blur(2px);
  }

  .hero-copy {
    display: flex;
    min-width: 0;
    max-width: 600px;
    position: relative;
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    color: #142033;
    align-self: center;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    max-width: 560px;
    margin: 0;
    color: #05080f;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-style: normal;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.42);
  }

  .hero-verse {
    max-width: 620px;
    margin: 12px 0 0;
    color: #05080f;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(32px, 3.25vw, 48px);
    font-style: normal;
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.42);
  }

  .hero-mobile-image {
    display: none;
  }

  .hero-visual {
    min-height: 580px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
    justify-self: center;
  }

  .hero-pastor-image {
    width: min(40vw, 540px);
    max-width: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 30px rgba(16, 24, 40, 0.24));
  }

  .hero-section > .hotspot {
    display: none;
  }

  .convite-section {
    grid-column: 1 / span 4;
    grid-row: span 2;
  }

  .cultos-section {
    grid-column: 5 / span 8;
  }

  .eventos-contato-section {
    grid-column: 5 / span 8;
    margin-top: 2px;
  }

  .convite-section,
  .cultos-section,
  .eventos-contato-section {
    align-items: flex-start;
  }

  .cultos-section,
  .eventos-contato-section {
    align-self: start;
    justify-content: flex-start;
    padding: 4px 0 0;
  }

  .cultos-card,
  .eventos-contato-card {
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .cultos-inner,
  .eventos-contato-inner,
  .jovens-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .cultos-inner {
    padding: 0;
    display: grid;
    grid-template-columns: minmax(310px, 1.05fr) minmax(330px, 0.95fr);
    column-gap: 42px;
    align-items: stretch;
  }

  .cultos-header,
  .jovens-header,
  .evento-titulo {
    justify-content: flex-start;
  }

  .cultos-header {
    grid-column: 1;
    margin-bottom: 28px;
  }

  .cultos-header::before {
    width: 76px;
    height: 3px;
  }

  .cultos-header h2,
  .jovens-header h3,
  .evento-titulo h3 {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 1.1px;
    color: #142033;
    text-transform: uppercase;
  }

  .cultos-lista {
    grid-column: 1;
    gap: 0;
    margin-bottom: 0;
  }

  .culto-item {
    min-height: 58px;
    padding: 14px 0;
    border-bottom: 2px solid rgba(38, 50, 71, 0.14);
  }

  .culto-item span,
  .culto-item strong {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 22px;
    font-style: normal;
    line-height: 1.1;
  }

  .culto-item strong {
    color: #1f2a44;
    font-weight: 900;
  }

  .jovens-card {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 100%;
    padding: 0 0 0 40px;
    text-align: left;
    border-left: 2px solid rgba(38, 50, 71, 0.18);
  }

  .jovens-header {
    margin-bottom: 24px;
  }

  .jovens-header::before,
  .evento-titulo span {
    width: 76px;
    height: 3px;
  }

  .jovens-card p {
    max-width: 420px;
    margin-bottom: 30px;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 28px;
    font-style: normal;
    line-height: 1.02;
    color: #142033;
  }

  .jovens-card p strong,
  .evento-titulo strong {
    color: #8a3b12;
  }

  .jovens-horario {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-style: normal;
    text-align: left;
    font-size: 28px;
    color: #1f2a44;
  }

  .eventos-contato-inner {
    display: block;
    overflow: visible;
  }

  .eventos-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 18px;
    padding: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .evento-titulo {
    min-height: auto;
    align-items: center;
    margin-bottom: 0;
  }

  .eventos-box .evento-titulo {
    padding-top: 0;
    border-top: 0;
  }

  .eventos-box .evento-titulo span {
    display: block;
    width: 76px;
    height: 3px;
    background: #263247;
    flex-shrink: 0;
  }

  .eventos-box .evento-titulo h3 {
    max-width: none;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1.1px;
  }

  .eventos-box .evento-titulo:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .eventos-box .evento-status:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .eventos-box .evento-titulo:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .eventos-box .evento-status:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .evento-status {
    margin-bottom: 0;
    padding-top: 16px;
    border-top: 2px solid rgba(38, 50, 71, 0.14);
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.05;
    color: #1f2a44;
  }

  .contato-box {
    display: none;
  }

  .contato-box h2 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .contato-lista {
    gap: 16px;
  }

  .contato-item {
    grid-template-columns: minmax(0, 1fr) auto 20px;
    column-gap: 16px;
    padding: 4px 0;
  }

  .contato-nome {
    font-size: 15px;
  }

  .contato-numero {
    font-size: 14px;
  }

  .contato-numero {
    width: auto;
  }

  .mapd-programacao {
    grid-column: 1 / -1;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 52px 24px 44px;
    background: #f3f7fb;
    overflow: hidden;
  }

  .mapd-programacao-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
  }

  .mapd-convite-phone {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 0;
  }

  .mapd-programacao .cultos-section,
  .mapd-programacao .eventos-contato-section {
    grid-column: 2;
    width: 100%;
    display: block;
    padding: 0;
    margin: 0;
  }

  .mapd-programacao .cultos-section {
    grid-row: 1;
  }

  .mapd-programacao .eventos-contato-section {
    grid-row: 2;
    margin-top: 22px;
  }

  .mapd-programacao .cultos-card,
  .mapd-programacao .eventos-contato-card {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .mapd-programacao .cultos-inner,
  .mapd-programacao .eventos-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .mapd-programacao .eventos-contato-inner {
    display: block;
  }

  .mapd-info-card {
    min-height: 264px;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(224, 234, 246, 0.5));
    border: 1px solid rgba(112, 132, 160, 0.25);
    border-radius: 24px;
    box-shadow:
      inset 0 1px 2px rgba(255, 255, 255, 0.82),
      0 18px 34px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(16px) saturate(125%);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
  }

  .mapd-programacao .mapd-evento-card {
    margin-top: 0;
  }

  .mapd-programacao .jovens-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 264px;
    padding: 30px;
    border-left: 1px solid rgba(112, 132, 160, 0.25);
    text-align: left;
  }

  .mapd-programacao .mapd-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 34px;
    margin-bottom: 24px;
  }

  .mapd-programacao .mapd-card-title::before,
  .mapd-programacao .mapd-card-title span {
    width: 34px;
    height: 2px;
    display: inline-block;
    flex-shrink: 0;
    background: #1d5fd6;
  }

  .mapd-programacao .mapd-card-title::before {
    content: "";
  }

  .mapd-programacao .mapd-card-title span {
    display: none;
  }

  .mapd-programacao .mapd-card-title h2,
  .mapd-programacao .mapd-card-title h3 {
    margin: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.18;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #142033;
  }

  .mapd-programacao .mapd-evento-card .mapd-card-title h3 {
    font-size: 11px;
    letter-spacing: 0.075em;
  }

  .mapd-programacao .mapd-card-title h3 strong,
  .mapd-programacao .mapd-jovens-card h2 strong,
  .mapd-programacao .mapd-jovens-card p strong {
    color: #7a3a18;
  }

  .mapd-cultos-card .cultos-lista {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    margin: 0;
  }

  .mapd-programacao .mapd-horario {
    min-height: auto;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  }

  .mapd-programacao .mapd-horario:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .mapd-programacao .mapd-horario span,
  .mapd-programacao .mapd-horario strong {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-style: normal;
    line-height: 1.15;
    color: #142033;
  }

  .mapd-programacao .mapd-horario span {
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mapd-programacao .mapd-horario strong {
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
    color: #1f4ea8;
  }

  .mapd-programacao .mapd-jovens-card p {
    margin: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(22px, 1.9vw, 28px);
    font-style: normal;
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
    color: #142033;
  }

  .mapd-programacao .mapd-jovens-card .jovens-horario {
    margin: auto 0 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: #1f4ea8;
  }

  .mapd-programacao .mapd-em-breve {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 1.15;
    color: #142033;
  }

  .mapd-programacao .mapd-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #1d5fd6;
    background: rgba(29, 95, 214, 0.11);
  }

  .mapd-programacao .mapd-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mapd-programacao .mapd-jovens-content,
  .mapd-programacao .mapd-evento-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .mapd-programacao .mapd-jovens-content {
    align-items: center;
    margin: 0;
  }

  .mapd-programacao .mapd-jovens-content p {
    margin-top: 0;
  }

  .mapd-programacao .mapd-evento-body {
    justify-content: flex-start;
    text-align: left;
  }

  .mapd-programacao .mapd-evento-descricao {
    display: block;
    max-width: 240px;
    margin: 12px 0 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 13px;
    line-height: 1.45;
    color: #263247;
  }

  .mapd-social-callout {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
    color: #263247;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 500;
  }

  .mapd-social-callout .mapd-card-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .mapd-social-callout .mapd-card-icon svg {
    width: 19px;
    height: 19px;
  }

  .localizacao-section {
    grid-column: 1 / span 5;
    align-self: stretch;
    border-radius: 28px;
  }

  .localizacao-section iframe {
    height: 100%;
    min-height: 380px;
  }

  .mensagem-card {
    grid-column: 1 / -1;
    align-self: auto;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: none;
    margin: 12px 0 0;
    padding: 42px 0 46px;
    border-top: 1px solid rgba(38, 50, 71, 0.12);
    border-bottom: 1px solid rgba(38, 50, 71, 0.12);
  }

  .mensagem-topo h2 {
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    color: #263247;
  }

  .mensagem-texto {
    max-width: 100%;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(24px, 2.2vw, 30px);
    font-style: normal;
    font-weight: 800;
    line-height: 1.22;
    color: #142033;
  }

  .mensagem-rodape p {
    max-width: none;
    margin: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: clamp(12px, 0.95vw, 14px);
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .site-header,
  .site-page {
    max-width: 1240px;
  }

  .site-page {
    width: min(100%, 1240px);
  }

  .hero-section {
    min-height: 720px;
    padding:
      112px max(56px, calc((100vw - 1240px) / 2 + 24px))
      0;
    grid-template-columns: minmax(480px, 620px) minmax(400px, 520px);
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-pastor-image {
    width: min(38vw, 560px);
  }
}

.mapd-footer {
  width: 100%;
  background: #eef4f8;
  color: #111827;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-family: inherit;
}

.mapd-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.8fr) minmax(220px, 1fr);
  gap: 42px;
}

.mapd-footer-brand img {
  width: 58px;
  height: auto;
  margin-bottom: 16px;
}

.mapd-footer-brand h3,
.mapd-footer-column h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mapd-footer-brand p,
.mapd-footer-column p,
.mapd-footer-column a {
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 1.55;
  color: #111827;
}

.mapd-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mapd-footer-column a {
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.mapd-footer-column a:hover {
  color: #1d4ed8;
  transform: translateX(3px);
}


.mapd-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 24px 34px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.mapd-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #111827;
}

@media (max-width: 1024px) {
  .mapd-footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mapd-footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    padding: 26px 18px 22px;
  }

  .mapd-footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    text-align: left;
  }

  .mapd-footer-brand img {
    width: 42px;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .mapd-footer-brand h3,
  .mapd-footer-column h4 {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
  }

  .mapd-footer-brand p {
    margin-bottom: 0;
  }

  .mapd-footer-column {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  .mapd-footer-brand p,
  .mapd-footer-column p,
  .mapd-footer-column a {
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.35;
  }

  .mapd-footer-bottom {
    padding: 16px 18px 22px;
    text-align: left;
  }

  .mapd-footer-bottom p {
    font-size: 12px;
    line-height: 1.35;
  }
}
