:root {
  --navy-900: #0d1b2a;
  --navy-800: #112236;
  --navy-700: #1a3150;
  --navy-600: #1e3a5f;
  --navy-400: #2e5280;
  --gold-500: #d4a843;
  --gold-400: #e0bb6a;
  --gold-300: #edd08f;
  --gold-100: rgba(212, 168, 67, 0.08);
  --white: #ffffff;
  --text-primary: #f0ece4;
  --text-body: #b8c4d4;
  --text-muted: #6b85a0;
  --border: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(212, 168, 67, 0.2);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 6px 28px rgba(212, 168, 67, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 150ms;
  --normal: 260ms;
  --slow: 420ms;

  --nav-h: 72px;
  --container: 1160px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s6);
}

.w-full {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--slow) var(--ease),
    transform var(--slow) var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--normal) var(--ease);
  position: relative;
  overflow: hidden;
  padding: var(--s3) var(--s6);
}
.btn--sm {
  padding: var(--s2) var(--s4);
  font-size: var(--text-xs);
}
.btn--lg {
  padding: var(--s4) var(--s8);
  font-size: var(--text-base);
}

.btn [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--gold-400);
  box-shadow: 0 8px 36px rgba(212, 168, 67, 0.38);
  transform: translateY(-1px);
}
.btn--gold:active {
  transform: translateY(0);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--gold-300);
  border-color: var(--border-gold);
}
.btn--outline:hover {
  background: var(--gold-100);
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.logo-emblem {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-emblem--sm {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}
.logo-text__main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.logo-text__sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--normal),
    box-shadow var(--normal);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-right: auto;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-sm);
  transition:
    color var(--fast),
    background var(--fast);
}
.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  padding: var(--s2);
  margin-left: auto;
  border-radius: var(--r-sm);
  transition: background var(--fast);
  align-items: center;
  justify-content: center;
}
.nav__toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform var(--normal) var(--ease),
    opacity var(--fast),
    background var(--fast);
}
.hamburger {
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}
.hamburger::before {
  top: -6px;
}
.hamburger::after {
  top: 6px;
}

.nav__toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav__toggle[aria-expanded="true"] .hamburger::before {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy-800);
  border-bottom: 1px solid var(--border);
  padding: var(--s6);
  z-index: 99;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--normal) var(--ease),
    opacity var(--normal);
}
.mobile-menu:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu[hidden] {
  display: block !important;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.mobile-menu__link {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  transition:
    background var(--fast),
    color var(--fast);
}
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}
.mobile-menu__links .btn {
  margin-top: var(--s4);
  display: flex;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--s16);
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s3);
}
.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--s5);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
}

.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s20) 0 var(--s12);
  position: relative;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /*
    ✏️ ADAPTE: "center 30%" foca na parte superior do vídeo.
    Mude para "center center" para centralizar completamente.
  */
  object-position: center 35%;
  filter: blur(0.5px) brightness(0.52) saturate(0.85);
  transform: none;
  animation: none;
}

@keyframes hero-video-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 15, 26, 0.72) 0%,
    rgba(13, 27, 42, 0.65) 50%,
    rgba(10, 21, 32, 0.78) 100%
  );
  z-index: 1;
}

.hero__video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 30%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 2;
}

.hero__bg-texture {
  z-index: 3;
}
.hero__glow {
  z-index: 4;
}
.hero__inner {
  z-index: 5;
}
.hero__scroll {
  z-index: 5;
}
.hero__quote-mark {
  z-index: 5;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    animation: none;
  }
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 0
  );
  background-size: 36px 36px;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    ellipse,
    rgba(212, 168, 67, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__quote-mark {
  position: absolute;
  top: -0.3em;
  left: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(12rem, 20vw, 22rem);
  font-style: italic;
  color: var(--gold-500);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__verse-ref {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.hero__verse-ref::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold-500);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-7xl));
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--s6);
}
.hero__title em {
  font-style: normal;
  font-weight: 900;
  color: var(--gold-300);
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 1.8vw, var(--text-xl));
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s8);
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}

.next-service-card {
  flex-shrink: 0;
  width: 220px;
  background: rgba(26, 49, 80, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(212, 168, 67, 0.1);
}

.next-service-card__label {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.next-service-card__label [data-lucide] {
  width: 12px;
  height: 12px;
}

.next-service-card__day {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  margin-top: var(--s2);
}
.next-service-card__time {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: -0.03em;
}
.next-service-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.next-service-card__divider {
  height: 1px;
  background: var(--border);
  margin: var(--s2) 0;
}

.next-service-card__live {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: live-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
  }
}

.hero__scroll {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  position: relative;
}
.hero__scroll span::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--gold-500);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(14px);
    opacity: 0;
  }
}

.verse-band {
  background: var(--navy-800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s4) 0;
  overflow: hidden;
}

.verse-band__track {
  display: flex;
  gap: var(--s10);
  width: max-content;
  animation: verse-scroll 32s linear infinite;
  align-items: center;
}
.verse-band__track span {
  white-space: nowrap;
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-display);
}
.verse-band__track span[aria-hidden="true"] {
  color: var(--gold-500);
  font-style: normal;
  font-size: var(--text-xs);
}

@keyframes verse-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cultos {
  padding: var(--s32) 0;
  background: var(--navy-900);
}

.cultos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}

.culto-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--normal) var(--ease),
    border-color var(--normal),
    box-shadow var(--normal);
}
.culto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--slow) var(--ease);
}
.culto-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px var(--border-gold);
}
.culto-card:hover::before {
  transform: scaleX(1);
}

.culto-card--destaque {
  background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-color: var(--border-gold);
}
.culto-card--destaque::before {
  transform: scaleX(1);
}

.culto-card__day {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.culto-card__icon {
  width: 44px;
  height: 44px;
  background: var(--gold-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin: var(--s2) 0;
}
.culto-card__icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.culto-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.culto-card__time {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold-300);
}
.culto-card__time [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.culto-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.culto-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--r-full);
  padding: var(--s1) var(--s3);
  width: fit-content;
  margin-top: auto;
}
.culto-card__tag [data-lucide] {
  width: 11px;
  height: 11px;
}

.ministerios {
  padding: var(--s32) 0;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.ministerios::before {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(212, 168, 67, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ministerios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.ministerio-card {
  background: rgba(13, 27, 42, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
  transition:
    transform var(--normal) var(--ease),
    border-color var(--normal);
}
.ministerio-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.ministerio-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: var(--s5);
}
.ministerio-card__icon [data-lucide] {
  width: 22px;
  height: 22px;
}

.ministerio-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s3);
  color: var(--text-primary);
}
.ministerio-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.palavra {
  padding: var(--s32) 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.palavra::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 67, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.palavra__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--s16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.palavra__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: var(--s5);
  border-left: 3px solid var(--gold-500);
  padding-left: var(--s6);
}

.palavra__ref {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--s6);
  padding-left: var(--s6);
}

.palavra__body {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: var(--s6);
}

.congregacao-stats {
  background: var(--navy-800);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  padding: var(--s6) var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--gold-500);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-divider {
  height: 1px;
  background: var(--border);
  margin: 0 var(--s4);
}

.testemunhos {
  padding: var(--s32) 0;
  background: var(--navy-800);
}

.testemunhos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}

.testemunho-card {
  background: var(--navy-900);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  position: relative;
  overflow: hidden;
  transition:
    transform var(--normal) var(--ease),
    border-color var(--normal);
}
.testemunho-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
}

.testemunho-card--destaque {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.testemunho-card__quote {
  font-family: var(--font-display);
  font-size: 6rem;
  font-style: italic;
  color: var(--gold-500);
  opacity: 0.08;
  line-height: 0.7;
  position: absolute;
  top: var(--s4);
  right: var(--s6);
  user-select: none;
  pointer-events: none;
}

.testemunho-card blockquote p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
}

.testemunho-card__author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: auto;
}
.testemunho-card__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}
.testemunho-card__author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.testemunho-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-900);
  flex-shrink: 0;
}
.av1 {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
}
.av2 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.av3 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
}

.faq {
  padding: var(--s32) 0;
  background: var(--navy-900);
}

.faq__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s16);
  align-items: start;
}

.faq__header {
  text-align: left;
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--nav-h) + var(--s8));
}
.faq__header .section-title {
  font-size: var(--text-4xl);
}

.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
  background: var(--navy-800);
}
.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px;
  background: none;
  border: none;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  gap: var(--s4);
  transition:
    background var(--fast),
    color var(--fast);
}
.accordion__trigger:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-400);
}
.accordion__trigger[aria-expanded="true"] {
  color: var(--gold-400);
}

.accordion__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition:
    transform var(--normal) var(--ease),
    color var(--normal);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  color: var(--gold-500);
}

.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition:
    grid-template-rows var(--normal) var(--ease),
    padding var(--normal);
  padding: 8px;
}
.accordion__body[hidden] {
  display: grid !important;
}
.accordion__body.open {
  grid-template-rows: 1fr;
  padding-bottom: var(--s6);
}
.accordion__body > p {
  overflow: hidden;
  min-height: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
}

.como-chegar {
  padding: var(--s32) 0;
  background: var(--navy-800);
}

.como-chegar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}

.como-chegar__desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--s8);
  line-height: 1.7;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  margin-bottom: var(--s5);
}
.info-block [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
  margin-top: 3px;
}
.info-block strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s1);
}
.info-block p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.chegar-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s8);
}

.mapa-placeholder {
  border: 1.5px dashed var(--border-gold);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
}
.mapa-placeholder__inner {
  text-align: center;
  color: var(--text-muted);
  padding: var(--s8);
}
.mapa-placeholder__inner [data-lucide] {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--s4);
  color: var(--border-gold);
}
.mapa-placeholder__inner p {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.final-cta {
  padding: var(--s32) 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, #0a1520 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.final-cta__geo::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: var(--r-xl);
  transform: rotate(20deg);
}
.final-cta__geo::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(212, 168, 67, 0.05);
  border-radius: var(--r-xl);
  transform: rotate(-15deg);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__cross {
  width: 48px;
  height: 48px;
  position: relative;
  margin: 0 auto var(--s8);
}
.fc-cross-v,
.fc-cross-h {
  position: absolute;
  background: var(--gold-500);
  border-radius: 3px;
  opacity: 0.7;
}
.fc-cross-v {
  width: 6px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.fc-cross-h {
  height: 6px;
  width: 100%;
  top: 35%;
  left: 0;
}

.final-cta__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--s5);
}

.final-cta__subtitle {
  font-size: var(--text-xl);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--s10);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: center;
  margin-bottom: var(--s5);
}

.final-cta__note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  opacity: 0.7;
}

.site-footer {
  background: #070f1a;
  color: var(--text-muted);
  padding: var(--s16) 0 var(--s8);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s10);
  margin-bottom: var(--s12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.footer-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer__logo .logo-text__main {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.footer__logo .logo-text__sub {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--s6);
  max-width: 280px;
  color: var(--text-muted);
}

.footer__social {
  display: flex;
  gap: var(--s3);
}
.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-muted);
  transition: all var(--fast);
}
.footer__social a:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  background: var(--gold-100);
}
.footer__social [data-lucide] {
  width: 15px;
  height: 15px;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s5);
}

.site-footer nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.site-footer nav a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--fast);
}
.site-footer nav a:hover {
  color: var(--gold-400);
}

.footer__horarios {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.footer__horarios li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.footer__horarios li:last-child {
  border-bottom: none;
}
.footer__horarios li span:last-child {
  font-weight: 600;
  color: var(--gold-500);
  font-family: var(--font-display);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s8);
  border-top: 1px solid var(--border);
  font-size: var(--text-xs);
  color: rgba(107, 133, 160, 0.5);
}

@media (max-width: 1024px) {
  .cultos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ministerios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .palavra__inner {
    grid-template-columns: 1fr;
  }
  .congregacao-stats {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-divider {
    width: 1px;
    height: auto;
    margin: var(--s4) 0;
  }
  .stat-item {
    flex: 1;
    min-width: 140px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero__video {
    transform: scale(1.08);
    object-position: center center;
    animation: hero-video-zoom-mobile 25s ease-in-out infinite alternate;
  }

  .section-subtitle {
    text-align: center;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav {
    justify-content: space-between;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  .next-service-card {
    width: 100%;
  }
  .hero__quote-mark {
    font-size: 8rem;
  }

  .testemunhos__grid {
    grid-template-columns: 1fr;
  }
  .como-chegar__inner {
    grid-template-columns: 1fr;
  }

  .faq__inner {
    grid-template-columns: 1fr;
  }
  .faq__header {
    position: static;
    text-align: center;
    margin-bottom: var(--s8);
  }
  .faq__header .section-title {
    font-size: var(--text-3xl);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--s2);
    text-align: center;
  }


  @keyframes hero-video-zoom-mobile {
    from {
      transform: scale(1.08);
    }
    to {
      transform: scale(1.13);
    }
  }
}

@media (max-width: 600px) {
  .cultos__grid {
    grid-template-columns: 1fr;
  }
  .ministerios__grid {
    grid-template-columns: 1fr;
  }
  .testemunhos__grid {
    grid-template-columns: 1fr;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .final-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__brand p {
    max-width: 100%;
  }
  .chegar-ctas {
    flex-direction: column;
  }
  .chegar-ctas .btn {
    width: 100%;
  }
  .congregacao-stats {
    flex-direction: column;
  }
  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}
