/* Importar tipografías de Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

        /* Reset y configuración base */
        * {
            margin: 0;
            padding: 0;
        }

        :root {
            /* Paleta de colores */
            --primary-deep-blue: #0428a6;
            --primary-royal-blue: #2a6bbe;
            --primary-gold: #d4a237;
            --primary-warm-gold: #f8ab34;
            --accent-burgundy: #410f67;
            --accent-cream: #fef7ed;
            
            /* Colores neutros sofisticados */
            --primary-dark: #0f172a;
            --secondary-dark: #1e293b;
            --tertiary-dark: #334155;
            --text-white: #ffffff;
            --text-cream: #fef7ed;
            --text-gray: #e2e8f0;
            --text-medium-gray: #94a3b8;
            --text-dark-gray: #475569;
            --text-dark: #1e293b;
            --overlay-dark: rgba(15, 23, 42, 0.85);
            --overlay-light: rgba(254, 247, 237, 0.95);
            
            /* Tipografías elegantes */
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Inter', sans-serif;
            --font-accent: 'Crimson Text', serif;
            
            /* Sombras y efectos */
            --shadow-soft: 0 4px 20px rgba(15, 23, 42, 0.08);
            --shadow-medium: 0 8px 30px rgba(15, 23, 42, 0.12);
            --shadow-strong: 0 15px 50px rgba(15, 23, 42, 0.2);
            --border-radius: 12px;
            --border-radius-lg: 20px;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
            font-weight: 400;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Pantalla de carga elegante */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 50%, var(--primary-gold) 100%);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            transform: scale(1.1);
        }

        .loading-content {
            text-align: center;
            color: var(--text-white);
            animation: fadeInUp 1s ease-out;
        }

        .loading-logo {
            width: 150px;
            height: 150px;
            margin: 0 auto 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px solid rgba(255, 255, 255, 0.2);
            animation: logoFloat 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .loading-logo::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 2s linear infinite;
        }

        .loading-logo img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            filter: brightness(1.2);
            position: relative;
            z-index: 1;
        }

        .loading-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 2px;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
        }

        .loading-subtitle {
            font-family: var(--font-accent);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-style: italic;
            opacity: 0.9;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.2);
            border-top: 4px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }

        .loading-progress {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            margin: 2rem auto 0;
            overflow: hidden;
            position: relative;
        }

        .loading-progress-bar {
            width: 0%;
            height: 100%;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-warm-gold));
            border-radius: 2px;
            animation: progressBar 3s ease-out forwards;
            position: relative;
        }

        .loading-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: progressShimmer 1.5s ease-in-out infinite;
        }

        /* Animaciones para la pantalla de carga */
        @keyframes logoFloat {
            0%, 100% {
                transform: translateY(0px) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.02);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes progressBar {
            0% { width: 0%; }
            20% { width: 15%; }
            40% { width: 35%; }
            60% { width: 60%; }
            80% { width: 85%; }
            100% { width: 100%; }
        }

        @keyframes progressShimmer {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

/* Navegación elegante */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            z-index: 1000;
            padding: 1.2rem 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(15, 23, 42, 0.98);
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .nav-logo .logo-image {
            height: 55px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
            filter: brightness(1.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-logo .logo-image:hover {
            filter: brightness(1.2);
            transform: scale(1.02);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: var(--text-cream);
            text-decoration: none;
            font-weight: 500;
            font-family: var(--font-body);
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.8rem 0;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-gold);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-warm-gold));
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Hero Section con video de fondo */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 5rem;
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }


        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(4, 40, 166, 0.8) 0%, 
                rgba(42, 107, 190, 0.7) 35%, 
                rgba(65, 15, 103, 0.7) 70%, 
                rgba(212, 175, 55, 0.6) 100%);
            z-index: 2;
        }

        .hero-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('banner/home.mp4');
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: var(--text-white);
            max-width: 900px;
            padding: 0 2rem;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 2px;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-family: var(--font-accent);
            font-size: 1.8rem;
            margin-bottom: 3rem;
            color: var(--text-cream);
            line-height: 1.6;
            font-style: italic;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-btn {
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: var(--border-radius-lg);
            font-size: 1.1rem;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            min-width: 200px;
            box-shadow: var(--shadow-medium);
        }

        .hero-btn.primary {
            background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-warm-gold) 100%);
            color: var(--text-white);
        }

        .hero-btn.primary:hover {
            background: linear-gradient(135deg, var(--primary-warm-gold) 0%, var(--primary-gold) 100%);
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
        }

        .hero-btn.secondary {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
        }

        .hero-btn.secondary:hover {
            background: var(--primary-royal-blue);
            border-color: var(--primary-royal-blue);
            color: var(--text-white);
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            color: var(--text-white);
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .hero-scroll:hover {
            color: var(--primary-gold);
        }
        
        /*Seccion pastores */
        .pastores-bienvenida {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.pastores-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pastores-imagen {
    flex: 1;
    max-width: 400px;
}

.pastores-imagen img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pastores-texto {
    flex: 1;
}

.pastores-texto h2 {
    font-family: var(--font-heading);
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.saludo-pastores {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.firma-pastores {
    font-family: var(--font-accent);
    font-size: 1.1em;
    color: #2c3e50;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .pastores-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pastores-imagen {
        max-width: 100%;
    }
    
    .pastores-texto h2 {
        font-size: 2em;
    }
}

        /* Video Section mejorada */
        .video-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            text-align: center;
            color: var(--text-white);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--text-white);
            letter-spacing: 1.5px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-warm-gold));
            border-radius: 2px;
        }

        .section-subtitle {
            font-family: var(--font-accent);
            font-size: 1.3rem;
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            background: var(--secondary-dark);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .main-video {
            width: 100%;
            height: auto;
            min-height: 500px;
            display: block;
        }

        .video-info {
            padding: 2rem;
            text-align: left;
            background: rgba(30, 41, 59, 0.8);
            backdrop-filter: blur(10px);
        }

        .video-title {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 0.8rem;
        }

        .video-description {
            color: var(--text-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .video-date {
            color: var(--primary-gold);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .video-duration {
            color: var(--text-medium-gray);
            font-size: 0.9rem;
        }

        /* Three Columns Section mejorada */
        .three-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            min-height: 600px;
            box-shadow: var(--shadow-strong);
        }

        .column {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-white);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .campus-column {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/Img/iglesia.jpeg');
        }

        .growth-column {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .contact-column {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
        }

        .column-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--overlay-dark);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .column:hover .column-overlay {
            background: rgba(15, 23, 42, 0.4);
        }

        .column:hover {
            transform: scale(1.02);
        }

        .column-content {
            position: relative;
            z-index: 2;
            padding: 3rem 2rem;
            max-width: 350px;
        }

        .column-icon {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.15);
            border: 3px solid var(--primary-gold);
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--primary-gold);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .column:hover .column-icon {
            background: var(--primary-gold);
            color: var(--text-white);
            transform: scale(1.1) rotate(5deg);
            border-color: var(--text-white);
            box-shadow: var(--shadow-medium);
        }

        .column h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            letter-spacing: 0.5px;
            text-shadow: 2px 2px 4px rgba(15, 23, 42, 0.6);
        }

        .column p {
            margin-bottom: 2.5rem;
            color: var(--text-cream);
            line-height: 1.7;
            font-family: var(--font-body);
            font-size: 1.1rem;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(15, 23, 42, 0.6);
        }

        .column-btn {
            background: transparent;
            color: var(--text-white);
            border: 2px solid var(--text-white);
            padding: 1rem 2rem;
            border-radius: var(--border-radius-lg);
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-shadow: 1px 1px 2px rgba(15, 23, 42, 0.6);
        }

        .column-btn:hover {
            background: var(--primary-gold);
            border-color: var(--primary-gold);
            color: var(--text-white);
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        /* Prayer Section */
        .prayer-section {
            padding: 8rem 0;
            background: linear-gradient(135deg, var(--accent-cream) 0%, #fefefe 100%);
            color: var(--text-dark);
            position: relative;
        }

        .prayer-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .prayer-content h2 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
            color: var(--primary-dark);
            letter-spacing: 1.5px;
            position: relative;
        }

        .prayer-content h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-warm-gold));
            border-radius: 2px;
        }

        .prayer-content > p {
            font-family: var(--font-accent);
            font-size: 1.3rem;
            margin-bottom: 4rem;
            color: var(--text-dark-gray);
            line-height: 1.7;
            font-style: italic;
        }

        .prayer-form {
            display: grid;
            gap: 2rem;
            text-align: left;
            background: var(--text-white);
            padding: 3rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-medium);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--text-dark);
            font-family: var(--font-body);
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        .form-group input,
        .form-group textarea {
            padding: 1.2rem 1.5rem;
            border: 2px solid var(--text-gray);
            border-radius: var(--border-radius);
            background: var(--accent-cream);
            color: var(--text-dark);
            font-size: 1rem;
            font-family: var(--font-body);
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            background: var(--text-white);
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
            line-height: 1.6;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
            color: var(--text-white);
            padding: 1.2rem 2.5rem;
            border: none;
            border-radius: var(--border-radius-lg);
            font-weight: 600;
            font-size: 1.1rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            justify-self: center;
            width: fit-content;
            margin: 1.5rem auto 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow-medium);
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--primary-royal-blue) 0%, var(--primary-deep-blue) 100%);
            transform: translateY(-3px);
            box-shadow: var(--shadow-strong);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
            color: var(--text-white);
            padding: 5rem 0 2rem;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-warm-gold));
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-logo .footer-logo-image {
            height: 70px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            margin-bottom: 1.5rem;
            filter: brightness(1.1);
        }

        .footer-logo p {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-cream);
            font-family: var(--font-heading);
            letter-spacing: 1px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
            font-family: var(--font-heading);
            letter-spacing: 1px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            font-family: var(--font-body);
            font-weight: 400;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-column ul li a:hover {
            color: var(--primary-gold);
            padding-left: 8px;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            align-items: center;
        }

        .footer-social a {
            width: 55px;
            height: 55px;
            background: var(--tertiary-dark);
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-warm-gold));
            color: var(--text-white);
            transform: translateY(-3px) scale(1.05);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--tertiary-dark);
        }

        .footer-bottom p {
            color: var(--text-medium-gray);
            font-size: 0.95rem;
            font-family: var(--font-body);
            font-weight: 400;
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Modal de Campus - Estilo elegante */
        .campus-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .campus-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .campus-modal-content {
            background: var(--text-white);
            border-radius: var(--border-radius-lg);
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: var(--shadow-strong);
            border: 1px solid rgba(212, 175, 55, 0.2);
            transform: scale(0.9) translateY(30px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .campus-modal.show .campus-modal-content {
            transform: scale(1) translateY(0);
        }

        .campus-modal-header {
            background: linear-gradient(135deg, var(--primary-deep-blue) 0%, var(--primary-royal-blue) 100%);
            color: var(--text-white);
            padding: 2rem;
            border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
            text-align: center;
            position: relative;
        }

        .campus-modal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .campus-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--text-white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .campus-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .campus-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gold);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--text-white);
            box-shadow: var(--shadow-medium);
            position: relative;
            z-index: 1;
        }

        .campus-title {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .campus-subtitle {
            font-family: var(--font-accent);
            font-size: 1.1rem;
            font-style: italic;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .campus-modal-body {
            padding: 2rem;
        }

        .campus-info-section {
            margin-bottom: 2rem;
        }

        .campus-info-section:last-child {
            margin-bottom: 0;
        }

        .info-section-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-deep-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .info-section-title i {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-warm-gold));
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--text-gray);
        }

        .info-item:last-child {
            border-bottom: none;
        }

        .info-item-icon {
            width: 40px;
            height: 40px;
            background: var(--accent-cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-royal-blue);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .info-item-content {
            flex: 1;
        }

        .info-item-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
            font-size: 0.95rem;
        }

        .info-item-value {
            color: var(--text-dark-gray);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .schedule-day {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem;
            background: var(--accent-cream);
            border-radius: var(--border-radius);
            margin-bottom: 0.5rem;
            border-left: 4px solid var(--primary-gold);
        }

        .schedule-day:last-child {
            margin-bottom: 0;
        }

        .schedule-day-name {
            font-weight: 600;
            color: var(--text-dark);
            font-family: var(--font-body);
        }

        .schedule-day-time {
            color: var(--primary-royal-blue);
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Estilos adicionales para el modal con dos sedes */

/* Contenedor para cada sede */
.campus-sede {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.campus-sede:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.campus-sede:last-child {
    margin-bottom: 0;
}

/* Header de cada sede */
.sede-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.sede-header h3 {
    color: #667eea;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Badge para sede nueva */
.sede-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Ajustes al modal para acomodar dos sedes */
.campus-modal-content {
    max-width: 900px;
    max-height: 85vh;
}

.campus-modal-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
        /* Botones de acción para cada sede */
.campus-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.campus-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.campus-btn.primary {
    background: linear-gradient(135deg, var(--primary-deep-blue), var(--primary-royal-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.campus-btn.primary:hover {
    background: linear-gradient(135deg, #5a6fd8, #6b4190);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.campus-btn.secondary {
    background: #25D366;
    color: white;
}

.campus-btn.secondary:hover {
    background: #20b558;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .campus-modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .campus-sede {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .sede-header h3 {
        font-size: 1.2rem;
    }
    
    .sede-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .campus-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .campus-btn {
        width: 100%;
    }
    
    .campus-modal-body {
        padding: 1rem;
    }
}

        /* Responsive Design - CORREGIDO */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            /* Hero responsive corregido */
            .hero {
                height: 70vh;
                min-height: 500px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.4rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .hero-btn {
                min-width: 250px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .three-columns {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .column {
                min-height: 400px;
            }

            .prayer-content h2 {
                font-size: 2.5rem;
            }

            .prayer-form {
                padding: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .video-container {
                margin: 0 1rem;
            }

            .main-video {
                min-height: 300px;
            }

            .video-info {
                padding: 1.5rem;
            }

            /* Modal responsive */
            .campus-modal-content {
                width: 95%;
                margin: 1rem;
            }

            .campus-modal-header {
                padding: 1.5rem;
            }

            .campus-modal-body {
                padding: 1.5rem;
            }

            .campus-title {
                font-size: 1.6rem;
            }

            .campus-actions {
                flex-direction: column;
            }

            .info-item {
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
                gap: 0.8rem;
            }

            .info-item-icon {
                align-self: flex-start;
            }

            .schedule-day {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .prayer-content h2 {
                font-size: 2rem;
            }

            .column {
                min-height: 350px;
            }

            .column-content {
                padding: 2rem 1.5rem;
            }
        }

        /* SCROLLBAR ELEGANTE PARA EL MODAL */
.campus-modal-content.elegant-scroll::-webkit-scrollbar {
    width: 12px;
}

.campus-modal-content.elegant-scroll::-webkit-scrollbar-track {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.campus-modal-content.elegant-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.8) 0%, 
        rgba(102, 126, 234, 0.8) 50%, 
        rgba(118, 75, 162, 0.8) 100%);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-modal-content.elegant-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(102, 126, 234, 1) 50%, 
        rgba(118, 75, 162, 1) 100%);
    transform: scale(1.05);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Para Firefox */
.campus-modal-content.elegant-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.8) rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .campus-modal-content.elegant-scroll::-webkit-scrollbar {
        width: 8px;
    }
}