/* Hero — abaixo da navbar sticky (sem sobreposição) */
.hero-section {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
  scroll-margin-top: var(--header-height, 90px);
  overflow: hidden;
  background: var(--black);
}
.hero-section__inner {
  position: relative;
  width: 100%;
}
.hero-swiper {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  height: calc(100dvh - var(--header-height, 90px));
  min-height: clamp(320px, 65vh, 480px);
  max-height: 900px;
  overflow: hidden;
}
.hero-swiper.swiper {
  margin-top: 0;
}
.hero-swiper .swiper-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}
.hero-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.hero-swiper:not(.swiper-initialized) .swiper-wrapper > .swiper-slide {
  grid-area: 1 / 1;
  min-height: 100%;
  width: 100%;
}
.hero-swiper:not(.swiper-initialized) .swiper-wrapper > .swiper-slide:not(:first-child) {
  visibility: hidden;
  pointer-events: none;
}
.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
}
.hero-swiper.swiper-fade .swiper-slide-active,
.hero-swiper.swiper-fade .swiper-slide-duplicate-active {
  z-index: 1;
}
.hero-swiper__chrome {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}
.hero-swiper__chrome .hero-pagination,
.hero-swiper__chrome .hero-prev,
.hero-swiper__chrome .hero-next {
  pointer-events: auto;
}
.hero-swiper .hero-pagination {
  bottom: clamp(1rem, 3vh, 1.75rem);
}
.hero-swiper .hero-prev,
.hero-swiper .hero-next {
  top: 50%;
  margin-top: 0;
  transform: translateY(-50%);
  z-index: 12;
}
.hero-swiper .hero-prev { left: clamp(0.5rem, 2vw, 1.25rem); }
.hero-swiper .hero-next { right: clamp(0.5rem, 2vw, 1.25rem); }
.hero-swiper .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-swiper .hero-loading-toast {
  position: absolute;
  inset: 0;
}
.hero-overlay {
  background: linear-gradient(120deg, rgba(10, 10, 10, 0.88) 0%, rgba(28, 28, 28, 0.75) 50%, rgba(10, 10, 10, 0.65) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.5), transparent 40%);
  pointer-events: none;
}
.hero-slide--paisagem {
  background-position: center center;
  background-size: cover;
}
.hero-slide--paisagem:not(.hero-slide--ready) .hero-overlay--paisagem,
.hero-slide--paisagem:not(.hero-slide--ready) .hero-content {
  opacity: 0;
}
.hero-slide--paisagem.hero-slide--ready .hero-overlay--paisagem,
.hero-slide--paisagem.hero-slide--ready .hero-content {
  opacity: 1;
  transition: opacity 0.6s ease;
}

/* Toast de carregamento — centro do hero */
.hero-loading-toast {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.35);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.hero-loading-toast.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-loading-toast__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 2.25rem;
  min-width: min(280px, 88vw);
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-soft);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), var(--shadow-gold);
  backdrop-filter: blur(8px);
}
.hero-loading-toast__logo {
  width: min(130px, 32vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.3));
}
.hero-loading-toast__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-loading-spinner {
  width: 2.25rem;
  height: 2.25rem;
  border: 2px solid rgba(201, 168, 76, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: heroSpinner 0.85s linear infinite;
}
@keyframes heroSpinner {
  to { transform: rotate(360deg); }
}
.hero-overlay--paisagem {
  background: linear-gradient(
    120deg,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(28, 28, 28, 0.45) 40%,
    rgba(10, 10, 10, 0.7) 100%
  );
}
.hero-overlay--paisagem::after {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(201, 168, 76, 0.12) 35%,
    transparent 65%
  );
}
.hero-slide--brand {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slide--culto {
  background-position: center 42%;
}
@media (max-width: 767px) {
  .hero-slide--culto {
    background-position: 65% center;
  }
}
.hero-overlay--brand {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.35) 0%,
    transparent 35%,
    transparent 55%,
    rgba(10, 10, 10, 0.55) 100%
  );
}
.hero-overlay--brand::after {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.25) 28%,
    transparent 55%
  );
}
.hero-swiper.swiper-fade .swiper-slide:not(.swiper-slide-active) .hero-btns,
.hero-swiper.swiper-fade .swiper-slide:not(.swiper-slide-active) .hero-content {
  visibility: hidden;
  pointer-events: none;
}
.hero-content--brand {
  max-width: none;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: clamp(2rem, 6vh, 4rem);
  text-align: center;
}
.hero-content--brand .hero-btns {
  justify-content: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0;
  color: var(--white);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.85rem;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.hero-content p { font-size: 1.1rem; opacity: 0.95; margin-bottom: 1.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-pagination .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}
.hero-prev, .hero-next { color: var(--white); }
.hero-prev::after, .hero-next::after { font-size: 1.5rem; }

/* Highlight bar */
.highlight-bar {
  background: var(--black-soft);
  padding: 2.5rem 0;
  margin-top: -1px;
  border-top: 1px solid var(--border-gold);
  position: relative;
  z-index: 10;
}
.highlight-bar .section-label { color: var(--gold); }
.highlight-bar h3, .highlight-bar h4 { color: var(--white); }
.highlight-bar p { color: var(--text-muted-on-dark); }
.event-highlight, .sermon-highlight {
  background: var(--charcoal);
  padding: 1.75rem;
  height: 100%;
  border: 1px solid var(--border-gold);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-soft);
}
.event-highlight-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-info h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
.event-time { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.event-pastor, .event-address { font-size: 0.9rem; color: var(--text-muted); margin: 0.25rem 0; }
.event-whatsapp {
  margin: 0.35rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.event-whatsapp .bi-whatsapp {
  color: var(--whatsapp);
  font-size: 1.05rem;
}
.event-whatsapp a {
  color: var(--whatsapp-dark);
  font-weight: 600;
  text-decoration: none;
}
.event-whatsapp a:hover {
  color: var(--whatsapp);
  text-decoration: underline;
}
.highlight-bar .event-whatsapp .bi-whatsapp { color: var(--whatsapp); }
.highlight-bar .event-whatsapp a { color: #9fe8b8; }
.highlight-bar .event-whatsapp a:hover { color: #c8f5d8; }
.event-date {
  text-align: center;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 0.75rem 1rem;
  min-width: 70px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-date-badge), var(--shadow-date-badge-gold);
}
.event-date .day { display: block; font-size: 2rem; font-family: var(--font-display); font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.75rem; text-transform: uppercase; }
.sermon-highlight-body {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.75rem;
}
.sermon-thumb { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.sermon-thumb-btn {
  position: relative;
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  line-height: 0;
}
.sermon-thumb-btn .sermon-thumb { display: block; border-radius: 4px; }
.sermon-live-badge {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  padding: 0.1rem 0.35rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: #c00;
  border-radius: 3px;
  line-height: 1.2;
  white-space: nowrap;
}
.sermon-highlight h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.sermon-highlight h4 a { color: inherit; text-decoration: none; }
.sermon-highlight h4 a:hover { color: var(--gold, #c9a227); }

/* Cause cards — Departamentos */
.causes-swiper {
  padding-bottom: 2.75rem;
}

.causes-swiper .swiper-wrapper {
  align-items: stretch;
}

.causes-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.cause-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-soft);
  overflow: hidden;
  isolation: isolate;
}

.cause-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 2;
}

.cause-card__media {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.cause-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.32) 100%);
  pointer-events: none;
}

.cause-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.cause-card img.cause-img--infantil {
  object-position: center 40%;
}

.cause-card:hover img {
  transform: scale(1.05);
}

.cause-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.35rem 1.5rem;
}

.cause-body__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: var(--black);
  line-height: 1.3;
}

.cause-body__text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.progress-wrap {
  margin-top: auto;
}

.cause-body .progress {
  height: 6px;
  background: rgba(201, 168, 76, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.cause-body .progress-bar {
  border-radius: 999px;
  background: var(--gold-gradient);
}

.cause-body .progress-label {
  font-size: 0.78rem;
  line-height: 1.45;
  display: block;
  margin: 0.65rem 0 1rem;
  color: var(--text-muted);
}

.cause-body__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  margin-top: auto;
}

#departamentos .section-header {
  margin-bottom: 2.25rem;
}

#departamentos .decor-line {
  margin-top: 0.85rem;
}

.donate-modal .modal-content {
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.donate-modal__header {
  background: linear-gradient(180deg, #fff 0%, #fff9ef 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}

.donate-modal__cause {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.donate-modal__body {
  padding: 1.5rem 1.35rem 1.75rem;
}

.donate-modal__description {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.donate-modal__qr-wrap {
  display: inline-flex;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 28px rgba(154, 123, 46, 0.12);
}

.donate-modal__qr {
  display: block;
  width: min(240px, 70vw);
  height: auto;
}

.donate-modal__reference {
  margin: 0.85rem 0 0.35rem;
  color: var(--gold-dark);
  font-weight: 600;
}

.donate-modal__copy {
  margin-top: 1rem;
}

.donate-modal__copy-status {
  min-height: 1.25rem;
  margin-top: 0.45rem;
}

.donate-modal__pix-key {
  margin: 0;
  font-weight: 600;
  color: var(--gold-dark);
  word-break: break-all;
}

.causes-pagination .swiper-pagination-bullet {
  background: rgba(201, 168, 76, 0.35);
  opacity: 1;
}

.causes-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* About */
.about-image-wrap { position: relative; }
.about-image-wrap.templo-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.18) 0%,
    transparent 45%,
    rgba(10, 10, 10, 0.25) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.about-img-main { width: 100%; border-radius: 4px; }
.about-img-main--templo {
  display: block;
  width: 100%;
  max-height: min(420px, 55vw);
  object-fit: cover;
  object-position: center 25%;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-gold), var(--shadow-elegant);
  filter: contrast(1.05) saturate(0.92);
}
.about-img-sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 45%;
  border: 6px solid var(--white);
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.about-img-sub--logo {
  width: 42%;
  max-width: 230px;
  background: var(--black);
  padding: 0.5rem;
  border-color: var(--border-gold);
  object-fit: contain;
  z-index: 2;
}
.feature-box {
  text-align: center;
  padding: 1rem 0.5rem;
}
.feature-box i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.feature-box h5 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.feature-box p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Cards de valores — home «Bem-vindo» */
.about-features > [class*='col-'] {
  display: flex;
}

.about-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-soft);
  overflow: hidden;
  isolation: isolate;
}

.about-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.about-feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(232, 212, 139, 0.38) 0%, rgba(201, 168, 76, 0.14) 100%);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-dark);
  font-size: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-feature-card:hover .about-feature-card__icon {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.24);
}

.about-feature-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.45rem;
  color: var(--black);
  line-height: 1.3;
}

.about-feature-card__text {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  flex: 1;
}

.about-features {
  margin-top: 1.75rem !important;
}

.about-features .about-feature-card {
  padding: 1.25rem 0.95rem;
}

.about-features .about-feature-card__title {
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
}

.about-features .about-feature-card__text {
  font-size: clamp(0.75rem, 2vw, 0.82rem);
}

.stat-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 1.85rem 1.25rem;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 52%, #12100a 100%);
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.26);
  border-radius: var(--radius-soft);
  overflow: hidden;
  isolation: isolate;
  min-height: 7.25rem;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.stat-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(201, 168, 76, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

.stat-box:hover {
  border-color: rgba(201, 168, 76, 0.42);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.stat-num {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(201, 168, 76, 0.22));
}

.stat-label {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 12rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

.stats-row > [class*='col-'] {
  display: flex;
}

.stats-row {
  margin-top: clamp(2rem, 5vw, 3rem) !important;
}

/* Events section */
.events-section {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.events-section .section-title { color: var(--white); }

/* Ação Social */
.social-action-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.social-section-intro {
  max-width: 520px;
  color: var(--text-muted);
  margin-top: 0.5rem;
}
.social-action-card .event-time:first-child {
  color: #2e7d52;
  font-weight: 700;
}
.social-date-badge {
  background: linear-gradient(135deg, #5de88b 0%, #25d366 50%, #128c7e 100%);
  color: #fff;
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: var(--shadow-date-badge), var(--shadow-date-badge-green);
}
.social-list-date {
  background: linear-gradient(135deg, #5de88b 0%, #25d366 50%, #128c7e 100%);
  color: #fff;
  border: 1px solid rgba(37, 211, 102, 0.45);
  box-shadow: var(--shadow-date-badge), var(--shadow-date-badge-green);
}
.social-badge {
  background: var(--whatsapp-light);
  color: var(--whatsapp-dark);
  border: 1px solid rgba(37, 211, 102, 0.35);
  font-weight: 600;
}
.social-list-item {
  border-left: 3px solid var(--whatsapp);
}
.event-card {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-soft);
  overflow: hidden;
  position: relative;
  height: 100%;
}
.event-card img { width: 100%; height: 180px; object-fit: cover; }
.event-card-body { padding: 1.25rem; }
.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--gold-gradient);
  color: var(--black);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-soft);
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-date-badge), var(--shadow-date-badge-gold);
}
.event-date-badge span { display: block; font-size: 1.5rem; line-height: 1; }
.event-date-badge small { font-size: 0.65rem; text-transform: uppercase; }

/* Verse */
.verse-section .swiper-slide {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.verse-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(28, 28, 28, 0.85) 100%);
}
.verse-content blockquote { color: var(--gold-light); }
.verse-content {
  position: relative;
  z-index: 2;
  padding: 100px 20px;
  color: var(--white);
}
.verse-content h3 {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.verse-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.verse-content cite { font-style: normal; opacity: 0.8; }

/* Gallery — layout claro e moderno */
.gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 48%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 168, 76, 0.07), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(201, 168, 76, 0.05), transparent 38%);
  pointer-events: none;
}
.gallery-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 85%);
  pointer-events: none;
}
.gallery-section .container { position: relative; z-index: 1; }
.gallery-section__header { margin-bottom: 2.5rem; }
.gallery-section__decor { margin: 1rem auto 1.25rem; }
.gallery-intro {
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-top: 0;
}
.gallery-shell {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-radius: calc(var(--radius-soft) + 4px);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  backdrop-filter: blur(6px);
}
.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.gallery-filters-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.gallery-filters-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  padding-left: 0.15rem;
}
.gallery-filters-scroll {
  position: relative;
  margin: 0 -0.15rem;
  padding: 0 0.15rem;
}
.gallery-filters-scroll::before,
.gallery-filters-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.25rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-filters-scroll::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), transparent);
}
.gallery-filters-scroll::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98), transparent);
}
.gallery-filters-scroll.is-scrollable::before,
.gallery-filters-scroll.is-scrollable.is-at-start::before { opacity: 0; }
.gallery-filters-scroll.is-scrollable:not(.is-at-start)::before { opacity: 1; }
.gallery-filters-scroll.is-scrollable:not(.is-at-end)::after { opacity: 1; }
.gallery-filters-scroll.is-scrollable.is-at-end::after { opacity: 0; }
.gallery-filters {
  list-style: none;
  padding: 0.2rem 0 0.45rem;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
.gallery-filters::-webkit-scrollbar { display: none; }
.gallery-filters li {
  margin: 0;
  flex: 0 0 auto;
  scroll-snap-align: start;
}
#galeria .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #4b5563;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
#galeria .filter-btn i {
  font-size: 0.95rem;
  opacity: 0.72;
  transition: opacity 0.25s ease, color 0.25s ease;
}
#galeria .filter-btn__text {
  line-height: 1.2;
}
#galeria .filter-btn:hover {
  color: var(--text);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.07);
  transform: translateY(-1px);
}
#galeria .filter-btn:hover i { opacity: 1; color: var(--gold); }
#galeria .filter-btn.active {
  background: linear-gradient(135deg, #fffdf8 0%, #faf6eb 100%);
  border-color: rgba(201, 168, 76, 0.55);
  color: var(--text);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.18), inset 0 0 0 1px rgba(201, 168, 76, 0.15);
  transform: translateY(-1px);
}
#galeria .filter-btn.active i {
  opacity: 1;
  color: var(--gold);
}
#galeria .filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.gallery-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.5rem 0.95rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.gallery-count::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.gallery-mosaic.is-filtering .gallery-item {
  animation: galleryFilterPulse 0.35s ease;
}
@keyframes galleryFilterPulse {
  0% { opacity: 0.55; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes galleryReveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.gallery-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--text-muted);
  padding: 3.5rem 1rem;
  font-size: 0.9375rem;
}
.gallery-loading__spinner {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(201, 168, 76, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: gallerySpin 0.75s linear infinite;
}
@keyframes gallerySpin {
  to { transform: rotate(360deg); }
}
.gallery-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
  animation: galleryReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  min-width: 0;
}
.gallery-item:nth-child(1) { animation-delay: 0.04s; }
.gallery-item:nth-child(2) { animation-delay: 0.08s; }
.gallery-item:nth-child(3) { animation-delay: 0.12s; }
.gallery-item:nth-child(4) { animation-delay: 0.16s; }
.gallery-item:nth-child(5) { animation-delay: 0.2s; }
.gallery-item:nth-child(6) { animation-delay: 0.24s; }
.gallery-item:nth-child(7) { animation-delay: 0.28s; }
.gallery-item:nth-child(8) { animation-delay: 0.32s; }
.gallery-item:nth-child(9) { animation-delay: 0.36s; }
.gallery-item.is-hidden {
  display: none !important;
}
.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09), 0 0 0 1px rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}
.gallery-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f4f6;
  flex-shrink: 0;
}
.gallery-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #4b5563;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 0.24rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(4px);
  pointer-events: none;
  max-width: calc(100% - 1.3rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.gallery-link img.is-placeholder,
img.is-placeholder {
  object-fit: contain;
  background: #f9fafb;
  padding: 0.75rem;
}
.gallery-link img.is-placeholder {
  padding: 1.25rem;
}
.lightbox-stage img.is-placeholder {
  object-fit: contain;
  max-height: min(70vh, 520px);
  background: #111;
  padding: 1.5rem;
}
.testimonial-author img.is-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
}
.about-img-main.is-placeholder {
  object-fit: contain;
  background: var(--cream, #faf8f3);
  padding: 2rem;
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.28);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card__zoom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #374151;
  font-size: 1.15rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.gallery-card__caption {
  display: flex;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.8rem 0.95rem 0.95rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  flex: 1;
}
.gallery-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.gallery-link:hover img {
  transform: scale(1.04);
}
.gallery-link:hover .gallery-card__overlay,
.gallery-link:focus-visible .gallery-card__overlay { opacity: 1; }
.gallery-link:hover .gallery-card__zoom,
.gallery-link:focus-visible .gallery-card__zoom { transform: scale(1); }
.gallery-link:focus-visible { outline: none; }
.gallery-link:focus-visible .gallery-card__media {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.gallery-empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  background: #fafbfc;
  border-radius: 14px;
  border: 1px dashed rgba(201, 168, 76, 0.35);
  margin-top: 0.5rem;
}
.gallery-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  font-size: 1.35rem;
}
.gallery-empty__img {
  max-width: min(240px, 80vw);
  height: auto;
  opacity: 0.85;
  border-radius: var(--radius-soft);
}
.gallery-empty__text {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.gallery-empty-fallback {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
  }
}
@media (max-width: 575.98px) {
  .gallery-shell { padding: 1rem; border-radius: var(--radius-soft); }
  .gallery-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-count {
    width: 100%;
    justify-content: center;
  }
}

/* Sermon cards */
.sermon-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-soft);
  height: 100%;
  position: relative;
}
.sermon-date, .sermon-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}
.sermon-cat { color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }
.sermon-card h4 { margin: 0.5rem 0 1rem; }
.sermon-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.sermon-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* Blog */
.blog-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-cream) 100%);
  position: relative;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(201, 168, 76, 0.07), transparent 70%);
  pointer-events: none;
}
.blog-section .container {
  position: relative;
  z-index: 1;
}
.blog-section__intro {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-top: 0.75rem;
}
.blog-grid {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.75rem;
}
.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fdfbf6 100%);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-soft);
  overflow: hidden;
  isolation: isolate;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 3;
}
.blog-card__media {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.38) 100%);
  pointer-events: none;
  z-index: 1;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}
.blog-card__date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-width: 3.1rem;
  background: var(--gold-gradient);
  color: var(--black);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-soft);
  padding: 0.4rem 0.55rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.1;
  text-align: center;
  box-shadow: var(--shadow-date-badge), var(--shadow-date-badge-gold);
}
.blog-card__date small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 1.35rem 1.35rem 1.25rem;
}
.blog-card__time {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.blog-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.blog-card__title a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-card__title a:hover {
  color: var(--gold-dark);
}
.blog-card__excerpt {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-card__meta i {
  color: var(--gold-dark);
  font-size: 0.95em;
}
.blog-card__link.read-more {
  margin-left: auto;
  font-size: 0.82rem;
  white-space: nowrap;
}
.blog-card__link.read-more i {
  transition: transform var(--transition);
}
.blog-card__link.read-more:hover i {
  transform: translateX(4px);
}

@media (max-width: 767.98px) {
  .blog-card__media {
    aspect-ratio: 16 / 9;
  }
  .blog-card__body {
    padding: 1.15rem 1.15rem 1.1rem;
  }
  .blog-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-card__link.read-more {
    margin-left: 0;
  }
}

/* Testimonials */
.testimonials-section {
  background: var(--black-soft);
  color: var(--text-on-dark);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid var(--border-gold);
}
.testimonials-swiper {
  position: relative;
  padding-bottom: 2.75rem;
  overflow: hidden;
}
.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(11rem, 28vw, 14rem);
  padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  box-sizing: border-box;
}
.testimonials-pagination {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0 !important;
  width: 100%;
  margin: 0 !important;
  padding-top: 0.5rem;
}
.testimonials-section__intro {
  text-align: center;
  margin-bottom: 2rem;
}
.testimonials-section__intro .section-label {
  color: var(--gold-light);
}
.testimonial-author__initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.35) 0%, rgba(201, 168, 76, 0.12) 100%);
  border: 2px solid var(--border-gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}
.testimonials-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  line-height: 1.65;
}
.testimonials-section .testimonial-author cite { color: var(--text-on-dark); }
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testimonial-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author cite { font-style: normal; font-weight: 600; }

/* Accordion */
.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.custom-accordion .accordion-button {
  border-radius: var(--radius-soft) var(--radius-soft) 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--white);
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--black);
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-gold);
}
.custom-accordion .accordion-button:focus { box-shadow: none; }

.values-list { list-style: none; padding: 0; }
.values-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.values-list i { color: var(--accent); }

/* Ceremony */
.ceremony-section {
  background: url('../images/ieadvil-templo-hero.webp') center/cover;
  padding: 100px 0;
  position: relative;
}
.ceremony-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.88), rgba(28, 28, 28, 0.9));
}
.ceremony-section .container { position: relative; z-index: 1; }

/* Volunteer */
.volunteer-banner {
  background: var(--gold-gradient);
  padding: 2rem 0;
  color: var(--black);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-bronze);
}
.volunteer-banner strong { font-family: var(--font-display); }
.volunteer-banner h3 { margin: 0; font-family: var(--font-body); font-size: 1.15rem; }

/* Tour */
.tour-section {
  background: url('../images/ieadvil-paisagem-hero.webp') center/cover;
  padding: 100px 0;
  position: relative;
}
.tour-section--templo {
  background-image: url('../images/ieadvil-templo-hero.webp');
  background-position: center 40%;
  background-attachment: scroll;
}
.tour-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.82);
}
.tour-section .container { position: relative; z-index: 1; }
.tour-section .section-title { color: var(--white); }
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 0;
  cursor: pointer;
  transition: transform var(--transition);
}
.play-btn:hover { transform: scale(1.1); }

/* Partners */
.partners-swiper {
  overflow: hidden;
  padding: 0.25rem 0;
}
.partners-swiper .swiper-wrapper {
  align-items: stretch;
}
.partners-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.partners-swiper:not(.swiper-initialized) .swiper-slide {
  width: auto;
  flex: 0 1 calc(50% - 0.625rem);
  max-width: 200px;
}
@media (min-width: 576px) {
  .partners-swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 1 calc(33.333% - 0.85rem);
  }
}
@media (min-width: 768px) {
  .partners-swiper:not(.swiper-initialized) .swiper-slide {
    flex: 0 1 calc(25% - 0.95rem);
  }
}
.partner-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-soft);
  letter-spacing: 0.05em;
  padding: 0.5rem 0.75rem;
  overflow: hidden;
}
.partner-logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-logo__text {
  text-align: center;
  line-height: 1.2;
}
.partner-logo-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.partner-logo-link:hover {
  transform: translateY(-2px);
}
.partner-logo-link:focus-visible .partner-logo {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.partners-section { background: var(--bg-cream); }

/* Contact */
.contact-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--white) 45%, var(--bg-light) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section .container { position: relative; z-index: 1; }
.contact-section__intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.contact-section__decor {
  justify-content: flex-start;
  margin: 0.75rem 0 1.25rem;
}
.contact-section__decor::before,
.contact-section__decor::after { max-width: 48px; }
.contact-section__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}

.contact-info-panel {
  height: 100%;
  padding: 2rem 1.75rem;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-soft);
}
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact-list--elegant { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-list--elegant .contact-item {
  padding: 1.1rem 0;
  gap: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.contact-list--elegant .contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.22) 0%, rgba(201, 168, 76, 0.06) 100%);
  border: 1px solid var(--border-gold);
  color: var(--gold-dark);
  font-size: 1.15rem;
}
.contact-item__content { flex: 1; min-width: 0; }
.contact-item__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.contact-item__value {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}
.contact-item__value strong {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--black);
}
.contact-section__cta {
  width: 100%;
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.contact-list i { color: var(--accent); font-size: 1.25rem; margin-top: 0.15rem; flex-shrink: 0; }
.contact-list i.bi-whatsapp,
.contact-item__icon--whatsapp {
  color: var(--whatsapp-dark);
}
.contact-item__icon--whatsapp {
  background: var(--whatsapp-light);
  border-color: rgba(37, 211, 102, 0.45);
}
.contact-item__value a[href*="wa.me"] {
  color: var(--whatsapp-dark);
  border-bottom-color: rgba(37, 211, 102, 0.45);
  font-weight: 600;
}
.contact-item__value a[href*="wa.me"]:hover {
  color: var(--whatsapp);
}
.contact-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.contact-cta-group .contact-section__cta {
  margin-top: 0;
}
.contact-form .btn-whatsapp {
  text-transform: none;
  letter-spacing: 0.02em;
}
.contact-list a,
.contact-item__value a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  transition: color var(--transition), border-color var(--transition);
}
.contact-list a:hover,
.contact-item__value a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
.map-placeholder {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  min-height: 320px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.map-placeholder i { font-size: 3rem; color: var(--accent); }

.contact-map-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--black-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.contact-map-panel__head {
  padding: 1.35rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.14) 0%, transparent 55%);
}
.contact-map-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-map-panel__title i { color: var(--gold); }
.contact-map-panel__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  letter-spacing: 0.02em;
}
.contact-map-panel__map.map-embed-wrap,
.contact-map-panel > .map-embed-wrap {
  flex: 1;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.map-embed-wrap {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-soft);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-elegant);
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.contact-map-panel .map-embed-wrap iframe { height: min(420px, 52vh); }
.map-embed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}
.contact-map-panel__footer {
  padding: 1.15rem 1.5rem 1.35rem;
  background: rgba(10, 10, 10, 0.55);
  border-top: 1px solid var(--border-gold);
}
.contact-map-panel__footer .map-embed-actions { justify-content: flex-start; }
.contact-map-panel__footer .btn-outline-dark {
  color: var(--gold-light);
  border-color: var(--border-gold);
}
.contact-map-panel__footer .btn-outline-dark:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--white);
  border-color: var(--gold-light);
}
.contact-list .contact-ref,
.contact-item__value .contact-ref {
  display: block;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.section-dark .contact-list .contact-ref,
.section-dark .contact-item__value .contact-ref { color: var(--text-muted-on-dark); }

@media (min-width: 992px) {
  .contact-section__intro { margin-bottom: 3rem; }
}
@media (max-width: 991px) {
  .contact-section__intro { text-align: center; }
  .contact-section__decor { justify-content: center; }
  .contact-map-panel .map-embed-wrap iframe { height: 320px; }
}

.page-hero__lead {
  max-width: 560px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.contact-page .contact-section__intro { max-width: 720px; }
.contact-form-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: var(--radius-soft);
  overflow: hidden;
}
.contact-form-panel__head {
  padding: 1.35rem 1.75rem 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 55%);
}
.contact-form-panel__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form-panel__title i { color: var(--gold-dark); }
.contact-form-panel__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.contact-form-panel .contact-form {
  flex: 1;
  margin: 0;
  border: none;
  border-radius: 0;
  padding: 1.75rem;
}
.contact-item__value--static {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}
.contact-page-social {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.contact-page-social__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.contact-page-social .footer-social { margin-top: 0.85rem; }
.contact-page__map-row { margin-top: 0.25rem; }
.contact-map-panel--page {
  min-height: 420px;
}
.contact-map-panel--page .map-embed-wrap iframe {
  height: min(480px, 56vh);
}
@media (max-width: 991px) {
  .contact-map-panel--page .map-embed-wrap iframe { height: 320px; }
  .contact-form-panel__head,
  .contact-form-panel .contact-form { padding-left: 1.35rem; padding-right: 1.35rem; }
}
