﻿:root {
  --bg-primary: #0b0b0f;
  --bg-secondary: #15151d;
  --bg-tertiary: #1d2331;
  --border-secondary: #3f3123;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --brand-blue: #304c89;
  --brand-blue-hover: #3f60aa;
  --brand-gold: #e6c15a;
  --brand-gold-hover: #d4a830;
  --brand-gold-light: rgba(230, 193, 90, 0.15);
  --brand-gold-border: rgba(230, 193, 90, 0.45);
  --radius: 12px;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 8px 36px rgba(230, 193, 90, 0.26);
  --shadow-hover: 0 22px 56px rgba(0, 0, 0, 0.55);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-base: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================================
   HEART CELEBRATION OVERLAY
   ============================================================ */
.heart-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
}

.heart-overlay.heart-active {
  animation: heart-fade 2.2s ease forwards;
}

@keyframes heart-fade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50% {
    opacity: 0.15;
  }
  65% {
    opacity: 1;
  }
  80% {
    opacity: 0.15;
  }
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.heart-shape {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  line-height: 220px;
  text-align: center;
  font-size: 220px;
  color: #e05252;
  filter: drop-shadow(0 0 28px rgba(220, 60, 60, 0.85));
  user-select: none;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #15203b 0%, var(--bg-primary) 45%);
  color: var(--text-primary);
  font-family: var(--font-base);
  line-height: 1.6;
}

main {
  flex: 1;
}
* {
  box-sizing: border-box;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-blue-hover);
}

img {
  max-width: 100%;
  display: block;
}

button,
.btn,
input,
textarea,
select {
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}

button:focus,
.btn:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(230, 193, 90, 0.25);
  outline-offset: 2px;
}

body,
input,
textarea,
select,
button {
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.main-navbar {
  background: rgba(8, 8, 12, 0.72) !important;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid rgba(230, 193, 90, 0.1);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  transition:
    padding 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.main-navbar.scrolled {
  background: rgba(6, 6, 9, 0.93) !important;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(230, 193, 90, 0.18);
}

.main-navbar .navbar-brand,
.main-navbar .nav-link,
.main-navbar .navbar-toggler-icon {
  color: var(--text-primary);
}

.main-navbar .navbar-brand span {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.main-navbar .navbar-brand:hover span {
  color: var(--brand-gold);
  opacity: 0.9;
}

.main-navbar .navbar-brand:hover .navbar-logo {
  opacity: 0.85;
  transform: scale(1.04);
}

.navbar-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  box-shadow: 0 2px 10px rgba(230, 193, 90, 0.12);
}

.pix-qr-img {
  max-width: 220px;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.main-navbar .nav-link {
  color: rgba(245, 245, 245, 0.82) !important;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.015em;
  padding-left: 0.45rem !important;
  padding-right: 0.45rem !important;
  white-space: nowrap;
  position: relative;
  transition: color 0.22s ease;
}

@media (min-width: 1200px) {
  .main-navbar .nav-link {
    font-size: 0.875rem;
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
  }
}

/* underline animado da esquerda para direita */
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  background: var(--brand-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--brand-gold) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
  transform: scaleX(1);
}

.main-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-card,
.verse-card,
.image-card,
.card,
.modal-content,
.site-footer,
.home-info-card {
  background-color: var(--bg-secondary) !important;
  border-radius: calc(var(--radius) * 1.25);
}

.hero-card {
  padding: 2.25rem;
  border: 1px solid var(--border-secondary);
  box-shadow: var(--shadow-soft);
}

.hero-card .eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-card h1,
.section-title,
.home-info-card h3 {
  color: var(--brand-gold);
}

.hero-card p,
.text-secondary,
.verse-card p,
.footer-contact-list li,
.home-info-card p {
  color: var(--text-secondary);
}

.verse-card {
  padding: 2rem;
  border: 1px solid var(--border-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.verse-text {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.verse-reference {
  font-weight: 600;
  color: var(--text-primary);
}

.image-card {
  border: 1px solid var(--border-secondary);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

.home-info-card {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-secondary);
}

.info-list i {
  color: var(--brand-gold);
  margin-top: 0.25rem;
}

.btn-primary {
  background-color: var(--brand-gold);
  color: var(--bg-primary);
  border: 1px solid transparent;
  font-weight: 700;
  transition: all var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--brand-gold-hover);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 193, 90, 0.45);
}

.btn-secondary {
  background-color: var(--brand-blue);
  color: var(--text-primary);
  border: 1px solid transparent;
}

.btn-secondary:hover {
  background-color: var(--brand-blue-hover);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--brand-blue);
  border: 1px solid var(--brand-blue);
}

.btn-secondary-outline:hover {
  background-color: var(--brand-blue);
  color: var(--text-primary);
}

.modal-content {
  border: none;
}

.modal-header,
.modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-close-white {
  filter: invert(1) brightness(1.2);
}

.bg-primary-soft {
  background-color: rgba(48, 76, 137, 0.14) !important;
}

.badge.bg-gold {
  background-color: var(--brand-gold);
  color: var(--bg-primary);
}

.page-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-secondary);
  border-radius: calc(var(--radius) * 1.2);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

/* Page header � uniform hero-style header for all inner pages */
.page-header {
  padding-bottom: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.page-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

.page-card h1 {
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.page-card p {
  color: var(--text-secondary);
}

/* Section card icon (large, centred) */
.about-pillar-icon-lg {
  width: 66px;
  height: 66px;
  background: rgba(230, 193, 90, 0.12);
  border: 1px solid rgba(230, 193, 90, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--brand-gold);
}

/* Ministry icon (inline, left-aligned for list cards) */
.ministry-icon-page {
  width: 48px;
  height: 48px;
  background: rgba(230, 193, 90, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--brand-gold);
  flex-shrink: 0;
}

/* PIX key box */
.pix-key-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-card,
.video-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.1);
  padding: 1.75rem;
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth);
}

.section-card:hover,
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-gold-border);
}

.video-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: calc(var(--radius) * 1.1);
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.form-control,
textarea {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.form-label {
  color: var(--text-secondary);
}

.placeholder-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: rgba(229, 229, 229, 0.65);
}

.qr-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: calc(var(--radius) * 1.1);
}

.qr-box {
  width: 200px;
  height: 200px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--text-secondary);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 16px;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
}

.footer-shell {
  background: linear-gradient(
    180deg,
    rgba(21, 21, 29, 0.98),
    rgba(14, 14, 20, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.footer-brand-block {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-logo-image,
.footer-logo-fallback {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  flex-shrink: 0;
}

.footer-logo-image {
  object-fit: cover;
  background-color: #fff;
  padding: 0.25rem;
}

.footer-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-gold), #f5d476);
  color: var(--bg-primary);
  font-size: 2rem;
}

.footer-info-block h5,
.footer-social-block h5,
.footer-links h6 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.footer-address {
  text-align: center;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 130px;
  border-radius: 8px;
  border: none;
  filter: grayscale(30%);
}

.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.footer-contact-list i {
  color: var(--brand-gold);
  margin-top: 0.25rem;
}

.service-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background-color: rgba(230, 193, 90, 0.14);
  color: #f5d476;
  border: 1px solid rgba(230, 193, 90, 0.28);
  font-size: 0.9rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
  color: var(--bg-primary);
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

/* --- Bot�o de navega��o flutuante ------------------------------- */
.float-nav {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.float-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e6c15a;
  border: none;
  color: #111;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.float-nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(230, 193, 90, 0.45);
}

.float-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(20, 20, 30, 0.97);
  border: 1px solid rgba(230, 193, 90, 0.25);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 150px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform-origin: bottom right;
  transform: scale(0.85);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.float-nav-menu.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.float-nav-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  width: 100%;
  text-align: left;
}

.float-nav-link i {
  width: 16px;
  text-align: center;
  color: #e6c15a;
  font-size: 0.8rem;
}

.float-nav-link:hover {
  background: rgba(230, 193, 90, 0.12);
  color: #fff;
}

.float-nav-top {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.25rem;
  padding-top: 0.6rem;
  color: #e6c15a;
}

@keyframes devGlow {
  0%,
  100% {
    text-shadow:
      0 0 4px rgba(230, 193, 90, 0.3),
      0 0 8px rgba(230, 193, 90, 0.1);
    opacity: 1;
  }
  50% {
    text-shadow:
      0 0 10px rgba(230, 193, 90, 0.8),
      0 0 20px rgba(230, 193, 90, 0.4);
    opacity: 0.85;
  }
}

.dev-credit {
  color: #e6c15a;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: devGlow 3s ease-in-out infinite;
}

/* ============================================================
   SCROLL-REVEAL � fade-in-up on scroll
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal.delay-1 {
  transition-delay: 0.1s;
}
.scroll-reveal.delay-2 {
  transition-delay: 0.2s;
}
.scroll-reveal.delay-3 {
  transition-delay: 0.3s;
}
.scroll-reveal.delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 992px) {
  .hero-card,
  .verse-card,
  .image-card {
    padding: 1.75rem;
  }

  .footer-brand-block {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero-card,
  .verse-card,
  .image-card {
    border-radius: calc(var(--radius) * 1.4);
  }

  .footer-shell {
    padding: 1.25rem;
  }
}

/* ============================================================
   MOBILE REFINEMENTS — minimum 44px tap targets, breathing room
   ============================================================ */
@media (max-width: 768px) {
  .btn,
  button.btn {
    min-height: 44px;
  }

  .btn-xl {
    min-height: 52px;
    width: 100%;
    justify-content: center;
  }

  .donation-card {
    padding: 3rem 1.5rem;
  }

  .service-time-card,
  .ministry-card,
  .contact-card {
    padding: 2rem 1.25rem;
  }

  .section-heading {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .page-section {
    padding: 4.5rem 0;
  }

  .verse-banner {
    padding: 3rem 1.5rem;
  }

  .d-flex.gap-3.justify-content-center {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ============================================================
   SECTION LAYOUT � Full-width homepage sections
   ============================================================ */

.page-section {
  padding: 6rem 0;
}

/* Section-specific padding adjustments for better visual flow */
#eventos {
  padding-bottom: 4rem;
}

#contato {
  padding-top: 4rem;
}

#sobre {
  position: relative;
}

#sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, #0b1224, transparent);
  pointer-events: none;
  z-index: 1;
}

.section-dark {
  background-color: var(--bg-secondary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url("/images/image_principal_2.jpeg");
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 15, 0.78) 0%,
    rgba(21, 33, 69, 0.64) 100%
  );
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(11, 18, 36, 0.2) 35%,
    rgba(11, 18, 36, 0.6) 65%,
    rgba(11, 18, 36, 0.88) 85%,
    #0b1224 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 8rem 0 5rem;
}

.hero-content {
  max-width: 740px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.7),
    0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.text-gold {
  color: var(--brand-gold) !important;
}

.btn-outline-hero {
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: var(--text-primary);
  background: transparent;
  padding: 0.6rem 1.5rem;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--text-primary);
}

/* ============================================================
   COMMON SECTION ELEMENTS
   ============================================================ */

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-text {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.85;
}

.text-muted-section {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================================
   NAVBAR CONTACT BUTTON
   ============================================================ */

.btn-nav-contact {
  background: linear-gradient(135deg, #e6c15a 0%, #c9a63c 100%) !important;
  color: #0e0e0e !important;
  padding: 0.42rem 1.3rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 0 0 0 rgba(230, 193, 90, 0);
  transition:
    box-shadow 0.25s ease,
    opacity 0.2s ease !important;
}

.btn-nav-contact::after {
  display: none !important;
}

.btn-nav-contact:hover {
  opacity: 0.9 !important;
  color: #0e0e0e !important;
  box-shadow: 0 0 18px rgba(230, 193, 90, 0.45) !important;
}

.btn-nav-pastor {
  background-color: transparent !important;
  color: var(--brand-gold) !important;
  padding: 0.42rem 1.2rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(230, 193, 90, 0.5) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.02em !important;
  transition: all 0.25s ease !important;
}

.btn-nav-pastor::after {
  display: none !important;
}

.navbar .nav-item .btn-nav-pastor:hover,
.navbar .nav-item .btn-nav-pastor:focus {
  background-color: rgba(230, 193, 90, 0.12) !important;
  color: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
  box-shadow: 0 0 14px rgba(230, 193, 90, 0.22) !important;
}

.navbar .nav-item .btn-nav-pastor:hover i,
.navbar .nav-item .btn-nav-pastor:focus i {
  color: var(--brand-gold) !important;
}

/* Mobile nav: gap between Contato pill and Área do Pastor pill */
@media (max-width: 991.98px) {
  .nav-item:has(.btn-nav-pastor) {
    margin-top: 0.6rem;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.about-pillar {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.about-pillar:hover {
  border-color: rgba(230, 193, 90, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.about-pillar-icon {
  font-size: 2rem;
  color: var(--brand-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.about-pillar h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.about-pillar p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.92rem;
}

/* ============================================================
   SERVICE TIMES SECTION
   ============================================================ */

.service-time-card {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition-smooth);
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.service-time-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--brand-gold-border);
  background-color: rgba(230, 193, 90, 0.04);
}

.service-time-icon {
  width: 66px;
  height: 66px;
  background: rgba(230, 193, 90, 0.12);
  border: 1px solid rgba(230, 193, 90, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.55rem;
  color: var(--brand-gold);
  transition: all var(--transition-smooth);
}

.service-time-card:hover .service-time-icon {
  background: rgba(230, 193, 90, 0.2);
  box-shadow: 0 0 20px rgba(230, 193, 90, 0.25);
}

.service-time-card h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.service-hour {
  color: var(--brand-gold);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

/* ============================================================
   VERSE / BIBLE QUOTE SECTION
   ============================================================ */

.verse-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.verse-banner {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-tertiary) 100%
  );
  border: 1px solid rgba(230, 193, 90, 0.2);
  border-radius: 24px;
  padding: 4rem 3.5rem;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.verse-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--brand-gold),
    transparent
  );
}

.verse-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 193, 90, 0.3),
    transparent
  );
}

.verse-icon {
  font-size: 2.25rem;
  color: var(--brand-gold);
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.verse-quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
  letter-spacing: 0.01em;
}

.verse-cite {
  color: var(--brand-gold);
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
}

/* ============================================================
   MINISTRIES SECTION
   ============================================================ */

.ministry-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all var(--transition-smooth);
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.ministry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--brand-gold-border);
  background-color: rgba(230, 193, 90, 0.03);
}

.ministry-icon {
  width: 66px;
  height: 66px;
  background: rgba(230, 193, 90, 0.12);
  border: 1px solid rgba(230, 193, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.55rem;
  color: var(--brand-gold);
  transition: all var(--transition-smooth);
}

.ministry-card:hover .ministry-icon {
  background: rgba(230, 193, 90, 0.22);
  box-shadow: 0 0 20px rgba(230, 193, 90, 0.25);
}

.ministry-card h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ministry-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   CELLS SECTION
   ============================================================ */

.cells-section {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--bg-tertiary) 0%,
    var(--bg-secondary) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cells-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}

.cells-icon {
  width: 76px;
  height: 76px;
  background: rgba(230, 193, 90, 0.14);
  border: 1px solid rgba(230, 193, 90, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cells-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   SERMONS SECTION
   ============================================================ */

.sermons-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sermon-item {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--radius) * 1.2);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition-fast);
}

.sermon-item:hover {
  border-color: rgba(230, 193, 90, 0.5);
  transform: translateX(6px);
  background-color: rgba(255, 255, 255, 0.02);
  box-shadow:
    -3px 0 0 var(--brand-gold),
    var(--shadow-soft);
}

.sermon-thumb-link {
  display: block;
  flex-shrink: 0;
}

.sermon-thumb {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
}

.sermon-icon {
  width: 44px;
  height: 44px;
  background: rgba(230, 193, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.sermon-info {
  flex: 1;
}

.sermon-info h5 {
  color: var(--text-primary);
  margin-bottom: 0.15rem;
  font-size: 1rem;
  font-weight: 600;
}

.sermon-meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   DONATION SECTION
   ============================================================ */

.donation-section {
  padding: 7rem 0;
  background: linear-gradient(
    160deg,
    rgba(29, 35, 49, 0.95) 0%,
    rgba(11, 18, 36, 1) 45%,
    rgba(17, 25, 10, 0.92) 100%
  );
  position: relative;
  overflow: hidden;
}

.donation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(230, 193, 90, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.donation-card {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 4.5rem 3.5rem;
  background: linear-gradient(
    145deg,
    rgba(25, 28, 42, 0.98) 0%,
    rgba(20, 24, 36, 0.98) 100%
  );
  border: 1px solid rgba(230, 193, 90, 0.35);
  border-radius: 28px;
  box-shadow:
    var(--shadow-gold),
    0 0 0 1px rgba(230, 193, 90, 0.06);
  position: relative;
  overflow: hidden;
}

.donation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--brand-gold) 35%,
    #f5d476 60%,
    transparent 100%
  );
}

.donation-icon {
  width: 84px;
  height: 84px;
  background: rgba(230, 193, 90, 0.12);
  border: 1px solid rgba(230, 193, 90, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 2.3rem;
  color: var(--brand-gold);
}

.donation-lead {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.9;
}

.donation-text {
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* btn-xl — larger than btn-lg, for hero donation CTAs */
.btn-xl {
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  min-height: 52px;
  letter-spacing: 0.02em;
}

.btn-outline-gold {
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  background: transparent;
  font-weight: 700;
  transition: all var(--transition-smooth);
}

.btn-outline-gold:hover {
  background-color: var(--brand-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 193, 90, 0.45);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem 1.75rem;
  text-align: center;
  height: 100%;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.contact-card:hover {
  border-color: var(--brand-gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.contact-icon {
  width: 66px;
  height: 66px;
  background: rgba(230, 193, 90, 0.12);
  border: 1px solid rgba(230, 193, 90, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.55rem;
  color: var(--brand-gold);
  transition: all var(--transition-smooth);
}

.contact-card:hover .contact-icon {
  background: rgba(230, 193, 90, 0.22);
  box-shadow: 0 0 20px rgba(230, 193, 90, 0.25);
}

.contact-card h5 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER QUICK LINKS
   ============================================================ */

.footer-links h6 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-gold);
}

/* ============================================================
   RESPONSIVE � New sections
   ============================================================ */

@media (max-width: 768px) {
  .hero-overlay {
    padding: 6rem 0 4rem;
  }

  .cells-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .verse-banner,
  .donation-card {
    padding: 2.75rem 1.5rem;
  }

  .sermon-item {
    flex-wrap: wrap;
  }

  .sermon-meta {
    text-align: left;
    width: 100%;
  }

  .page-section {
    padding: 4rem 0;
  }

  .section-heading {
    font-size: clamp(1.7rem, 5.5vw, 2.2rem);
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

/* ============================================================
   PALAVRA DO PASTOR — PREVIEW CARDS (Home)
   ============================================================ */

.palavra-preview-card {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.palavra-preview-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-gold-border);
  box-shadow: var(--shadow-gold);
  color: inherit;
  text-decoration: none;
}

.palavra-preview-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

/* Permanent bottom gradient so text on image is always readable */
.palavra-preview-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11, 18, 36, 0.65) 100%
  );
  pointer-events: none;
}

.palavra-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.palavra-preview-card:hover .palavra-preview-img img {
  transform: scale(1.04);
}

.palavra-preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 90, 0.07) 0%,
    rgba(11, 18, 36, 0.97) 100%
  );
  font-size: 2.8rem;
  color: rgba(230, 193, 90, 0.35);
}

.palavra-type-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.badge-sermao {
  background: rgba(230, 193, 90, 0.2);
  color: var(--brand-gold);
  border: 1px solid rgba(230, 193, 90, 0.4);
}

.badge-devocional {
  background: rgba(100, 160, 240, 0.18);
  color: #8ec0f8;
  border: 1px solid rgba(100, 160, 240, 0.32);
}

.palavra-preview-body {
  padding: 1.6rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.palavra-preview-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
  border-left: 3px solid var(--brand-gold);
  padding-left: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.palavra-preview-excerpt {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.68;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.palavra-preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(176, 176, 176, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.8rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.palavra-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.palavra-read-link:hover {
  color: var(--brand-gold-hover);
  text-decoration: none;
}

.palavra-cta-wrap {
  text-align: center;
  padding-top: 3.5rem;
}

/* ============================================================
   PODCAST — PREVIEW CARDS (Home)
   ============================================================ */

#podcast-preview {
  background-color: var(--bg-secondary);
}

.podcast-card {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-gold-border);
  box-shadow: var(--shadow-gold);
}

.podcast-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-primary);
}

/* Permanent dark bottom gradient — always visible */
.podcast-thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.podcast-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.podcast-card:hover .podcast-thumb {
  transform: scale(1.04);
}

.podcast-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.podcast-card:hover .podcast-play-overlay {
  opacity: 1;
}

.podcast-play-btn {
  width: 56px;
  height: 56px;
  background: var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bg-primary);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(230, 193, 90, 0.5);
}

.podcast-card:hover .podcast-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(230, 193, 90, 0.7);
}

.podcast-card-body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.podcast-card-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-desc {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.68;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podcast-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(176, 176, 176, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Pill-style CTA replacing plain link */
.podcast-watch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(230, 193, 90, 0.12);
  color: var(--brand-gold);
  border: 1px solid rgba(230, 193, 90, 0.3);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.podcast-watch-pill:hover {
  background: rgba(230, 193, 90, 0.22);
  box-shadow: 0 0 12px rgba(230, 193, 90, 0.25);
  color: var(--brand-gold);
  text-decoration: none;
}

/* ============================================================
   CELLS MINI MAP (Home)
   ============================================================ */

.cells-mini-map-wrap {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 3rem;
}

.cells-mini-map-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.cells-mini-map-header h4 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0.4rem 0 0.5rem;
}

.cells-mini-map {
  height: 400px;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  border: 1px solid rgba(230, 193, 90, 0.22);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(230, 193, 90, 0.07);
  z-index: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card {
  background-color: var(--bg-tertiary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.85rem 1.85rem 1.65rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

/* Subtle gold top bar — always whisper-visible, vivid on hover */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 193, 90, 0.55) 40%,
    rgba(230, 193, 90, 0.55) 60%,
    transparent 100%
  );
  opacity: 0.3;
  transition: opacity 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 193, 90, 0.35);
  box-shadow: var(--shadow-gold);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-icon {
  font-size: 1.85rem;
  color: var(--brand-gold);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-style: italic;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-stars {
  display: flex;
  gap: 0.18rem;
  color: var(--brand-gold);
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 1.1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  outline: 2px solid rgba(255, 255, 255, 0.12);
  outline-offset: 2px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.testimonial-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.testimonial-role {
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.82;
}

/* ============================================================
   RESPONSIVE — New Sections
   ============================================================ */

@media (max-width: 767.98px) {
  .cells-mini-map {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .cells-mini-map {
    height: 260px;
  }

  .palavra-preview-meta,
  .podcast-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

.palavra-preview-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold-border);
  box-shadow: var(--shadow-gold);
  color: inherit;
  text-decoration: none;
}

.palavra-preview-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.palavra-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.palavra-preview-card:hover .palavra-preview-img img {
  transform: scale(1.05);
}

.palavra-preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(230, 193, 90, 0.08) 0%,
    rgba(11, 18, 36, 0.95) 100%
  );
  font-size: 2.8rem;
  color: rgba(230, 193, 90, 0.4);
}

.palavra-type-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.badge-sermao {
  background: rgba(230, 193, 90, 0.18);
  color: var(--brand-gold);
  border: 1px solid rgba(230, 193, 90, 0.35);
}

.badge-devocional {
  background: rgba(100, 160, 240, 0.15);
  color: #7ab4f5;
  border: 1px solid rgba(100, 160, 240, 0.3);
}

.palavra-preview-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.palavra-preview-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.palavra-preview-excerpt {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.palavra-preview-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.75rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   PODCAST — PREVIEW CARDS (Home)
   ============================================================ */

.podcast-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.podcast-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold-border);
  box-shadow: var(--shadow-gold);
}

.podcast-thumb-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.podcast-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.podcast-card:hover .podcast-thumb {
  transform: scale(1.05);
}

.podcast-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.podcast-card:hover .podcast-play-overlay {
  opacity: 1;
}

.podcast-play-btn {
  width: 58px;
  height: 58px;
  background: rgba(230, 193, 90, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--bg-primary);
  transition: transform var(--transition-smooth);
}

.podcast-card:hover .podcast-play-btn {
  transform: scale(1.1);
}

.podcast-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.podcast-card-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.podcast-card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.podcast-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.podcast-watch-link {
  color: var(--brand-gold);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.podcast-watch-link:hover {
  color: var(--brand-gold-hover);
  text-decoration: none;
}

/* ============================================================
   CELLS MINI MAP (Home)
   ============================================================ */

.cells-mini-map-wrap {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 3rem;
}

.cells-mini-map-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cells-mini-map-header h4 {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.3rem 0 0.4rem;
}

.cells-mini-map {
  height: 380px;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  border: 1px solid rgba(230, 193, 90, 0.2);
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(230, 193, 90, 0.06);
  z-index: 0;
}

@media (max-width: 575.98px) {
  .cells-mini-map {
    height: 280px;
  }

  .palavra-preview-meta,
  .podcast-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 50%,
    var(--bg-primary) 100%
  );
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 193, 90, 0.6) 40%,
    rgba(230, 193, 90, 0.6) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold-border);
  box-shadow: var(--shadow-gold);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-quote-icon {
  font-size: 1.6rem;
  color: var(--brand-gold);
  opacity: 0.45;
  line-height: 1;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.78;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--brand-gold);
  font-size: 0.78rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-name {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.testimonial-role {
  color: var(--brand-gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

/* ============================================================
   MOBILE REFINEMENTS — 414px and below
   ============================================================ */

/* ── Global spacing ── */
@media (max-width: 414px) {
  .container {
    padding: 0 0.85rem;
  }

  .page-section {
    padding: 2.75rem 0;
  }

  /* Prevent horizontal scroll from any element */
  body,
  .page-section,
  section {
    overflow-x: hidden;
    max-width: 100%;
  }
}

/* ── Sections ── */
@media (max-width: 414px) {
  .hero-section {
    min-height: 88vh;
  }

  .hero-overlay {
    padding: 5rem 0 3rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8.5vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  /* Hero buttons: stack vertically, full width */
  .hero-actions {
    flex-direction: column !important;
    gap: 0.65rem !important;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 0.6rem;
  }

  .section-text,
  .text-muted-section {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  /* Reduce padding on all page-sections */
  .verse-section,
  .cells-section,
  .donation-section {
    padding: 2.75rem 0;
  }

  /* About section */
  .about-image-wrap img {
    height: 220px;
  }

  .about-pillar {
    padding: 1rem 0.85rem;
  }

  .about-pillar-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .about-pillar h6 {
    font-size: 0.88rem;
  }

  .about-pillar p {
    font-size: 0.82rem;
  }

  /* Services / Cultos cards */
  .service-time-card {
    padding: 1.5rem 1rem;
  }

  .service-time-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }

  .service-time-card h4 {
    font-size: 1rem;
  }

  .service-hour {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
  }

  /* Verse banner */
  .verse-banner {
    padding: 2rem 1.15rem;
    border-radius: 16px;
  }

  .verse-quote {
    font-size: 1rem;
    line-height: 1.75;
  }

  .verse-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  /* Ministry cards */
  .ministry-card {
    padding: 1.5rem 1rem;
  }

  .ministry-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }

  .ministry-card h5 {
    font-size: 0.95rem;
  }
  .ministry-card p {
    font-size: 0.85rem;
  }

  /* Cells section */
  .cells-content {
    gap: 1.25rem;
  }

  .cells-icon {
    width: 58px;
    height: 58px;
    font-size: 1.45rem;
  }

  .cells-text {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .cells-mini-map-wrap {
    margin-top: 2rem;
    padding-top: 1.75rem;
  }

  .cells-mini-map {
    height: 230px;
  }

  /* Palavra do Pastor preview */
  .palavra-preview-body {
    padding: 1rem 1.1rem 1.1rem;
  }

  .palavra-preview-title {
    font-size: 0.92rem;
  }

  .palavra-preview-excerpt {
    font-size: 0.82rem;
  }

  .palavra-cta-wrap {
    padding-top: 2rem;
  }

  /* Podcast cards */
  .podcast-card-body {
    padding: 1rem 1.1rem 1.1rem;
  }

  .podcast-card-title {
    font-size: 0.92rem;
  }

  .podcast-card-desc {
    font-size: 0.82rem;
  }

  /* Events — horizontal compact card */
  .event-card-img,
  .evento-img {
    height: 150px !important;
    object-fit: cover;
  }

  /* Sermons */
  .sermon-item {
    padding: 0.9rem 1rem;
    gap: 0.85rem;
  }

  .sermon-thumb {
    width: 90px;
    height: 52px;
  }

  .sermon-info h5 {
    font-size: 0.88rem;
  }

  .sermon-meta {
    font-size: 0.78rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.25rem 1.1rem 1.1rem;
    gap: 0.75rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  .testimonial-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .testimonial-name {
    font-size: 0.83rem;
  }

  /* Donation */
  .donation-card {
    padding: 2rem 1.15rem;
    border-radius: 18px;
  }

  .donation-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    margin-bottom: 1.1rem;
  }

  .donation-lead {
    font-size: 0.97rem;
  }

  /* Contact cards */
  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    font-size: 1.25rem;
  }

  .contact-card h5 {
    font-size: 0.95rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }

  /* Buttons */
  .btn-xl {
    font-size: 0.95rem;
    padding: 0.65rem 1.35rem;
    min-height: 46px;
  }

  .btn-lg {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }

  /* Footer */
  .footer-shell {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .footer-brand-block {
    gap: 0.75rem;
  }

  .footer-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .footer-shell h5 {
    font-size: 0.97rem;
    margin-bottom: 0.3rem;
  }

  .footer-shell .text-secondary {
    font-size: 0.82rem;
  }

  .footer-address {
    font-size: 0.82rem;
  }

  .footer-map iframe {
    height: 110px;
  }

  .footer-links ul li {
    margin-bottom: 0.35rem;
  }

  .footer-links a {
    font-size: 0.84rem;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  /* Float nav */
  .float-nav {
    bottom: 1.25rem;
    right: 1rem;
  }

  .float-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

/* ── 375px tweaks ── */
@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .section-heading {
    font-size: clamp(1.3rem, 6vw, 1.6rem);
  }

  .verse-quote {
    font-size: 0.95rem;
  }

  .donation-card,
  .verse-banner {
    padding: 1.75rem 1rem;
  }
}

/* ── 320px tweaks ── */
@media (max-width: 320px) {
  .container {
    padding: 0 0.65rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.25rem;
  }

  .service-time-card,
  .ministry-card,
  .contact-card {
    padding: 1.1rem 0.75rem;
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE PASS 2 — FULL UX overhaul for ≤575px
   Covers: Ministérios, Palavra, Podcast, Cultos, Contato,
   Depoimentos, Footer centralizado, Eventos, global spacing.
   ══════════════════════════════════════════════════════════ */
@media (max-width: 575.98px) {
  /* ─── Global gutter reduction ─── */
  .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  /* ─── Section heading tighten ─── */
  .text-center.mb-5 {
    margin-bottom: 1.75rem !important;
  }

  /* ══ MINISTÉRIOS: compacto 2-col ══ */
  .ministry-card {
    padding: 0.9rem 0.6rem;
    text-align: center;
  }

  .ministry-icon {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
    margin: 0 auto 0.5rem;
  }

  .ministry-card h5 {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
    line-height: 1.3;
  }

  .ministry-card p {
    display: none;
  }

  .ministry-card .text-gold {
    font-size: 0.72rem;
  }

  /* ══ PALAVRA DO PASTOR: horizontal card ══ */
  .palavra-preview-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 105px;
  }

  .palavra-preview-img {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: auto;
  }

  .palavra-preview-img::after {
    display: none;
  }

  .palavra-preview-placeholder {
    min-height: 105px;
    font-size: 1.6rem;
  }

  .palavra-preview-body {
    padding: 0.75rem 0.85rem !important;
    flex: 1;
    min-width: 0;
  }

  .palavra-preview-title {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 3;
    margin-bottom: 0.35rem;
  }

  .palavra-preview-excerpt {
    display: none !important;
  }

  .palavra-type-badge {
    font-size: 0.6rem;
    padding: 0.12rem 0.4rem;
    top: 0.4rem;
    left: 0.4rem;
  }

  .palavra-preview-meta {
    font-size: 0.72rem;
    flex-direction: column;
    gap: 0.2rem;
  }

  /* ══ PODCAST: horizontal card ══ */
  .podcast-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 105px;
  }

  .podcast-thumb-wrap {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: auto;
    min-height: 105px;
  }

  .podcast-thumb-wrap::before {
    display: none;
  }

  .podcast-play-overlay {
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
  }

  .podcast-play-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    box-shadow: none;
  }

  .podcast-card-body {
    padding: 0.75rem 0.85rem !important;
    flex: 1;
    min-width: 0;
  }

  .podcast-card-title {
    font-size: 0.85rem !important;
    -webkit-line-clamp: 3;
  }

  .podcast-card-desc {
    display: none !important;
  }

  .podcast-card-meta {
    font-size: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  /* ══ CULTOS: card compacto 2-col ══ */
  .service-time-card {
    padding: 1.1rem 0.75rem;
    text-align: center;
  }

  .service-time-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin: 0 auto 0.6rem;
  }

  .service-time-card h4 {
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
  }

  .service-hour {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
  }

  .service-time-card .text-muted-section {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .service-time-card .small {
    font-size: 0.72rem !important;
  }

  /* Libras banner compacto */
  .libras-banner {
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .libras-banner-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .libras-banner-title {
    font-size: 0.88rem;
  }

  .libras-banner-text {
    font-size: 0.78rem;
  }

  .libras-banner-badge {
    display: none;
  }

  /* ══ CONTATO: cards compactos ══ */
  .contact-card {
    padding: 1.1rem 0.75rem;
    text-align: center;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin: 0 auto 0.55rem;
  }

  .contact-card h5 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
  }

  .contact-card p {
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
  }

  /* ══ DEPOIMENTOS: compactar ══ */
  .testimonial-card {
    padding: 1rem 0.9rem;
    gap: 0.6rem;
  }

  .testimonial-quote-icon {
    font-size: 1.2rem;
  }

  .testimonial-text {
    font-size: 0.83rem;
    line-height: 1.65;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testimonial-stars {
    font-size: 0.7rem;
    gap: 0.15rem;
  }

  .testimonial-author {
    padding-top: 0.65rem;
    gap: 0.6rem;
  }

  .testimonial-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.68rem;
  }

  .testimonial-name {
    font-size: 0.8rem;
  }

  .testimonial-role {
    font-size: 0.7rem;
  }

  /* ══ EVENTOS: banner reduzido ══ */
  .evento-banner {
    height: 140px !important;
  }

  /* ══ FOOTER: centralizado ══ */
  .footer-shell {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .footer-shell .row {
    text-align: center;
  }

  .footer-brand-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }

  .footer-logo-image {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    margin: 0 auto;
  }

  .footer-shell h5,
  .footer-address,
  .footer-links h6 {
    text-align: center;
  }

  .footer-address {
    font-size: 0.8rem;
    text-align: center;
  }

  .footer-address p {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
  }

  .footer-map {
    margin-top: 0.75rem;
  }

  .footer-map iframe {
    height: 110px;
    border-radius: 8px;
  }

  .footer-links ul {
    padding: 0;
    list-style: none;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.1rem 1.25rem;
  }

  .footer-links li {
    margin: 0;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-social-block {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center !important;
  }

  /* ══ Gutter por seção ══ */
  #ministerios .row,
  #palavra-preview .row,
  #podcast-preview .row,
  #cultos .row,
  #contato .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
}

/* ══════════════════════════════════════
   SCROLLBAR CUSTOMIZADA
══════════════════════════════════════ */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #e6c15a #0e0e0e;
}

/* Chrome, Edge, Opera */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0e0e0e;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e6c15a 0%, #c9a63c 100%);
  border-radius: 4px;
  border: 2px solid #0e0e0e;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #f0d06e 0%, #e6c15a 100%);
}

::-webkit-scrollbar-corner {
  background: #0e0e0e;
}
