/* ==========================================================================
   IGREJA LUZ DA VERDADE — DESIGN SYSTEM & STYLES (ESTILO LAGOINHA / CONTEMPORÂNEO)
   ========================================================================== */

:root {
  /* Cores Principais - Dark Cinema & Gold Luxury */
  --bg-dark: #070B14;
  --bg-surface: #0E1626;
  --bg-card: rgba(18, 27, 45, 0.75);
  --bg-card-hover: rgba(26, 38, 64, 0.9);
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-champagne: #E6C794;
  --gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA820A 100%);
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-gold-hover: rgba(212, 175, 55, 0.8);
  
  /* Sombras & Efeitos */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.3);
  --shadow-neon: 0 0 40px rgba(212, 175, 55, 0.4);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Outfit', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR (ESTILO LAGOINHA)
   ========================================================================== */
.topbar {
  background: #04060B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 600;
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--gold-primary);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.45));
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.75));
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: #CBD5E1;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-champagne);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #070B14;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-primary);
  color: #070B14;
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HERO SECTION (CINEMATOGRÁFICO ESTILO LAGOINHA)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px 0;
  overflow: hidden;
  background: #070B14;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 22, 38, 0.3) 0%, #070B14 85%),
              url('assets/real/thumb_ceia.jpg') center center / cover no-repeat;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.02);
  z-index: 1;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.7) 0%, rgba(7, 11, 20, 0.4) 40%, #070B14 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-champagne);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.hero-verse-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(14px);
}

.hero-verse-badge strong {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: var(--gold-primary);
}

.hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title .text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #CBD5E1;
  max-width: 720px;
  margin: 0 auto 40px auto;
  font-weight: 400;
  line-height: 1.8;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Countdown Bar */
.hero-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(14, 22, 38, 0.85);
  border: 1px solid var(--border-gold);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section {
  padding: 110px 0;
  position: relative;
}

.section-darker {
  background: #05080E;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-block;
  color: var(--gold-champagne);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CULTOS (SCHEDULE CARDS - ESTILO LAGOINHA)
   ========================================================================== */
.cultos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.culto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
}

.culto-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  background: var(--bg-card-hover);
}

.culto-card.featured {
  border: 1px solid var(--gold-primary);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(14, 22, 38, 0.9) 100%);
}

.culto-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--gold-gradient);
  color: #070B14;
}

.culto-day {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 8px;
}

.culto-time {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 16px;
}

.culto-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.culto-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

/* ==========================================================================
   PASTORAL HERO CARD
   ========================================================================== */
.pastoral-banner-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.pastoral-img-side {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
}

.pastoral-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.pastoral-content-side {
  padding: 60px 48px;
}

.pastoral-tag {
  color: var(--gold-champagne);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.pastoral-content-side h3 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.pastoral-content-side p {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.pastoral-quote {
  border-left: 3px solid var(--gold-primary);
  padding-left: 18px;
  font-style: italic;
  color: var(--gold-champagne);
  margin-bottom: 32px;
}

/* ==========================================================================
   GC's / CÉLULAS (ESTILO LAGOINHA)
   ========================================================================== */
.gc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.gc-content h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.gc-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.gc-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gc-step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.gc-step-card:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
}

.gc-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   LUZ KIDS & COLÉGIO CRISTÃO
   ========================================================================== */
.kids-banner {
  background: linear-gradient(135deg, rgba(14, 22, 38, 0.95), rgba(7, 11, 20, 0.98)),
              url('assets/real/thumb_familia.jpg') center/cover;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.kids-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kids-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-champagne);
}

/* ==========================================================================
   VIDEO PLAYER CINEMA (YOUTUBE REAL)
   ========================================================================== */
.cinema-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.cinema-screen {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 50px rgba(0,0,0,0.8);
}

.cinema-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cinema-playlist {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cinema-item-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.cinema-item-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.cinema-item-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.cinema-item-thumb {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cinema-item-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.cinema-item-info span {
  font-size: 0.78rem;
  color: var(--gold-champagne);
}

/* ==========================================================================
   INSTAGRAM FEED REAL
   ========================================================================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.insta-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.insta-tile-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.insta-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-tile:hover .insta-tile-media img {
  transform: scale(1.06);
}

.insta-tile-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 11, 20, 0.8);
  backdrop-filter: blur(8px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.insta-tile-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insta-tile-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-champagne);
  margin-bottom: 6px;
}

.insta-tile-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

/* ==========================================================================
   DÍZIMOS & OFERTAS (ESTILO LAGOINHA CONTRIBUA)
   ========================================================================== */
.giving-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.giving-info-col h3 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.giving-info-col p {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.giving-box-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  backdrop-filter: blur(20px);
}

.giving-pix-display {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
}

.giving-pix-key {
  font-family: monospace;
  font-size: 1.15rem;
  color: var(--gold-champagne);
  font-weight: 700;
}

/* ==========================================================================
   LOCALIZAÇÃO & MAPA ESTILIZADO
   ========================================================================== */
.map-styled-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}

.map-styled-info {
  padding: 48px;
}

.map-styled-frame {
  height: 100%;
  min-height: 400px;
}

.map-styled-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
}

/* ==========================================================================
   FOOTER (ESTILO LAGOINHA)
   ========================================================================== */
.footer {
  background: #030509;
  border-top: 1px solid var(--border-glass);
  padding: 80px 0 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--gold-champagne);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--gold-champagne);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-surface);
  color: #FFFFFF;
  border: 1px solid var(--gold-primary);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #070B14;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
}

/* Responsive */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .pastoral-banner-card { grid-template-columns: 1fr; }
  .pastoral-img-side { min-height: 360px; }
  .cinema-wrapper { grid-template-columns: 1fr; }
  .giving-grid { grid-template-columns: 1fr; }
  .map-styled-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .kids-banner { grid-template-columns: 1fr; }
  .gc-feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .culto-time { font-size: 2.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-container { flex-direction: column; gap: 4px; text-align: center; }
  .giving-pix-display { flex-direction: column; text-align: center; }
  .btn { width: 100%; }
}

/* ==========================================================================
   SEMINÁRIO DNA & DESTAQUE DE EVENTOS
   ========================================================================== */
.event-featured-section {
  padding: 80px 0;
  background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 60%), #070B14;
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-featured-card {
  background: linear-gradient(135deg, rgba(14, 22, 38, 0.95), rgba(7, 11, 20, 0.98));
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(14, 165, 233, 0.15);
  backdrop-filter: blur(20px);
}

.event-featured-img {
  position: relative;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #020408;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.event-featured-card:hover .event-featured-img img {
  transform: scale(1.03);
}

.event-featured-content {
  padding: 50px 48px;
}

.event-tag-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.4);
  color: #38BDF8;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.event-featured-title {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.event-featured-verse {
  border-left: 3px solid #38BDF8;
  padding-left: 16px;
  font-style: italic;
  color: #BAE6FD;
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.event-meta-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
}

.event-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.event-meta-val {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .event-featured-card {
    grid-template-columns: 1fr;
  }
  .event-featured-img {
    min-height: 380px;
  }
  .event-featured-content {
    padding: 36px 24px;
  }
  .event-meta-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   OS 4 PILARES DA VISÃO — LUZ DA VERDADE
   ========================================================================== */
.vision-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.vision-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}

.vision-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.2);
  background: var(--bg-card-hover);
}

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

.vision-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.vision-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.vision-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.vision-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.vision-reference {
  display: inline-block;
  color: var(--gold-champagne);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vision-verse {
  border-left: 3px solid var(--gold-primary);
  padding-left: 14px;
  font-style: italic;
  color: #E2E8F0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
  background: rgba(212, 175, 55, 0.05);
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vision-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

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