@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,700&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&display=swap');

/* ==========================================================================
   ✨ 1. VARIABLES & PALETA
   ========================================================================== */
:root {
    --bg-main: #060a14;
    --bg-surface: #0c1326;
    --bg-surface-alt: #111a33;
    
    --primary: #38bdf8;
    --primary-light: #7dd3fc;
    --primary-glow: rgba(56, 189, 248, 0.45);
    --primary-hover: #0284c7;

    --gold: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.4);
    --purple: #c084fc;
    --purple-glow: rgba(192, 132, 252, 0.35);
    --emerald: #34d399;
    --emerald-glow: rgba(52, 211, 153, 0.4);

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(56, 189, 248, 0.16);
    --border-hover: rgba(56, 189, 248, 0.45);

    --radius-full: 9999px;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   🌌 2. AURAS AMBIENTALES & SCROLLBAR
   ========================================================================== */
#canvas-celestial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

.aurora-blur {
    position: fixed;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
    animation: auraFloat 20s infinite alternate ease-in-out;
}

.aurora-1 { top: -10%; left: -10%; background: radial-gradient(circle, var(--primary), transparent 70%); }
.aurora-2 { bottom: -15%; right: -10%; background: radial-gradient(circle, var(--purple), transparent 70%); animation-delay: -7s; }
.aurora-3 { top: 40%; right: 25%; width: 30vw; height: 30vw; background: radial-gradient(circle, var(--gold), transparent 70%); opacity: 0.08; animation-delay: -14s; }

@keyframes auraFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 35px) scale(1.12); }
    100% { transform: translate(-40px, 45px) scale(0.92); }
}

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #050811; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.4), rgba(192, 132, 252, 0.3));
    border-radius: 10px;
    border: 2px solid #050811;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--primary), var(--purple)); }

#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--purple), var(--gold));
    box-shadow: 0 0 12px var(--primary);
    width: 0%;
    z-index: 9999;
}

/* ==========================================================================
   📐 3. ESTRUCTURA Y CONTENEDORES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.secao {
    padding: 5.5rem 0;
    position: relative;
    z-index: 2;
}

.bg-alt {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.secao-cabecalho {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.subtitulo-secao {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 12px var(--primary-glow);
}

.titulo-secao {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    color: #ffffff;
}

.desc-secao {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   🧭 4. NAVBAR DESPEJADA Y EQUILIBRADA
   ========================================================================== */
.navbar {
    background: rgba(11, 19, 37, 0.82) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    width: 100%;
    transition: var(--transition);
}

.navbar.scrolled-nav {
    background: rgba(6, 10, 20, 0.95) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-bottom-color: var(--border-hover);
}

.nav-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-right: 1.5rem;
}

.brand strong {
    color: var(--text-main);
}

.cross-icon {
    font-size: 1.4rem;
    color: var(--primary);
    text-shadow: 0 0 14px var(--primary-glow);
    animation: crossPulse 3.5s infinite ease-in-out;
}

@keyframes crossPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.link-destaque-adn {
    color: var(--purple) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px var(--purple-glow);
}

.btn-sala-nav {
    background: rgba(52, 211, 153, 0.12) !important;
    color: var(--emerald) !important;
    border: 1px solid rgba(52, 211, 153, 0.35) !important;
    padding: 0.4rem 0.95rem !important;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}

.btn-sala-nav:hover {
    background: rgba(52, 211, 153, 0.25) !important;
    border-color: var(--emerald) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 25px var(--emerald-glow) !important;
}

.btn-destaque {
    background: rgba(56, 189, 248, 0.15) !important;
    color: var(--primary) !important;
    border: 1px solid rgba(56, 189, 248, 0.35);
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-full);
}

.btn-destaque:hover {
    background: var(--primary) !important;
    color: var(--bg-main) !important;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   ⚡ 5. BOTONES Y SHIMMER
   ========================================================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    color: #040814;
    border: none;
    padding: 0.8rem 1.7rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px -6px rgba(56, 189, 248, 0.55);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -6px rgba(56, 189, 248, 0.75), 0 0 20px rgba(56, 189, 248, 0.35);
}

.btn-secondary {
    background: var(--bg-surface-alt);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 0.8rem 1.7rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

.link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.link-btn:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ==========================================================================
   🌌 6. HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 7.5rem 1.5rem 5.5rem;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: radial-gradient(circle at 50% 15%, rgba(30, 58, 102, 0.4) 0%, var(--bg-main) 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

.tag-versiculo {
    display: inline-block;
    background: rgba(56, 189, 248, 0.08);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.85rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(56, 189, 248, 0.25);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   🔮 7. TARJETAS MÁGICAS & SPOTLIGHT INTERACTIVO (LUZ QUE SIGUE AL CURSOR)
   ========================================================================== */
.card-evento, .card-igreja, .card-oracao, .form-oracao-card, .faq-item, .banner-evento-destaque, .auth-card {
    background: rgba(15, 23, 42, 0.72) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.3s ease !important;
    z-index: 1;
}

/* Haz de luz de seguimiento del ratón */
.card-evento::before, .card-igreja::before, .card-oracao::before, 
.form-oracao-card::before, .banner-evento-destaque::before, .faq-item::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 65%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    border-radius: 50%;
    z-index: 0;
}

.card-evento:hover::before, .card-igreja:hover::before, .card-oracao:hover::before, 
.form-oracao-card:hover::before, .banner-evento-destaque:hover::before, .faq-item:hover::before {
    opacity: 1;
}

.card-evento:hover, .card-igreja:hover {
    transform: translateY(-4px);
    border-color: var(--primary) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 22px rgba(56, 189, 248, 0.28) !important;
}

/* ==========================================================================
   ⏳ 8. BANNER DE PRÓXIMO EVENTO
   ========================================================================== */
.banner-evento-destaque {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 23, 48, 0.92) 100%) !important;
    border: 1px solid rgba(56, 189, 248, 0.35) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.5rem;
    max-width: 1100px;
    margin: -3rem auto 4rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.countdown-grid {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.countdown-item {
    background: rgba(6, 10, 20, 0.85);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    text-align: center;
    min-width: 65px;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.1);
}

.countdown-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    text-shadow: 0 0 12px var(--primary-glow);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

/* ==========================================================================
   🔍 9. BUSCADORES & FILTROS
   ========================================================================== */
.filtro-busca {
    max-width: 620px;
    margin: 0 auto 2.2rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    width: 100%;
}

.filtro-busca input {
    flex: 1;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.85rem 1.5rem;
    color: #fff;
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.filtro-busca input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.btn-buscar {
    background: var(--primary);
    color: var(--bg-main);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.85rem 1.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buscar:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 15px var(--primary-glow);
}

.tags-filtro-container {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag-filtro {
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tag-filtro.ativa, .tag-filtro:hover {
    background: rgba(56, 189, 248, 0.18);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   ⛪ 10. GRID DE IGLESIAS & EVENTOS
   ========================================================================== */
.grid-igrejas, .eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.6rem;
    width: 100%;
}

.card-igreja, .card-evento {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.card-igreja-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card-igreja-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.evento-tag {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

.tag-culto {
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.tag-vigilia {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.tag-disc {
    background: rgba(34, 197, 94, 0.15);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

/* ==========================================================================
   💬 11. ACORDEÓN DE PREGUNTAS (FAQ)
   ========================================================================== */
.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.faq-item {
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.4) !important;
}

.faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.6rem;
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    z-index: 1;
}

.icon-toggle {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .icon-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.6rem 1.4rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    display: none;
    position: relative;
    z-index: 1;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   🙏 12. MURO DE ORACIÓN
   ========================================================================== */
.oracao-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
}

.form-oracao-card {
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.form-oracao-card h3 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.muro-pedidos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 540px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.card-oracao {
    border-left: 4px solid var(--primary) !important;
    padding: 1.4rem;
}

.card-oracao:hover {
    border-left-color: var(--gold) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(251, 191, 36, 0.18) !important;
}

/* ==========================================================================
   📝 13. CAMPOS DE FORMULARIO
   ========================================================================== */
.campo {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    text-align: left;
    width: 100%;
    position: relative;
    z-index: 1;
}

.campo label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.campo input, .campo textarea, .campo select {
    background: rgba(11, 17, 32, 0.85);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.1rem;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.campo input:focus, .campo textarea:focus, .campo select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
    background: rgba(11, 19, 37, 0.98);
}

/* ==========================================================================
   🔐 14. LOGIN & REGISTRO CENTRADO
   ========================================================================== */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
}

.auth-card {
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.15);
    position: relative;
    z-index: 10;
}

.brand-link {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1rem;
    text-shadow: 0 0 12px var(--primary-glow);
}

.auth-card h2 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.auth-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.auth-divisor {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.4rem 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.auth-divisor hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--border);
}

.auth-divisor span {
    padding: 0 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.7rem;
}

.btn-google {
    width: 100%;
    background: #ffffff;
    color: #1e293b;
    border: 1px solid var(--border);
    padding: 0.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.92rem;
    font-family: inherit;
}

.btn-google:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.auth-switch {
    margin-top: 1.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   ⚖️ 15. PIE DE PÁGINA EXPANDIDO
   ========================================================================== */
.footer {
    background: #050811;
    border-top: 1px solid var(--border);
    padding: 4.5rem 0 0;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 1rem 0;
    max-width: 380px;
}

.footer-verse {
    font-size: 0.82rem;
    color: var(--primary);
    font-style: italic;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.75rem 0;
    background: rgba(3, 6, 12, 0.8);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.card-loader {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

/* Partículas al hacer clic */
.click-spark {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, #fff, var(--primary));
    box-shadow: 0 0 10px var(--primary);
    z-index: 99999;
    animation: sparkFade 0.65s ease-out forwards;
}

@keyframes sparkFade {
    0% { transform: scale(1) translate(0, 0); opacity: 1; }
    100% { transform: scale(0.2) translate(var(--tx), var(--ty)); opacity: 0; }
}

/* ==========================================================================
   📱 16. RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 868px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(6, 10, 20, 0.97) !important;
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }

    .nav-links.aberto {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .oracao-wrapper {
        grid-template-columns: 1fr;
    }

    .banner-evento-destaque {
        padding: 1.8rem;
    }
}