/* ============================================================
 * PÁGINAS — Seções específicas (hero, banners, layouts)
 * ============================================================ */

/* ------------------------------------------------------------
 * 1. HERO (PÁGINA INICIAL)
 * ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-h) + 40px) 0 80px;
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero {
    background-attachment: fixed;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 50% 12%, rgba(197, 168, 128, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(5, 26, 21, 0.82) 0%, rgba(13, 59, 46, 0.72) 50%, rgba(5, 26, 21, 0.94) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding-inline: 24px;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 26px;
  animation: fadeInUp 0.9s ease both;
}

.hero__tagline::before,
.hero__tagline::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 26px;
  animation: fadeInUp 1.1s ease both;
}

.hero__desc {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 300;
  color: var(--text-on-dark);
  max-width: 660px;
  margin: 0 auto 42px;
  animation: fadeInUp 1.3s ease both;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.5s ease both;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  opacity: 0.85;
  display: inline-flex;
}

.hero__scroll .icon {
  width: 26px;
  height: 26px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__scroll {
    animation: hero-bounce 2.2s ease-in-out infinite;
  }
}

@keyframes hero-bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__tagline,
  .hero__title,
  .hero__desc,
  .hero__actions {
    animation: none;
  }
}

/* ------------------------------------------------------------
 * 2. BANNER DAS PÁGINAS INTERNAS
 * ------------------------------------------------------------ */
.page-banner {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 130% at 80% -10%, rgba(197, 168, 128, 0.16), transparent 55%),
    linear-gradient(165deg, var(--primary) 0%, var(--primary-darker) 100%);
  color: var(--text-light);
  text-align: center;
  padding: clamp(56px, 8vw, 86px) 0;
  border-bottom: 3px solid var(--accent);
}

.page-banner .kicker {
  color: var(--accent);
}

.page-banner h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 14px;
}

.page-banner p {
  color: var(--text-on-dark-soft);
  font-size: var(--fs-md);
  max-width: 640px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
 * 3. SEÇÃO "QUEM SOMOS" (texto + foto emoldurada)
 * ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 18px;
}

.about-copy .btn {
  margin-top: 10px;
}

.about-media {
  position: relative;
}

/* Moldura clássica deslocada em dourado */
.about-media::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.about-media__img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.about-media__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s var(--ease);
}

.about-media:hover .about-media__img img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
    max-width: 560px;
  }
}

/* ------------------------------------------------------------
 * 4. VERSÍCULO EM DESTAQUE
 * ------------------------------------------------------------ */
.verse {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 90% at 50% 0%, rgba(197, 168, 128, 0.14), transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: clamp(64px, 8vw, 96px) 0;
  text-align: center;
  border-block: 3px solid var(--accent);
}

.verse__container {
  max-width: 820px;
}

.verse__quote {
  font-family: var(--font-display);
  font-size: 5.4rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.45;
  display: block;
  margin-bottom: 16px;
}

.verse__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 22px;
  color: var(--text-light);
}

.verse__ref {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ------------------------------------------------------------
 * 5. BLOCO DE VÍDEO (TRANSMISSÕES)
 * ------------------------------------------------------------ */
.sermons-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}

.video-main {
  min-width: 0;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--primary-darker);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cartão-convite exibido quando não há vídeo configurado */
.video-cta {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background:
    radial-gradient(70% 90% at 50% 20%, rgba(197, 168, 128, 0.2), transparent 60%),
    linear-gradient(165deg, var(--primary-light) 0%, var(--primary-darker) 90%);
  border: 1px solid var(--border-on-dark);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-cta:hover {
  transform: translateY(-4px);
}

.video-cta__play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 0 0 12px rgba(197, 168, 128, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-cta:hover .video-cta__play {
  transform: scale(1.08);
  box-shadow: 0 0 0 18px rgba(197, 168, 128, 0.12);
}

.video-cta__play .icon {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-cta__label {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700;
}

.video-cta__sub {
  font-size: var(--fs-sm);
  color: var(--text-on-dark-soft);
}

/* Fachada do vídeo: miniatura leve; o player só carrega no clique */
.video-facade {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: var(--primary-darker);
  cursor: pointer;
}

.video-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.video-facade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 26, 21, 0.08) 0%, rgba(5, 26, 21, 0) 38%, rgba(5, 26, 21, 0.5) 100%);
}

.video-facade:hover .video-facade__thumb,
.video-facade:focus-visible .video-facade__thumb {
  transform: scale(1.05);
}

.video-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-darker);
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(197, 168, 128, 0.22), var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-facade__play .icon {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.video-facade:hover .video-facade__play,
.video-facade:focus-visible .video-facade__play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 18px rgba(197, 168, 128, 0.16), var(--shadow-lg);
}

.video-facade__hint {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-light);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.video-side h2 {
  font-size: var(--fs-h2);
}

.video-side p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.video-side__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .sermons-layout {
    grid-template-columns: 1fr;
  }
}

/* Faixa "Acompanhe ao Vivo" */
.live-band .icon-slot .icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  margin: 0 auto 20px;
}

.live-band p {
  color: var(--text-on-dark-soft);
  font-size: var(--fs-md);
  max-width: 760px;
  margin-inline: auto;
}

/* ------------------------------------------------------------
 * 6. FAIXA DE CHAMADA (CTA CONTRIBUIÇÕES)
 * ------------------------------------------------------------ */
.cta-band {
  text-align: center;
}

.cta-band__inner {
  max-width: 720px;
}

.cta-band h2 {
  font-size: var(--fs-h2);
  margin-bottom: 18px;
}

.cta-band p {
  color: var(--text-on-dark-soft);
  font-size: var(--fs-md);
  margin-bottom: 34px;
}

.cta-band__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
 * 7. PILARES DE FÉ (QUEM SOMOS)
 * ------------------------------------------------------------ */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.pillar-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pillar-card__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card__icon .icon {
  width: 26px;
  height: 26px;
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ------------------------------------------------------------
 * 8. SOCIEDADES INTERNAS (LINHAS ALTERNADAS)
 * ------------------------------------------------------------ */
.zigzag {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.zigzag--rev .zigzag__media {
  order: -1;
}

.zigzag__copy p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 26px;
}

.zigzag__media {
  position: relative;
}

.zigzag__media::before {
  content: "";
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  opacity: 0.55;
  pointer-events: none;
}

.zigzag--rev .zigzag__media::before {
  inset: -14px 14px 14px -14px;
}

.zigzag__media img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.leader-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--accent-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
}

.leader-chip__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.leader-chip__name {
  font-weight: 700;
  color: var(--primary-dark);
}

@media (max-width: 900px) {
  .zigzag {
    grid-template-columns: 1fr;
  }

  .zigzag__media,
  .zigzag--rev .zigzag__media {
    order: -1;
    max-width: 580px;
  }
}

/* ------------------------------------------------------------
 * 9. CONTRIBUIÇÕES
 * ------------------------------------------------------------ */
.donation-card {
  max-width: 940px;
  margin: 0 auto;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 5vw, 54px);
}

.donation-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

.donation-info h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.donation-info > p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 26px;
}

.bank-list {
  background-color: var(--surface-soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: var(--fs-sm);
}

.bank-list strong {
  color: var(--primary-dark);
}

.pix-box {
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius-md);
  background-color: var(--surface-soft);
  padding: 24px;
  text-align: center;
}

.pix-box__title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.pix-box__title .icon {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
}

.pix-key-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px 10px 18px;
}

.pix-key {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  word-break: break-all;
  user-select: all;
  text-align: left;
}

.qr-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.qr-frame {
  width: 210px;
  max-width: 100%;
  aspect-ratio: 1;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-caption {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-align: center;
  max-width: 230px;
}

@media (max-width: 860px) {
  .donation-layout {
    grid-template-columns: 1fr;
  }
}

/* Bloco "Princípios de Mordomia" */
.stewardship {
  max-width: 800px;
}

.stewardship p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 16px;
}

.stewardship blockquote {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--primary);
  text-align: center;
  line-height: 1.6;
}

.stewardship blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* ------------------------------------------------------------
 * 10. CONTATO
 * ------------------------------------------------------------ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 48px);
  align-items: start;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* FAQ de Oração (Accordion) */
.prayer-faq {
  border-top: 1px solid var(--border);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item.is-active {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__question:hover,
.faq-item__question:focus-visible {
  color: var(--accent-deep);
}

.faq-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  transition: transform var(--transition);
}

.faq-item__icon .icon {
  width: 16px;
  height: 16px;
}

.faq-item.is-active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s var(--ease), opacity 0.35s ease;
}

.faq-item.is-active .faq-item__answer {
  max-height: 300px; /* Valor suficiente para acomodar a resposta */
  opacity: 1;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
}

.faq-item__answer p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ------------------------------------------------------------
 * 11. PÁGINA 404
 * ------------------------------------------------------------ */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: 80px;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  opacity: 0.14;
  margin-bottom: -30px;
}

.error-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 14px;
}

.error-page blockquote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-deep);
  margin: 26px auto 34px;
  max-width: 540px;
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ------------------------------------------------------------
 * 12. SOCIEDADES — VISÃO GERAL (HUB)
 * ------------------------------------------------------------ */
.societies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.society-card {
  display: flex;
  flex-direction: column;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.society-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.society-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.society-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s var(--ease);
}

.society-card:hover .society-card__media img {
  transform: scale(1.06);
}

.society-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(8, 37, 30, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-on-dark);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.society-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  flex: 1;
}

.society-card__title {
  font-size: 1.3rem;
}

.society-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  flex: 1;
}

.society-card__leader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.society-card__leader .icon {
  width: 14px;
  height: 14px;
}

/* ------------------------------------------------------------
 * 13. SOCIEDADES — PÁGINA INDIVIDUAL
 * ------------------------------------------------------------ */
.page-banner__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--accent);
}

.page-banner__back .icon {
  width: 15px;
  height: 15px;
}

.page-banner__back:hover {
  color: var(--accent-light);
}

.society-about p {
  color: var(--text-muted);
  font-size: 1.03rem;
  margin-bottom: 16px;
}

.society-facts {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Destaque da liderança (presidente/coordenador da sociedade) */
.leader-spotlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background:
    linear-gradient(120deg, rgba(197, 168, 128, 0.12), transparent 62%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.leader-spotlight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.leader-spotlight__avatar {
  width: 60px;
  height: 60px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  background: radial-gradient(circle at 30% 28%, var(--primary-light), var(--primary-darker));
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.12);
}

.leader-spotlight__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.leader-spotlight__role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.leader-spotlight__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

/* Eventos com data: local e estado "realizado" */
.event-card__local {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.event-card__local .icon {
  width: 14px;
  height: 14px;
}

.event-card__local--link {
  text-decoration: none;
  transition: color var(--transition);
}

.event-card__local--link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Evita que a data fique por baixo do selo (Próximo/Realizado) */
.event-card--next .event-card__day,
.event-card--past .event-card__day {
  padding-right: 96px;
}

.event-card--past {
  opacity: 0.7;
  border-style: dashed;
}

.event-card--past:hover {
  opacity: 0.95;
}

.event-card__badge--muted {
  background: var(--border);
  color: var(--text-muted);
}

.event-card__badge--muted::before {
  display: none;
}

/* Boletim ainda sem arquivo PDF disponível */
.bulletin-card__btn.is-unavailable {
  background-color: var(--border);
  color: var(--text-soft);
  cursor: not-allowed;
}

.bulletin-card__btn.is-unavailable:hover {
  background-color: var(--border);
  color: var(--text-soft);
  transform: none;
}

/* ------------------------------------------------------------
 * 14. AJUSTES RESPONSIVOS GERAIS
 * ------------------------------------------------------------ */
@media (max-width: 600px) {
  .hero__actions .btn,
  .video-side__actions .btn {
    width: 100%;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box {
    width: 100%;
  }

  .bulletin-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .bulletin-card__btn {
    align-self: flex-end;
    margin-top: -8px;
  }
}

/* ------------------------------------------------------------
 * 15. PÁGINA DOUTRINA (O QUE CREMOS)
 * ------------------------------------------------------------ */

/* Grid para os 5 Solas */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

/* Cartão do Pilar (Sola) */
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--primary);
  margin-bottom: 20px;
}

.pillar-card__icon .icon {
  width: 24px;
  height: 24px;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.pillar-card__sub {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pillar-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Lista de Documentos Confessionais (Westminster) */
.doctrine-documents-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.doctrine-document-item {
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.doctrine-document-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.doctrine-document-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.doctrine-document-item__icon .icon {
  width: 18px;
  height: 18px;
}

.doctrine-document-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0;
}

.doctrine-document-item p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ------------------------------------------------------------
 * 16. PÁGINA CARTÃO DE VISITA (QR CODE)
 * ------------------------------------------------------------ */
body[data-page="cartao"] {
  background-color: var(--primary-darker);
}

.card-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(100% 100% at 50% 0%, rgba(197, 168, 128, 0.15) 0%, transparent 80%),
    linear-gradient(170deg, var(--primary) 0%, var(--primary-darker) 100%);
  color: var(--text-on-dark);
  position: relative;
  overflow-x: hidden;
}

.card-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 36px;
  animation: fadeInUp 0.8s var(--ease) both;
}

/* Respeita quem prefere menos animações (padrão do site) */
@media (prefers-reduced-motion: reduce) {
  .card-container {
    animation: none;
  }
}

.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.card-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
  box-shadow: 0 0 24px rgba(197, 168, 128, 0.35);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.card-logo:hover {
  background-color: var(--accent);
  color: var(--primary-darker);
  box-shadow: 0 0 32px rgba(197, 168, 128, 0.55);
}

.card-logo .logo__img-normal,
.card-logo .logo__img-hover {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex: none;
  padding: 4px;
}

.card-logo .logo__img-hover {
  display: none;
}

.card-logo:hover .logo__img-normal {
  display: none;
}

.card-logo:hover .logo__img-hover {
  display: block;
}

.card-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}

.card-welcome {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.card-church-name {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 3.5vw, 1.05rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  line-height: 1.5;
  margin-top: 4px;
}

.card-subtitle {
  font-size: var(--fs-sm);
  color: var(--text-on-dark-soft);
  max-width: 340px;
  line-height: 1.6;
  margin: 0 auto;
}

.card-nav {
  width: 100%;
}

.card-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.card-nav__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  color: var(--text-light);
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card-nav__btn:hover,
.card-nav__btn:focus-visible {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 10px 24px -6px rgba(197, 168, 128, 0.3);
}

.card-nav__btn:active {
  transform: translateY(-1px);
}

.card-nav__btn-text {
  flex-grow: 1;
  text-align: center;
}

.card-nav__btn .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex: none;
}

.card-nav__btn .icon--chevron {
  opacity: 0.5;
  transition: transform var(--transition), opacity var(--transition);
}

.card-nav__btn:hover .icon--chevron,
.card-nav__btn:focus-visible .icon--chevron {
  opacity: 1;
  transform: translateX(4px);
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.card-footer__title {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
}

.card-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.card-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background-color: rgba(197, 168, 128, 0.06);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--fs-sm);
  flex: 1;
  max-width: 180px;
  transition: background-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card-social-btn:hover,
.card-social-btn:focus-visible {
  background-color: var(--accent);
  color: var(--primary-darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -6px rgba(197, 168, 128, 0.45);
}

.card-social-btn:active {
  transform: translateY(-1px);
}

.card-social-btn .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.card-footer__bottom {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0.6;
}

.card-footer__motto {
  font-size: var(--fs-xs);
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--accent-light);
}

.card-footer__sigla {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
