:root {
    --bg: #030305;
    --text: #ffffff;
    --text-muted: #94a3b8;
    --primary: #3b82f6;
    --secondary: #8b5cf6;
    --gold: #fbbf24;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    /* --- PROTECCIÓN ANTI-COPIA --- */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --- FONDO AURORA --- */
.aurora-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.aurora-blob {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3;
}
.blob-1 { top: -10%; right: 0; width: 50vw; height: 50vw; background: var(--primary); animation: float 10s infinite alternate; }
.blob-2 { bottom: 0; left: -10%; width: 60vw; height: 60vw; background: var(--secondary); animation: float 12s infinite alternate-reverse; }
.blob-3 { top: 40%; left: 40%; width: 30vw; height: 30vw; background: var(--gold); opacity: 0.15; animation: pulse 8s infinite; }

/* --- NAVEGACIÓN (EL TABLERITO FLOTANTE) --- */
.glass-nav {
    position: fixed;
    top: 20px; /* Separado un poco del borde superior */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 20, 0.85); /* Un poco más oscuro para leer mejor */
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 9999; /* SIEMPRE ARRIBA DE TODO */
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    width: 90%; /* Ancho adaptable */
    max-width: 500px;
    justify-content: space-between;
}

.nav-brand { font-weight: 900; letter-spacing: 2px; color: #fff; font-size: 1.1rem; }

.nav-links { display: flex; gap: 5px; }

.nav-item {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item i { font-size: 1.1rem; }
.nav-item span { display: none; } /* En celular solo iconos */
@media (min-width: 768px) { .nav-item span { display: block; } }

.nav-item:hover, .nav-item.active {
    background: var(--glass-highlight);
    color: #fff;
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

/* --- HERO --- */
.hero-section {
    height: 100vh; /* Pantalla completa */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    padding-top: 80px; /* Espacio para que el menú no tape el título */
}

.badge-location {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.modern-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat-box { text-align: center; }
.stat-num { display: block; font-weight: 900; font-size: 1.5rem; color: #fff; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; background: var(--glass-border); height: 40px; }

/* --- CONTENIDO --- */
.content-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-title { font-size: 2rem; margin-bottom: 5px; }
.section-subtitle { color: var(--text-muted); }

/* Grid Moderno */
.grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.glass-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }

/* Tarjeta Destacada (Beneficio) */
.highlight-glow {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.05), transparent);
    border-color: rgba(251, 191, 36, 0.2);
}
.card-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold); color: #000;
    font-size: 0.6rem; font-weight: 800; padding: 3px 8px; border-radius: 4px;
}

.card-icon-wrapper {
    font-size: 2rem; color: var(--gold); margin-bottom: 20px;
    background: rgba(251, 191, 36, 0.1); width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center; border-radius: 16px;
}
.blue-icon { color: var(--primary); background: rgba(59, 130, 246, 0.1); }
.purple-icon { color: var(--secondary); background: rgba(139, 92, 246, 0.1); }

.glass-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.glass-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Horarios */
.schedule-container { display: flex; flex-direction: column; gap: 15px; }

.schedule-row {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 16px;
    gap: 20px;
}

.highlight-row { border-color: rgba(251, 191, 36, 0.3); background: rgba(251, 191, 36, 0.02); }

.time-col { text-align: center; min-width: 90px; }
.time-col .day { display: block; font-size: 0.7rem; font-weight: 700; color: var(--text-muted); }
.time-col .time { font-size: 1.1rem; font-weight: 800; color: #fff; }

.info-col { flex-grow: 1; }
.info-col h4 { font-size: 1.1rem; margin-bottom: 4px; }
.info-col .verse { font-size: 0.9rem; color: var(--text-muted); font-style: italic; }

.icon-col { font-size: 1.5rem; color: var(--glass-border); }

/* Pastor */
.pastor-card {
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.profile-image-placeholder {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: linear-gradient(135deg, #333, #111);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--text-muted);
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #000;
    padding: 12px 30px; border-radius: 30px;
    text-decoration: none; font-weight: 700; margin-top: 20px;
    transition: 0.3s;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(255,255,255,0.3); }

/* Crédito Invisible */
.subtle-credit {
    text-align: center; font-size: 0.6rem; opacity: 0.2; padding: 40px 0;
}

/* Animaciones */
@keyframes float { 0% { transform: translate(0,0); } 100% { transform: translate(30px, 50px); } }
@keyframes pulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.3; } }

@media (max-width: 768px) {
    .modern-title { font-size: 2.5rem; }
    .schedule-row { flex-direction: column; text-align: center; }
    .nav-links span { display: none; }
}