/* ═══════════════════════════════════════════════════════
   EVANGELISMO DE RUA — ESTILOS GLOBAIS
   Versão: 2.0  |  Design: Ultra Premium Extraordinary
═══════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES FOR ANIMATION ────────────── */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-pos {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: false;
}

/* ─── RESET & VARIABLES ─────────────────────────────── */
:root {
  --orange: #FF6B1A;
  --orange-light: #FF8C4A;
  --orange-dark: #E55A0A;
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-600: #616161;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-orange: 0 8px 32px rgba(255,107,26,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', sans-serif;
  --font-title: 'Oswald', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Noise/grain texture overlay for premium depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: overlay;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease-out-expo); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange-dark); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

::selection {
  background: rgba(255, 107, 26, 0.3);
  color: var(--white);
}

/* ─── UTILS ──────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.section {
  padding: 96px 0;
  position: relative;
}
.full-width { width: 100%; }

/* ─── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0, 1), visibility 0.6s cubic-bezier(0.4, 0, 0, 1);
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-content { text-align: center; }

.loader-cross {
  width: 60px; height: 60px;
  position: relative; margin: 0 auto 16px;
  animation: pulse-cross 1.5s ease-in-out infinite;
}
.loader-v {
  position: absolute; left: 50%; top: 0;
  width: 6px; height: 100%; background: var(--orange);
  border-radius: 3px; transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.5);
}
.loader-h {
  position: absolute; top: 30%; left: 0;
  width: 100%; height: 6px; background: var(--white);
  border-radius: 3px; transform: translateY(-50%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
@keyframes pulse-cross {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.8; }
}
.loader-content p {
  font-family: var(--font-title);
  font-size: 1rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gray-400);
}

/* ─── HEADER ─────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease-out-expo);
}
#header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border-bottom: 1px solid rgba(255, 107, 26, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 107, 26, 0.06);
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: 1400px; margin: 0 auto;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-logo:hover { transform: scale(1.03); }
.nav-logo img {
  height: 48px; width: auto; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 107, 26, 0.15));
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-title);
  font-size: 1.2rem; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
}
.logo-sub {
  font-family: var(--font-title);
  font-size: 0.85rem; color: var(--orange);
  letter-spacing: 3px;
}

.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out-expo); color: var(--gray-200);
  letter-spacing: 0.5px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out-expo);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(255, 107, 26, 0.4);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}
.nav-admin {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  box-shadow: 0 4px 16px rgba(255, 107, 26, 0.25);
}
.nav-admin::after { display: none; }
.nav-admin:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, #c44e08 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 107, 26, 0.4);
}
.nav-admin i { margin-right: 6px; font-size: 0.8rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 30% 50%, rgba(31, 9, 0, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 70% 50%, rgba(13, 4, 0, 0.8) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 107, 26, 0.04) 0%, transparent 50%),
    var(--black);
}

.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 600px at 20% 80%, rgba(255,107,26,0.1) 0%, transparent 45%),
    radial-gradient(circle 500px at 80% 20%, rgba(255,107,26,0.07) 0%, transparent 45%),
    radial-gradient(circle 300px at 50% 50%, rgba(255,140,74,0.03) 0%, transparent 40%);
  pointer-events: none;
  animation: heroOverlayShift 12s ease-in-out infinite alternate;
}
@keyframes heroOverlayShift {
  0% { opacity: 0.8; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.hero-particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--orange);
  animation: float-particle linear infinite;
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(255, 107, 26, 0.3);
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.7; }
  50% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

/* ── HERO INNER LAYOUT ─────────────────────────────── */
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  gap: 0; width: 100%; max-width: 1100px;
  padding: 100px 32px 24px;
}

/* ── DIVIDER ──────────────────────────────────────── */
.hero-divider {
  width: 2px; height: 320px; flex-shrink: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255,107,26,0.15) 15%,
    rgba(255,107,26,0.6) 30%,
    rgba(255,107,26,0.6) 70%,
    rgba(255,107,26,0.15) 85%,
    transparent 100%);
  margin: 0 56px;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 107, 26, 0.15);
}
.hero-divider::before {
  content: '✝';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--black);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--orange);
  line-height: 40px; text-align: center;
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.3), inset 0 0 10px rgba(255, 107, 26, 0.1);
}

/* ══════════════════════════════════════════════════════
   COLUNA ESQUERDA — EVANGELISMO DE RUA
══════════════════════════════════════════════════════ */
.hero-banner-left {
  flex: 1; display: flex; justify-content: flex-end;
}

.banner-logo-block {
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
  filter: drop-shadow(0 0 50px rgba(255,107,26,0.2));
}

/* ── POSTE ────────────────────────────────────────── */
.banner-lamppost {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: -4px; align-self: flex-start;
  margin-left: 24px;
}
.lamp-head { display: flex; align-items: flex-end; gap: 0; }
.lamp-arm {
  width: 40px; height: 3px;
  background: var(--white);
  border-radius: 2px;
}
.lamp-bulb {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50% 50% 40% 40%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--white);
  box-shadow:
    0 0 16px 6px rgba(255,200,80,0.45),
    0 0 30px 10px rgba(255,140,30,0.2),
    0 0 60px 20px rgba(255,107,26,0.1);
  position: relative;
  animation: lampFlicker 3s ease-in-out infinite;
}
@keyframes lampFlicker {
  0%, 100% { box-shadow: 0 0 16px 6px rgba(255,200,80,0.45), 0 0 30px 10px rgba(255,140,30,0.2), 0 0 60px 20px rgba(255,107,26,0.1); }
  50% { box-shadow: 0 0 20px 8px rgba(255,200,80,0.55), 0 0 40px 14px rgba(255,140,30,0.3), 0 0 80px 28px rgba(255,107,26,0.15); }
}

.lamp-glow {
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 30px;
  background: radial-gradient(ellipse, rgba(255,210,80,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.lamp-pole {
  width: 3px; height: 52px;
  background: linear-gradient(to bottom, var(--white), var(--gray-400));
  border-radius: 2px; margin-left: 0;
}

/* ── TÍTULO EVANGELISMO ───────────────────────────── */
.banner-title-block {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px;
}

.banner-evangelismo {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 700; letter-spacing: 4px;
  color: var(--white); text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

.banner-de-rua {
  display: flex; align-items: center; gap: 10px;
}

.banner-de {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 300; color: var(--white);
  font-style: italic; line-height: 1;
}

/* ── BONECO WALKER SVG ────────────────────────────── */
.banner-walker {
  width: clamp(44px, 7vw, 68px);
  filter: drop-shadow(0 0 16px rgba(255,107,26,0.7));
  animation: walker-walk 1.2s ease-in-out infinite alternate;
}
.walker-svg { width: 100%; height: auto; }
@keyframes walker-walk {
  from { transform: translateY(0) rotate(-2deg); }
  to   { transform: translateY(-5px) rotate(2deg); }
}

.banner-rua {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700; letter-spacing: 3px;
  color: var(--white); text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 40px rgba(255,255,255,0.1), 0 2px 20px rgba(0,0,0,0.5);
}

/* ── FAIXA DE PEDESTRE ────────────────────────────── */
.banner-crosswalk {
  display: flex; gap: 6px;
  margin-top: 10px; width: 100%;
  justify-content: center;
}
.crosswalk-stripe {
  flex: 1; height: 14px; max-width: 52px;
  background: var(--white);
  border-radius: 2px;
  opacity: 0.95;
  animation: crosswalk-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}
.crosswalk-stripe:nth-child(2) { animation-delay: 0.15s; }
.crosswalk-stripe:nth-child(3) { animation-delay: 0.3s; }
.crosswalk-stripe:nth-child(4) { animation-delay: 0.45s; }
.crosswalk-stripe:nth-child(5) { animation-delay: 0.6s; }
@keyframes crosswalk-pulse {
  0%, 100% { opacity: 0.95; }
  50%       { opacity: 0.55; }
}

/* ── TAGLINE ──────────────────────────────────────── */
.banner-tagline {
  font-size: clamp(0.65rem, 1.2vw, 0.78rem);
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray-400); font-style: italic;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════
   COLUNA DIREITA — EVANGELIZAR É PRECISO!
══════════════════════════════════════════════════════ */
.hero-banner-right {
  flex: 1; display: flex; flex-direction: column;
  align-items: flex-start; gap: 36px;
}

.banner-preciso-block {
  display: flex; align-items: center;
}

.preciso-inner { display: flex; flex-direction: column; gap: 2px; }

.preciso-line1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--white);
  line-height: 1.1; letter-spacing: 1px;
}
.preciso-e {
  font-style: italic; font-weight: 300;
  color: var(--white);
}

.preciso-title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; line-height: 1;
  color: var(--white);
  text-shadow:
    0 0 80px rgba(255,107,26,0.3),
    0 0 120px rgba(255,107,26,0.12),
    0 4px 24px rgba(0,0,0,0.5);
  animation: preciso-glow 3s ease-in-out infinite alternate;
}
@keyframes preciso-glow {
  from { text-shadow: 0 0 60px rgba(255,107,26,0.2), 0 0 100px rgba(255,107,26,0.08), 0 4px 24px rgba(0,0,0,0.5); }
  to   { text-shadow: 0 0 100px rgba(255,107,26,0.4), 0 0 160px rgba(255,107,26,0.15), 0 4px 24px rgba(0,0,0,0.5); }
}

.preciso-underline {
  height: 5px; width: 80px;
  background: linear-gradient(to right, var(--orange), var(--orange-light), transparent);
  border-radius: var(--radius-full);
  margin-top: 10px;
  animation: underline-grow 1s ease 0.5s both;
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.4);
}
@keyframes underline-grow {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}

/* ── CTAs ─────────────────────────────────────────── */
.hero-cta-wrap {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.7s both;
}
.hero-cta-btn { font-size: 0.92rem; padding: 13px 28px; }

/* ── HERO ACTIONS (legado) ───────────────────────── */
.hero-content { display: none; }
.hero-actions  { display: none; }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.35s var(--ease-out-expo);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.35s var(--ease-out-expo);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,26,0.3), 0 0 0 0 rgba(255,107,26,0);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(255,107,26,0.45), 0 0 20px rgba(255,107,26,0.15);
}
.btn-primary:active { transform: translateY(-1px) scale(1); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255,107,26,0.12), inset 0 0 20px rgba(255,107,26,0.05);
}

/* ─── HERO STATS ──────────────────────────────────────── */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-top: 60px; overflow: hidden;
  animation: fade-in-up 0.8s ease 0.8s both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.stat-item {
  flex: 1; padding: 28px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: var(--orange);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
  box-shadow: 0 0 10px rgba(255,107,26,0.5);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover {
  background: rgba(255,107,26,0.08);
}
.stat-item:hover::after {
  transform: scaleX(1);
}
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem; font-weight: 700;
  color: var(--orange);
  transition: all 0.3s var(--ease-out-expo);
  text-shadow: 0 0 20px rgba(255,107,26,0.2);
}
.stat-item:hover .stat-num {
  transform: scale(1.1);
  text-shadow: 0 0 30px rgba(255,107,26,0.4);
}
.stat-label {
  display: block; font-size: 0.8rem;
  color: var(--gray-400); margin-top: 4px;
}

/* ─── SCROLL INDICATOR ────────────────────────────────── */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  animation: bounce 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transition: all 0.3s var(--ease-out-expo);
  backdrop-filter: blur(8px);
}
.scroll-indicator:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 16px rgba(255,107,26,0.2);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  30% { opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.8; }
  70% { opacity: 1; }
}

/* ─── SECTION HEADERS ─────────────────────────────────── */
.section-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--orange);
  background: rgba(255,107,26,0.08);
  border: 1px solid rgba(255,107,26,0.2);
  padding: 6px 18px; border-radius: var(--radius-full);
  margin-bottom: 16px;
  animation: tagPulse 3s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,107,26,0);
}
@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
  50% { box-shadow: 0 0 0 6px rgba(255,107,26,0.06), 0 0 20px rgba(255,107,26,0.08); }
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--gray-400); font-size: 1.05rem;
}

/* ─── SOBRE ───────────────────────────────────────────── */
.sobre-section {
  background: var(--black-2);
  position: relative;
}
.sobre-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,26,0.2) 50%, transparent 100%);
}

.sobre-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.sobre-intro {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--gray-200); margin-bottom: 40px;
}

.sobre-mvv { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.mvv-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px; border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(8px);
}
.mvv-card:hover {
  border-color: rgba(255,107,26,0.3);
  background: rgba(255,107,26,0.06);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), -4px 0 20px rgba(255,107,26,0.06);
}
.mvv-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white);
  box-shadow: 0 4px 12px rgba(255,107,26,0.25);
  transition: transform 0.3s var(--ease-spring);
}
.mvv-card:hover .mvv-icon { transform: scale(1.1) rotate(-3deg); }
.mvv-content h4 {
  font-family: var(--font-title);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; color: var(--white);
  margin-bottom: 4px;
}
.mvv-content p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.6; }

.valores-list h4 {
  font-family: var(--font-title); font-size: 1rem;
  letter-spacing: 1px; color: var(--gray-200);
  margin-bottom: 12px; text-transform: uppercase;
}
.valores-list ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.valores-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--gray-400);
  transition: color 0.25s ease;
}
.valores-list li:hover { color: var(--white); }
.valores-list li i { color: var(--orange); font-size: 0.85rem; }

.sobre-visual { display: flex; justify-content: center; }
.sobre-img-container { position: relative; width: 100%; max-width: 480px; }

.sobre-img-main {
  position: relative; z-index: 2;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 60px 40px;
  text-align: center;
  transition: all 0.5s var(--ease-out-expo);
}
.sobre-img-main:hover {
  border-color: rgba(255,107,26,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(255,107,26,0.06);
}
.sobre-logo-big { max-width: 280px; margin: 0 auto; }

.sobre-placeholder { text-align: center; }
.sobre-placeholder i {
  font-size: 4rem; color: var(--orange);
  margin-bottom: 24px; display: block;
  filter: drop-shadow(0 0 20px rgba(255,107,26,0.3));
}
.sobre-placeholder p {
  font-size: 1.1rem; font-style: italic;
  color: var(--gray-200); line-height: 1.7;
  margin-bottom: 12px;
}
.sobre-placeholder span { font-size: 0.9rem; color: var(--orange); font-weight: 600; }

.sobre-img-deco {
  position: absolute; top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: var(--orange); opacity: 0.06;
  border-radius: 50%; z-index: 1;
  animation: decoFloat 6s ease-in-out infinite alternate;
}
@keyframes decoFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-10px, 10px) scale(1.08); }
}

/* ─── VIDEOS ──────────────────────────────────────────── */
.videos-section {
  background: var(--black);
  position: relative;
}
.videos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; margin-bottom: 48px;
}

.video-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.45s var(--ease-out-expo);
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,107,26,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,26,0.08);
}
.video-card.destaque { border-color: rgba(255,107,26,0.25); }

.video-embed {
  position: relative; padding-top: 56.25%;
  background: var(--black-4);
}
.video-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

.video-info { padding: 20px; }
.video-info h3 {
  font-family: var(--font-title);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.video-info p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.5; }
.video-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--orange);
  margin-top: 12px;
}

.video-skeleton {
  background: var(--black-3);
  border-radius: var(--radius-md);
  height: 260px;
  animation: skeleton-pulse 1.5s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.04);
}
@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── FOTOS ───────────────────────────────────────────── */
.fotos-section {
  background: var(--black-2);
  position: relative;
}
.fotos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,26,0.15) 50%, transparent 100%);
}
/* Dot pattern for depth */
.fotos-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.album-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
  transition: all 0.45s var(--ease-out-expo);
}
.album-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255,107,26,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(255,107,26,0.08);
}

.album-cover {
  position: relative; height: 200px;
  background: var(--black-4);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.album-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.album-card:hover .album-cover img { transform: scale(1.08); }
.album-cover-placeholder {
  font-size: 3rem; color: var(--gray-600);
}
.album-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.8rem; color: var(--white);
}
.album-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,26,0.65) 0%, rgba(229,90,10,0.6) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s var(--ease-out-expo);
}
.album-card:hover .album-overlay { opacity: 1; }
.album-overlay i { font-size: 2.5rem; color: var(--white); }

.album-info { padding: 20px; }
.album-info h3 {
  font-family: var(--font-title);
  font-size: 1rem; font-weight: 600; margin-bottom: 6px;
}
.album-info p { font-size: 0.85rem; color: var(--gray-400); }
.album-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--orange);
  margin-top: 10px;
}

/* ─── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-content {
  text-align: center; max-width: 90vw;
  transform: scale(0.92);
  transition: transform 0.5s var(--ease-spring);
}
.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-content img {
  max-height: 75vh; max-width: 90vw;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.lightbox-content p {
  color: var(--gray-400); margin-top: 16px; font-size: 0.9rem;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease-out-expo);
  backdrop-filter: blur(12px);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255,107,26,0.3);
  transform: translateY(-50%) scale(1.08);
}
.lightbox-close:hover { transform: scale(1.08); }

/* ─── EVENTOS ─────────────────────────────────────────── */
.eventos-section {
  background: var(--black);
  position: relative;
}
.eventos-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
}

.eventos-list { display: flex; flex-direction: column; gap: 20px; }

.evento-card {
  display: flex; gap: 0;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.evento-card:hover {
  border-color: rgba(255,107,26,0.35);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), -4px 0 20px rgba(255,107,26,0.06);
}
.evento-card.destaque { border-left: 3px solid var(--orange); }

.evento-date-box {
  min-width: 100px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 16px; text-align: center;
  position: relative;
  overflow: hidden;
}
.evento-date-box::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.evento-day {
  font-family: var(--font-title);
  font-size: 2.5rem; font-weight: 700;
  line-height: 1; color: var(--white);
  position: relative; z-index: 1;
}
.evento-month {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 4px;
  position: relative; z-index: 1;
}

.evento-info { padding: 24px; flex: 1; }
.evento-tipo {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}
.evento-info h3 {
  font-family: var(--font-title);
  font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.evento-info p { font-size: 0.9rem; color: var(--gray-400); margin-bottom: 16px; }
.evento-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.evento-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--gray-400);
}
.evento-meta i { color: var(--orange); }

/* ─── CONTATO ─────────────────────────────────────────── */
.contato-section {
  background: var(--black-2);
  position: relative;
}
.contato-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,26,0.15) 50%, transparent 100%);
}
/* Dot pattern */
.contato-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.contato-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
  position: relative;
  z-index: 1;
}

.contato-info { display: flex; flex-direction: column; gap: 20px; }
.contato-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 20px; border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(8px);
}
.contato-card:hover {
  border-color: rgba(255,107,26,0.3);
  transform: translateX(4px);
  background: rgba(255,107,26,0.04);
}
.contato-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(255,107,26,0.12);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--orange);
  transition: all 0.3s var(--ease-spring);
}
.contato-card:hover .contato-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255,107,26,0.2);
  box-shadow: 0 4px 16px rgba(255,107,26,0.2);
}
.contato-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray-400); margin-bottom: 4px; }
.contato-card p { font-size: 0.95rem; color: var(--white); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.35s var(--ease-out-expo);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.social-btn:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-md); }
.social-btn.facebook { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.25); }
.social-btn.facebook:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 8px 25px rgba(24,119,242,0.35); }
.social-btn.instagram { background: rgba(228,64,95,0.15); border-color: rgba(228,64,95,0.25); }
.social-btn.instagram:hover { background: #E4405F; border-color: #E4405F; box-shadow: 0 8px 25px rgba(228,64,95,0.35); }
.social-btn.youtube { background: rgba(255,0,0,0.15); border-color: rgba(255,0,0,0.25); }
.social-btn.youtube:hover { background: #FF0000; border-color: #FF0000; box-shadow: 0 8px 25px rgba(255,0,0,0.35); }

.contato-form-wrap {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 40px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}
.contato-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.contato-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-200); letter-spacing: 0.02em; }
.form-group input, .form-group textarea {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--white);
  transition: all 0.35s var(--ease-out-expo);
  resize: none;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-600); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,26,0.12), 0 0 20px rgba(255,107,26,0.06);
  background: rgba(10, 10, 10, 1);
}

.form-success {
  text-align: center; padding: 60px 40px;
}
.form-success i { font-size: 4rem; color: var(--orange); margin-bottom: 16px; display: block; filter: drop-shadow(0 0 16px rgba(255,107,26,0.3)); }
.form-success h4 { font-family: var(--font-title); font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-400); }

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,26,0.3), transparent);
}
/* Ambient glow in footer */
.footer::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(255,107,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top { padding: 56px 0 48px; position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr) minmax(240px, 1fr);
  gap: 40px 56px;
  align-items: start;
}

.footer-tag {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.65;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.footer-nav-col h4,
.footer-verse h4 {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col a,
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
}

.footer-nav-col a:hover,
.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-verse blockquote {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--gray-200);
  line-height: 1.75;
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 18px;
  margin: 0;
  background: rgba(255,107,26,0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.footer-verse cite {
  display: block;
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  font-style: normal;
  margin-top: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: var(--gray-600);
  margin: 0;
}

.footer-bottom-extra {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-admin-link {
  color: var(--gray-600);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-admin-link:hover {
  color: var(--gray-400);
}

/* ─── BACK TO TOP ─────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(255,107,26,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; z-index: 100;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all 0.4s var(--ease-out-expo);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,107,26,0.45);
}

/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos].aos-animate { opacity: 1; transform: translate(0); }

/* ─── SECTION CTA ─────────────────────────────────────── */
.section-cta { text-align: center; }

/* ─── EMPTY STATE ─────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 60px 24px;
  color: var(--gray-600);
}
.empty-state i { font-size: 3rem; margin-bottom: 16px; display: block; }
.empty-state p { font-size: 1rem; }

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-visual { display: none; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-verse { grid-column: 1 / -1; }

  /* Banner tablet */
  .hero-inner { padding: 90px 24px 20px; gap: 0; }
  .hero-divider { margin: 0 32px; height: 260px; }
  .preciso-title { font-size: clamp(2.4rem, 6vw, 4.5rem); }
}

@media (max-width: 800px) {
  /* Banner: empilhar verticalmente no mobile */
  .hero-inner {
    flex-direction: column; align-items: center;
    padding: 90px 20px 16px; gap: 32px;
  }
  .hero-banner-left { justify-content: center; }
  .hero-banner-right { align-items: center; }
  .banner-preciso-block { justify-content: center; }
  .preciso-line1 { text-align: center; }
  .preciso-title { font-size: clamp(2.6rem, 12vw, 4.8rem); text-align: center; }
  .preciso-underline { margin: 10px auto 0; }
  .hero-cta-wrap { justify-content: center; }

  .hero-divider {
    width: 200px; height: 2px;
    background: linear-gradient(to right,
      transparent 0%, rgba(255,107,26,0.6) 30%,
      rgba(255,107,26,0.6) 70%, transparent 100%);
    margin: 0;
  }
  .hero-divider::before { top: 50%; left: 50%; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,107,26,0.1);
    flex-direction: column; justify-content: center;
    gap: 4px; padding: 80px 24px;
    transition: right 0.4s var(--ease-out-expo);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  .nav-menu.open { right: 0; }
  .nav-link { font-size: 1rem; padding: 12px 20px; }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }

  .hero-stats {
    flex-wrap: wrap; margin-top: 32px;
  }
  .stat-item {
    flex: 1; min-width: 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .videos-grid { grid-template-columns: 1fr; }
  .albums-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-verse { grid-column: auto; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .valores-list ul { grid-template-columns: 1fr; }

  .evento-card { flex-direction: column; }
  .evento-date-box { flex-direction: row; gap: 8px; padding: 16px 20px; }
  .evento-day { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .footer-nav { grid-template-columns: 1fr; gap: 24px; }
  .contato-form-wrap { padding: 24px; }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
  .hero-cta-btn { padding: 12px 20px; font-size: 0.88rem; }
  .banner-evangelismo { letter-spacing: 2px; }
  .banner-rua { font-size: clamp(2rem, 10vw, 3.4rem); }
}

/* ═══════════════════════════════════════════════════════
   SEÇÃO OFERTA / PIX
═══════════════════════════════════════════════════════ */

/* ─── Nav link especial Oferta ───────────────────────── */
.nav-oferta {
  color: var(--orange) !important;
  font-weight: 600;
}
.nav-oferta i { margin-right: 4px; }

.nav-theos {
  color: var(--orange) !important;
  font-weight: 600;
}
.nav-theos i { margin-right: 4px; }

.nav-devocional {
  color: var(--white) !important;
  font-weight: 700;
  background: rgba(255, 107, 26, 0.18);
  border: 1px solid rgba(255, 107, 26, 0.45);
  padding: 8px 16px !important;
  box-shadow: 0 0 0 0 rgba(255,107,26,0);
  animation: devocionalPulse 3s ease-in-out infinite;
}
@keyframes devocionalPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0); }
  50% { box-shadow: 0 0 0 4px rgba(255,107,26,0.08); }
}
.nav-devocional::after { display: none; }
.nav-devocional:hover {
  color: var(--white) !important;
  background: rgba(255, 107, 26, 0.32);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255,107,26,0.3);
  animation: none;
}
.nav-devocional i { margin-right: 6px; color: var(--orange-light); }

/* ─── Fundo da seção ─────────────────────────────────── */
.oferta-section {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.oferta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,26,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: decoFloat 8s ease-in-out infinite alternate;
}
.oferta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,26,0.05) 0%, transparent 70%);
  pointer-events: none;
  animation: decoFloat 10s ease-in-out infinite alternate-reverse;
}

/* ─── Grid ───────────────────────────────────────────── */
.oferta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

/* ─── Coluna Texto ───────────────────────────────────── */
.oferta-verse {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 28px 28px 28px 32px;
  margin-bottom: 36px;
  position: relative;
  backdrop-filter: blur(8px);
}
.oferta-quote-icon {
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.7;
}
.oferta-verse blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-200);
  font-style: italic;
  margin-bottom: 12px;
}
.oferta-verse cite {
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 600;
  font-style: normal;
}

.oferta-items { display: flex; flex-direction: column; gap: 20px; }

.oferta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  transition: all 0.4s var(--ease-out-expo);
  backdrop-filter: blur(6px);
}
.oferta-item:hover {
  border-color: rgba(255,107,26,0.3);
  transform: translateX(6px);
  background: rgba(255,107,26,0.04);
}
.oferta-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255,107,26,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-spring);
}
.oferta-item:hover .oferta-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(255,107,26,0.2);
  box-shadow: 0 4px 16px rgba(255,107,26,0.2);
}
.oferta-item-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}
.oferta-item-text p {
  font-size: 0.85rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ─── Cartão PIX ──────────────────────────────────────── */
.oferta-pix-wrap { display: flex; justify-content: center; }

.pix-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(34,34,34,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,26,0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.5s var(--ease-out-expo);
}
.pix-card:hover {
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 40px rgba(255,107,26,0.06);
  transform: translateY(-4px);
}
.pix-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-light), var(--orange));
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
}
@keyframes gradientSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Header do cartão PIX */
.pix-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pix-logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,107,26,0.15);
  border: 2px solid rgba(255,107,26,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  box-shadow: 0 0 20px rgba(255,107,26,0.1);
}
.pix-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 2px;
}
.pix-card-title p {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin: 0;
}

/* Área da chave */
.pix-key-area { margin-bottom: 24px; }

.pix-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 10px;
  font-weight: 600;
}
.pix-label i { margin-right: 6px; color: var(--orange); }

.pix-key-box {
  display: flex;
  align-items: center;
  background: var(--black);
  border: 1px solid rgba(255,107,26,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.35s var(--ease-out-expo);
}
.pix-key-box:hover {
  border-color: rgba(255,107,26,0.5);
  box-shadow: 0 0 15px rgba(255,107,26,0.08);
}

.pix-key-text {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--white);
  font-family: monospace;
  letter-spacing: 0.5px;
  word-break: break-all;
}

.pix-copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 100%;
  min-height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 0;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.pix-copy-btn:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
}
.pix-copy-btn:active { transform: scale(0.97); }

/* Divisor */
.pix-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 24px 0;
}

/* Steps como fazer */
.pix-steps-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.pix-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pix-steps-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-200);
  transition: color 0.25s ease;
}
.pix-steps-list li:hover { color: var(--white); }
.pix-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,107,26,0.15);
  border: 1px solid rgba(255,107,26,0.35);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Agradecimento */
.pix-thanks {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255,107,26,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,107,26,0.12);
}
.pix-thanks i {
  color: var(--orange);
  font-size: 1.1rem;
  animation: heartbeat 1.6s ease-in-out infinite;
}
.pix-thanks p {
  font-size: 0.9rem;
  color: var(--gray-200);
  font-style: italic;
  margin: 0;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
}

/* ─── Toast de confirmação ───────────────────────────── */
.pix-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #1e7e34 0%, #156d28 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(30,126,52,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  z-index: 9000;
  white-space: nowrap;
}
.pix-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pix-toast i { margin-right: 8px; }

/* ─── Responsivo ──────────────────────────────────────── */
@media (max-width: 900px) {
  .oferta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .oferta-pix-wrap { justify-content: center; }
  .pix-card { max-width: 100%; }
}
@media (max-width: 480px) {
  .pix-card { padding: 24px 20px; }
  .pix-key-text { font-size: 0.78rem; padding: 12px; }
  .pix-copy-btn { padding: 0 12px; font-size: 0.8rem; }
}
