/* ═══════════════════════════════════════════════════════════════════════
   IGREJA FAMÍLIA HAZEL — SISTEMA DE ESTILO
   Extraído fielmente do Design System (ds1-att.html) + componentes do site.
   Tema escuro premium · laranja "fogo espiritual" · glassmorphism.
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS DE DESIGN ─────────────────────────────────────────────────── */
:root {
  --bg-primary: #09090b;
  --bg-secondary: #0e0e11;
  --bg-tertiary: #18181b;

  --accent-orange: #ff5500;
  --accent-orange-hover: #ff7722;
  --accent-orange-rgb: 255, 85, 0;
  --accent-gold: #f59e0b;

  --text-primary: #fafafa;
  --text-secondary: #d4d4d8;
  --text-muted: #71717a;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.16);
  --glass-bg: rgba(14, 14, 17, 0.7);
  --glass-blur: blur(16px);

  --font-primary: 'Manrope', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─────────────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html { scroll-behavior: smooth; }
html, body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ─── DECORAÇÃO: LINHAS DE GRADE & GLOWS ────────────────────────────────── */
.grid-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 1;
  opacity: 0.2;
}
.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0) 100%);
  border-left: 1px dashed rgba(255, 255, 255, 0.08);
}
.ambient-glows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow-spot {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-orange-rgb), 0.12) 0%, transparent 70%);
  filter: blur(120px);
  opacity: 0.8;
  animation: pulseGlow 12s ease-in-out infinite alternate;
}
.glow-1 { top: -10%; left: -10%; }
.glow-2 { bottom: -20%; right: -10%; background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%); }
.glow-3 { top: 40%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; }
@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 0.9; }
}

#page-wrapper { position: relative; z-index: 2; }

/* ─── NAVBAR (GLASS PILL) ───────────────────────────────────────────────── */
#nav-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 92%;
  max-width: 1200px;
}
#main-nav {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  padding: 10px 14px 10px 24px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: var(--transition-normal);
}
#main-nav:hover { border-color: var(--border-color-hover); }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  font-family: var(--font-display);
  white-space: nowrap;
}
.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 10px var(--accent-orange);
  position: relative;
  flex-shrink: 0;
}
.brand-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent-orange);
  border-radius: 50%;
  opacity: 0.5;
  animation: pulseCircle 2s infinite;
}
@keyframes pulseCircle {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.brand-logo { height: 34px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-menu a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.nav-menu li.active a {
  color: var(--bg-primary);
  background: var(--text-primary);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-top {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-top-glass {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-top-glass:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-color-hover);
}
.btn-top-orange {
  background: var(--accent-orange);
  color: white;
  border: 1px solid var(--accent-orange);
  box-shadow: 0 4px 12px rgba(var(--accent-orange-rgb), 0.2);
}
.btn-top-orange:hover {
  background: var(--accent-orange-hover);
  box-shadow: 0 6px 16px rgba(var(--accent-orange-rgb), 0.4);
}
/* Botão hambúrguer (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
#main-nav.open .nav-toggle .icon-open { display: none; }
#main-nav.open .nav-toggle .icon-close { display: block; }

/* ─── LAYOUT DE SEÇÃO ───────────────────────────────────────────────────── */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 110px 0;
  position: relative;
}
.section--bordered { border-bottom: 1px solid var(--border-color); }
.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  height: 1px;
  width: 40px;
  background-color: var(--border-color-hover);
}
.section-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  overflow-wrap: break-word;
}
.hero-title { overflow-wrap: break-word; }
.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin-bottom: 60px;
  font-weight: 400;
}
.text-gradient {
  background: linear-gradient(90deg, #ffffff 30%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utilitários de tipografia */
.font-h1 { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; letter-spacing: -2px; line-height: 1.1; }
.font-h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.font-h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; }
.font-lead { font-size: 1.2rem; font-weight: 400; color: var(--text-secondary); line-height: 1.6; }
.font-body { font-size: 1rem; font-weight: 400; color: var(--text-secondary); line-height: 1.6; }
.font-small-label { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; line-height: 1.4; }
.center { text-align: center; }
.center .section-label { justify-content: center; }
.center .section-desc { margin-left: auto; margin-right: auto; }

/* ─── HERO ──────────────────────────────────────────────────────────────── */
#hero { padding-top: 170px; }
/* Hero full-bleed (banner em tela cheia, da home) */
#hero.hero-full { padding: 96px 0 0; }
.hero-wrapper {
  background: linear-gradient(180deg, rgba(14, 14, 17, 0.4) 0%, rgba(10, 10, 12, 0.8) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
/* Variante com foto de fundo (Hero da home) */
.hero-wrapper--photo {
  background:
    linear-gradient(90deg, rgba(9,9,11,.74) 0%, rgba(9,9,11,.38) 48%, rgba(9,9,11,.08) 100%),
    url('culto.jpg') center / cover no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  min-height: 78vh;
  padding: 120px 0 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-photo-inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: left;
  margin-left: clamp(24px, 6vw, 88px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  animation: pulseDot 1.5s infinite alternate;
}
@keyframes pulseDot {
  0% { opacity: 0.4; }
  100% { opacity: 1; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-visual { position: relative; }
.hero-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(var(--accent-orange-rgb), 0.25) 0%, transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}
.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.card-glass--media { padding: 0; overflow: hidden; }
.card-glass-media-img { width: 100%; height: 200px; object-fit: cover; }
.card-glass-body { padding: 24px; }
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
}
.card-title-sm {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.info-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-orange);
  flex-shrink: 0;
}

/* ─── BOTÕES ────────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-glow-orange {
  background: var(--accent-orange);
  color: white;
  border-color: var(--accent-orange);
  box-shadow: 0 4px 20px rgba(var(--accent-orange-rgb), 0.25);
}
.btn-glow-orange:hover {
  background: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  box-shadow: 0 8px 30px rgba(var(--accent-orange-rgb), 0.45);
  transform: translateY(-2px);
}
.btn-glow-orange:hover svg { transform: translateX(4px); }
.btn-glow-orange svg { transition: transform var(--transition-fast); }
.btn-glass-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: var(--glass-blur);
}
.btn-glass-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-orange);
  box-shadow: 0 0 20px rgba(var(--accent-orange-rgb), 0.15);
  transform: translateY(-2px);
}
.btn-underline {
  color: var(--text-primary);
  background: transparent;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
}
.btn-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width var(--transition-fast);
}
.btn-underline:hover::after { width: 100%; }
.btn-dark-cta {
  font-family: var(--font-primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0A0A0C;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-dark-cta:hover { background: #1a1a1f; transform: translateY(-2px); }

/* ─── GRIDS DE CARDS ────────────────────────────────────────────────────── */
.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
/* Permite que itens de grid/flex encolham abaixo do conteúdo (evita overflow horizontal) */
.hero-grid > *, .grid-2 > *, .grid-3 > *, .grid-4 > *, .grid-auto > *, .cards-row > * { min-width: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

/* Card de feature/valor */
.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-normal);
}
.feature-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(var(--accent-orange-rgb), 0.1);
  border: 1px solid rgba(var(--accent-orange-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--accent-orange); }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.feature-text { color: var(--text-secondary); font-size: 0.98rem; line-height: 1.6; }

/* Tríade da home (Bíblica. Simples. Relacional.) — base DS3 (Olá, Membro + Explorar Padrões) */
.section-light-alt.values-triad .values-grid { gap: 24px; }
.section-light-alt.values-triad .feature-card {
  position: relative;
  min-height: 100%;
  border: none;
  background: transparent;
  border-radius: 30px;
  padding: 30px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  transform: translateZ(0);
}
.section-light-alt.values-triad .feature-card::before {
  content: '';
  position: absolute;
  inset: -120%;
  background: conic-gradient(
    from 0deg,
    rgba(249, 115, 22, 0) 0deg,
    rgba(249, 115, 22, 0) 292deg,
    rgba(249, 115, 22, 0.92) 340deg,
    rgba(249, 115, 22, 0.34) 360deg
  );
  animation: triadBeamSpin 3.8s linear infinite;
  z-index: 0;
}
.section-light-alt.values-triad .feature-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.12) 0%, rgba(249, 115, 22, 0) 34%),
    linear-gradient(155deg, #ffffff 0%, #fbfbfc 56%, #f4f4f6 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 -12px 18px rgba(0, 0, 0, 0.06);
  background-size: auto;
  z-index: 1;
}
.section-light-alt.values-triad .feature-card > * { position: relative; z-index: 2; }
.section-light-alt.values-triad .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.2), 0 0 24px rgba(var(--accent-orange-rgb), 0.2);
}
.section-light-alt.values-triad .feature-card:hover::after {
  border-color: rgba(var(--accent-orange-rgb), 0.38);
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.18) 0%, rgba(249, 115, 22, 0) 35%),
    linear-gradient(155deg, #ffffff 0%, #f8f8fa 56%, #f2f2f4 100%);
  background-size: auto;
}
.section-light-alt.values-triad .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(var(--accent-orange-rgb), 0.1);
  border: 1px solid rgba(var(--accent-orange-rgb), 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.section-light-alt.values-triad .feature-icon svg {
  width: 23px;
  height: 23px;
  color: #fb923c;
}
.section-light-alt.values-triad .feature-title {
  color: #111217;
  font-size: 1.34rem;
  letter-spacing: -0.35px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-light-alt.values-triad .feature-text {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.65;
}
@keyframes triadBeamSpin {
  to { transform: rotate(360deg); }
}

/* Card de evento */
.event-card {
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.ec-image-wrap { height: 180px; width: 100%; overflow: hidden; position: relative; }
.ec-image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.event-card:hover .ec-image { transform: scale(1.08); }
.ec-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-orange);
}
.ec-content { padding: 24px; }
.ec-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.ec-details { display: flex; flex-direction: column; gap: 8px; }
.ec-detail-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-secondary); }
.ec-detail-item svg { width: 14px; height: 14px; color: var(--accent-orange); flex-shrink: 0; }

/* Card de célula / pequeno grupo */
.gc-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-normal);
}
.gc-card:hover {
  border-color: rgba(var(--accent-orange-rgb), 0.4);
  box-shadow: 0 20px 40px rgba(var(--accent-orange-rgb), 0.05);
  transform: translateY(-4px);
}
/* Foto de cabeçalho do card de célula (sangra até a borda) */
.gc-photo {
  margin: -28px -28px 22px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.gc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.gc-card:hover .gc-photo img { transform: scale(1.06); }
/* Variante com logo (célula sem foto própria) */
.gc-photo--logo {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.gc-photo--logo img { width: auto; max-width: 64%; height: auto; object-fit: contain; }
.gc-card:hover .gc-photo--logo img { transform: none; }
.gc-card-label { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 8px; }
.gc-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; }
.gc-divider { border: none; border-top: 1px solid var(--border-color); margin: 16px 0; }

/* Player de sermão */
.sermon-player {
  flex: 1 1 340px;
  max-width: 480px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.sermon-player-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.sermon-player:hover .sermon-player-img { transform: scale(1.04); }
.sermon-player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(9, 9, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}
.sermon-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}
.sermon-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: var(--transition-normal);
}
.sermon-player:hover .sermon-play-btn { background: var(--accent-orange); transform: scale(1.1); box-shadow: 0 0 30px rgba(var(--accent-orange-rgb), 0.4); }
.sermon-play-btn svg { width: 20px; height: 20px; color: var(--bg-primary); margin-left: 3px; transition: var(--transition-fast); }
.sermon-player:hover .sermon-play-btn svg { color: white; }
.sermon-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; line-height: 1.2; color: var(--text-primary); }
.sermon-speaker { font-size: 0.85rem; color: var(--accent-orange); font-weight: 700; margin-top: 4px; }

/* ─── FORMULÁRIOS ───────────────────────────────────────────────────────── */
.prayer-form {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
}
.form-group { margin-bottom: 22px; position: relative; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}
.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition-normal);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px rgba(var(--accent-orange-rgb), 0.1);
  background: rgba(255, 255, 255, 0.07);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ─── FILTROS (PILLS) ───────────────────────────────────────────────────── */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-color);
  padding: 8px;
  border-radius: var(--radius-full);
  max-width: fit-content;
  margin-bottom: 48px;
}
.filter-pill {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}
.filter-pill:hover { color: var(--text-primary); }
.filter-pill.active { background: var(--text-primary); color: var(--bg-primary); }

/* ─── MARQUEE ───────────────────────────────────────────────────────────── */
.marquee-container {
  background: var(--glass-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
  overflow: hidden;
  width: 100%;
}
.marquee-track { display: flex; width: max-content; animation: marqueeRun 28s linear infinite; }
.marquee-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}
.marquee-dot { width: 12px; height: 12px; border-radius: 50%; background-color: var(--accent-orange); flex-shrink: 0; }
@keyframes marqueeRun { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── CTA BANNER ────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 72px 32px;
  border-radius: var(--radius-lg);
  background: #E8611A;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.cta-banner__text {
  position: relative;
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.cta-banner__actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── TIMELINE (Sobre) ──────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-orange), rgba(var(--accent-orange-rgb), 0.1));
}
.timeline-item { position: relative; padding-bottom: 38px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(var(--accent-orange-rgb), 0.15);
}
.timeline-date { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 6px; }
.timeline-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.timeline-text { color: var(--text-secondary); font-size: 0.98rem; }

/* ─── PESSOA / LIDERANÇA ────────────────────────────────────────────────── */
.person-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}
.person-card:hover { border-color: var(--border-color-hover); transform: translateY(-4px); }
.person-img { width: 100%; height: 320px; object-fit: cover; }
.person-body { padding: 26px; }
.person-role { font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 8px; }
.person-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.person-text { color: var(--text-secondary); font-size: 0.95rem; }

/* Foto da liderança (casal de pastores juntos) */
.leader-photo {
  background: #0e0e11;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.leader-photo img { width: 100%; height: auto; display: block; }
.leader-photo-caption {
  padding: 16px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

/* ─── STATS ─────────────────────────────────────────────────────────────── */
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--text-primary); line-height: 1; letter-spacing: -1px; }
.stat-num span { color: var(--accent-orange); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; font-weight: 600; letter-spacing: 0.5px; }

/* ─── PIX / CONTRIBUIR ──────────────────────────────────────────────────── */
.pix-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(var(--accent-orange-rgb), 0.25);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: 0 0 40px rgba(var(--accent-orange-rgb), 0.08);
}
.pix-qr {
  width: 248px;
  max-width: 100%;
  margin: 28px auto 0;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.pix-qr img { width: 100%; height: auto; display: block; }
.pix-key {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px dashed var(--border-color-hover);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin: 24px auto 0;
  max-width: 480px;
}
.pix-key-value { font-family: monospace; font-size: 1.05rem; font-weight: 700; color: var(--text-primary); word-break: break-all; }
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-orange);
  color: #fff;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.btn-copy:hover { background: var(--accent-orange-hover); }
.btn-copy svg { width: 15px; height: 15px; }

/* ─── INFO CARD (contato) ───────────────────────────────────────────────── */
.info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-normal);
}
.info-card:hover { border-color: var(--border-color-hover); }
.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-orange-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-icon svg { width: 22px; height: 22px; color: var(--accent-orange); }
.info-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.info-card-text { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
.info-card-text a { color: var(--accent-orange); text-decoration: none; }
.info-card-text a:hover { text-decoration: underline; }
/* Variante centralizada (atalhos de contato: WhatsApp/Instagram/E-mail) */
.info-card--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 34px 24px;
}
.info-card--center .info-card-icon { width: 54px; height: 54px; border-radius: 50%; }
.info-card--center .info-card-icon svg { width: 26px; height: 26px; }
.info-card--center .info-card-text { word-break: break-word; }

.map-frame {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  filter: grayscale(0.3) invert(0.9) hue-rotate(180deg);
}

/* ─── PROSE (blocos de texto longos) ────────────────────────────────────── */
.prose p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-primary); font-weight: 700; }
.prose blockquote {
  border-left: 3px solid var(--accent-orange);
  padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.4;
}

/* Lista com check */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-secondary); font-size: 1rem; line-height: 1.5; }
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(var(--accent-orange-rgb), 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff5500'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ─── FOOTER ────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(14,14,17,0.4), rgba(9,9,11,0.9));
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.5px; margin-bottom: 16px; }
.footer-tagline { color: var(--text-secondary); font-size: 0.95rem; max-width: 300px; line-height: 1.6; }
.footer-fiscal { margin-top: 18px; font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.footer-fiscal strong { color: var(--text-secondary); font-weight: 700; }
.footer-fiscal a { color: var(--text-secondary); text-decoration: none; transition: var(--transition-fast); }
.footer-fiscal a:hover { color: var(--accent-orange); }
.footer-col-title { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.92rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent-orange); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 14px; line-height: 1.5; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent-orange); flex-shrink: 0; margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 6px; }
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}
.footer-social:hover { color: #fff; border-color: var(--accent-orange); background: rgba(var(--accent-orange-rgb), 0.12); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── REVEAL (scroll) ───────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity var(--transition-slow), transform var(--transition-slow); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-children > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ─── TOAST ─────────────────────────────────────────────────────────────── */
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  z-index: 2000;
  background: var(--accent-orange);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 15px 30px rgba(var(--accent-orange-rgb), 0.3);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════
   SEÇÃO CLARA — ALTERNÂNCIA DE FUNDOS (tema claro escopado)
   Off-white #F5F5F7 · cards #fff · texto forte #0A0A0C · corrido #52525b
   ═══════════════════════════════════════════════════════════════════════ */
.section-light-alt { background: #F5F5F7; color: #18181b; }
.section-light-alt.section--bordered { border-bottom-color: rgba(0,0,0,0.08); }

/* Títulos e textos fortes → escuro */
.section-light-alt .section-title,
.section-light-alt .font-h1,
.section-light-alt .font-h2,
.section-light-alt .font-h3,
.section-light-alt .feature-title,
.section-light-alt .gc-card-title,
.section-light-alt .ec-title,
.section-light-alt .card-title-sm,
.section-light-alt .person-name,
.section-light-alt .info-card-title,
.section-light-alt .stat-num,
.section-light-alt .timeline-title,
.section-light-alt .prose strong,
.section-light-alt .prose blockquote { color: #0A0A0C; }
.section-light-alt .stat-num span { color: var(--accent-orange); }

/* Label laranja mantém-se; linha do ::after escurece */
.section-light-alt .section-label { color: var(--accent-orange); }
.section-light-alt .section-label::after { background-color: rgba(0,0,0,0.15); }

/* Texto corrido → cinza médio */
.section-light-alt .section-desc,
.section-light-alt .font-lead,
.section-light-alt .font-body,
.section-light-alt .feature-text,
.section-light-alt .timeline-text,
.section-light-alt .person-text,
.section-light-alt .info-card-text,
.section-light-alt .check-list li,
.section-light-alt .prose p,
.section-light-alt .info-item { color: #52525b; }
.section-light-alt .stat-label { color: #71717a; }

/* Superfícies → branco com borda escura sutil */
.section-light-alt .feature-card,
.section-light-alt .gc-card,
.section-light-alt .event-card,
.section-light-alt .info-card,
.section-light-alt .person-card,
.section-light-alt .filter-group {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
.section-light-alt .event-card { background: #ffffff; }
.section-light-alt .feature-card:hover,
.section-light-alt .person-card:hover,
.section-light-alt .event-card:hover,
.section-light-alt .info-card:hover {
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}
.section-light-alt .gc-divider { border-top-color: rgba(0,0,0,0.08); }
.section-light-alt .info-card-text a { color: var(--accent-orange); }

/* Filtros no claro */
.section-light-alt .filter-pill { color: #52525b; }
.section-light-alt .filter-pill.active { background: #0A0A0C; color: #fff; }

/* Botão glass eventual no claro */
.section-light-alt .btn-glass-outline { color: #0A0A0C; border-color: rgba(0,0,0,0.15); }
.section-light-alt .btn-glass-outline:hover { background: rgba(0,0,0,0.04); border-color: var(--accent-orange); }

/* ═══════════════════════════════════════════════════════════════════════
   TEXTPATH BADGE SCROLLER (selo circular giratório · ref. DS4)
   ═══════════════════════════════════════════════════════════════════════ */
.badge-seal { display: flex; justify-content: center; margin-top: 28px; }
.rotating-badge-container-ds {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.rotating-svg-ds {
  width: 100%;
  height: 100%;
  color: var(--text-secondary);
  animation: spin-badge-ds 20s linear infinite;
}
.rotating-badge-container-ds:hover .rotating-svg-ds { animation-duration: 8s; }
.rotating-badge-center-ds {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--accent-orange-rgb), 0.35);
  transition: var(--transition-normal);
  z-index: 2;
}
.rotating-badge-center-ds svg { width: 30px; height: 30px; }
.rotating-badge-container-ds:hover .rotating-badge-center-ds {
  transform: scale(1.12);
  background: var(--accent-orange-hover);
}
@keyframes spin-badge-ds { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .nav-menu, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  #main-nav {
    flex-wrap: wrap;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
  }
  #main-nav.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
  }
  #main-nav.open .nav-menu a { padding: 12px 16px; }
  #main-nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 4;
    gap: 10px;
    margin-top: 4px;
  }
  #main-nav.open .btn-top { text-align: center; padding: 12px 18px; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2, .grid-3, .grid-auto { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 2.1rem; letter-spacing: -1px; }
  .section-desc { font-size: 1rem; margin-bottom: 40px; }
  .hero-wrapper { padding: 40px 24px; }
  .hero-wrapper--photo {
    min-height: 460px;
    padding: 56px 0;
    background: linear-gradient(180deg, rgba(9,9,11,.35) 0%, rgba(9,9,11,.78) 100%), url('culto.jpg') center / cover no-repeat;
    justify-content: center;
    align-items: center;
  }
  .hero-photo-inner { margin: 0 auto; text-align: center; }
  .hero-actions { justify-content: center; }
  #hero { padding-top: 140px; }
  #hero.hero-full { padding-top: 84px; }
  .hero-title { font-size: 2.6rem; letter-spacing: -2px; }
  .hero-desc { font-size: 1.05rem; }
  .section-light-alt.values-triad .feature-card {
    border-radius: 24px;
    padding: 26px 22px;
  }
  .section-light-alt.values-triad .feature-card::after {
    border-radius: 22px;
    background-size: auto;
  }
  .section-light-alt.values-triad .feature-icon { width: 44px; height: 44px; }
  .section-light-alt.values-triad .feature-title { font-size: 1.28rem; }
  .font-h1 { font-size: 2.4rem; }
  .font-h2 { font-size: 1.9rem; }
  .marquee-text { font-size: 1.6rem; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  /* ── Rodapé mobile compacto ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  /* Bloco da marca ocupa a linha inteira */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-grid > div:first-child .footer-brand { justify-content: center; }
  .footer-grid > div:first-child .footer-brand-sub,
  .footer-grid > div:first-child .footer-tagline { max-width: 100%; }
  /* Oculta CNPJ e endereço completo no mobile — info já está em Contato */
  .footer-grid > div:first-child .footer-fiscal { display: none; }
  /* Última coluna (Encontre-nos) também ocupa linha inteira,
     mas mostra só o horário e os ícones sociais */
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child .footer-contact-item:first-of-type { display: none; } /* endereço */
  .footer-socials { justify-content: flex-start; margin-top: 14px; }
  /* Centraliza o copyright */
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 4px; }
  .cards-row { gap: 20px; }
  .event-card, .gc-card, .sermon-player { max-width: 100%; }
  .pix-box { padding: 28px; }
  .person-img { height: 360px; }
  .rotating-badge-container-ds { width: 160px; height: 160px; }
  .rotating-badge-center-ds { width: 66px; height: 66px; }
  .badge-seal { margin-top: 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.8rem; letter-spacing: -0.5px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   AJUSTES 2026 — componentes adicionais
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── Botões de ícone na navbar (Instagram / YouTube) ───────────────────── */
.btn-icon-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
  text-decoration: none;
  transition: var(--transition-fast);
  flex-shrink: 0;
}
.btn-icon-top svg { width: 18px; height: 18px; }
.btn-icon-top:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-color-hover);
  color: var(--accent-orange);
}

/* ─── Frase no rodapé, abaixo do nome da igreja ─────────────────────────── */
.footer-brand-sub {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin: 8px 0 14px;
  letter-spacing: 0.2px;
}

/* ─── HERO centralizado (home) com capa mais escura ─────────────────────── */
.hero-wrapper--center {
  background:
    linear-gradient(180deg, rgba(9,9,11,.80) 0%, rgba(9,9,11,.68) 45%, rgba(9,9,11,.84) 100%),
    url('culto.jpg') center / cover no-repeat;
  justify-content: center;
}
.hero-photo-inner--center {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.hero-title--center {
  text-transform: none;
  font-size: clamp(1.6rem, 4.15vw, 3.2rem);
  letter-spacing: -1.5px;
  line-height: 1.14;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero-title--center { font-size: 2.3rem; }
}
@media (max-width: 480px) {
  .hero-title--center { font-size: 2rem; }
}

/* ─── Marquee suave (menor, opacidade reduzida) ─────────────────────────── */
.marquee-container--soft { padding: 16px 0; }
.marquee-container--soft .marquee-text {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(250, 250, 250, 0.5);
}
.marquee-container--soft .marquee-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(var(--accent-orange-rgb), 0.55);
}
.section-light-alt .marquee-container--soft .marquee-text { color: rgba(24, 24, 27, 0.5); }

/* ─── Vídeo incorporado (16:9 responsivo) ───────────────────────────────── */
.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 56px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ─── Carrossel de células (auto-rolagem horizontal) ────────────────────── */
.cell-carousel { position: relative; }
.cell-carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: none;
  scroll-behavior: smooth;
  padding: 6px 4px 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color-hover);
  background: rgba(14, 14, 17, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition-fast);
}
.carousel-nav:hover { background: var(--accent-orange); border-color: var(--accent-orange); color: #fff; }
.carousel-nav svg { width: 20px; height: 20px; }
.carousel-nav--prev { left: -4px; }
.carousel-nav--prev svg { transform: scaleX(-1); }
.carousel-nav--next { right: -4px; }

/* Player de vídeo em destaque sem badge — play centralizado, título embaixo */
.sermon-player--feature .sermon-player-overlay { justify-content: flex-end; }
.sermon-player--feature .sermon-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.sermon-player--feature:hover .sermon-play-btn { transform: translate(-50%, -50%) scale(1.1); }
@media (max-width: 768px) {
  .sermon-player--feature .sermon-play-btn { width: 50px; height: 50px; top: 38%; }
  .sermon-player--feature .sermon-play-btn svg { width: 17px; height: 17px; }
  .sermon-player--feature .sermon-title { font-size: 1.05rem; }
  .sermon-player--feature .sermon-speaker { font-size: 0.72rem; }
}
.cell-carousel-track::-webkit-scrollbar { display: none; }
.cell-carousel-track .gc-card {
  flex: 0 0 clamp(260px, 78vw, 320px);
  max-width: 340px;
  scroll-snap-align: start;
}

/* ─── Cartão de download da lição de célula ─────────────────────────────── */
.lesson-card {
  max-width: 760px;
  margin: 56px auto 0;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
}
.lesson-card .section-label { justify-content: center; }
.lesson-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.lesson-card-text {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.lesson-card-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Linha do tempo animada ao rolar (Sobre) ───────────────────────────── */
.timeline::before { background: rgba(var(--accent-orange-rgb), 0.18); }
.timeline-progress {
  position: absolute;
  left: 7px;
  top: 6px;
  width: 2px;
  height: 0;
  background: var(--accent-orange);
  box-shadow: 0 0 12px rgba(var(--accent-orange-rgb), 0.7);
  transition: height 0.2s linear;
  z-index: 1;
}
.timeline-item::before {
  background: rgba(var(--accent-orange-rgb), 0.3);
  box-shadow: 0 0 0 4px rgba(var(--accent-orange-rgb), 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.timeline-item.reached::before {
  background: var(--accent-orange);
  box-shadow: 0 0 0 5px rgba(var(--accent-orange-rgb), 0.25);
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .lesson-card { padding: 34px 24px; }
  .lesson-card-title { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cell-carousel-track { scroll-behavior: auto; }
  .timeline-progress { transition: none; }
}
