   
        :root {
            --primary: #0F2573;
            --secondary: #266CA9;
            --accent-light: #ADE1FB;
            --accent-dark: #041D56;
            --neutral-light: #F8F9FA;
            --neutral-white: #FFFFFF;
            --neutral-gray: #E9ECEF;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 700;
        }
        
        /* Header Styles Mejorados */
        .hero-section {
            height: 100vh;
            background: linear-gradient(135deg, #f1eeee, #08236d, #0e1942);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .sky-gradient {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent-light) 0%, var(--secondary) 40%, var(--primary) 80%, var(--accent-dark) 100%);
            opacity: 0.8;
            animation: skyShift 20s infinite alternate;
        }
        
        @keyframes skyShift {
            0% { opacity: 0.7; }
            100% { opacity: 0.9; }
        }
        
        .clouds {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.2" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            animation: cloudMove 30s linear infinite;
        }
        
        @keyframes cloudMove {
            0% { background-position: 0 0; }
            100% { background-position: 100% 0; }
        }
        
        .heavenly-gate {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }
        
        .gate-left, .gate-right {
            position: absolute;
            width: 40%;
            height: 80%;
            background: linear-gradient(45deg, rgba(171, 218, 241, 0.1), rgba(15, 37, 115, 0.3));
            border: 2px solid rgba(173, 225, 251, 0.5);
            box-shadow: 0 0 30px rgba(173, 225, 251, 0.3);
            transition: transform 2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }
        
        .gate-left {
            left: 0;
            border-right: none;
            transform-origin: left center;
        }
        
        .gate-right {
            right: 0;
            border-left: none;
            transform-origin: right center;
        }
        
        .hero-section:hover .gate-left {
            transform: rotateY(-30deg);
        }
        
        .hero-section:hover .gate-right {
            transform: rotateY(30deg);
        }
        
        .gate-icon {
            font-size: 5rem;
            color: var(--accent-light);
            text-shadow: 0 0 20px rgba(173, 225, 251, 0.8);
            animation: pulse 3s infinite alternate;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.1); opacity: 1; }
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 800px;
        }
        
        .church-logo {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 20;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-circle {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .logo-text {
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }
        
        .verse-highlight {
            font-style: italic;
            font-size: 1.2rem;
            margin-top: 2rem;
            border-left: 3px solid var(--accent-light);
            padding-left: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .verse-highlight::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            animation: shimmer 5s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            z-index: 10;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }
        
        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary);
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .bg-light-custom {
            background-color: var(--neutral-light);
        }
        
        .bg-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--accent-dark));
            color: white;
        }
        
        /* Timeline Mejorado */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--secondary), var(--primary));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -13px;
            background-color: white;
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        /* Cards Mejoradas */
        .card-custom {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            height: 100%;
            background: white;
        }
        
        .card-custom:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .card-header-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .card-header-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .card-custom:hover .card-header-custom::before {
            transform: translateX(100%);
        }
        
        .card-body-custom {
            padding: 2rem;
        }
        
        /* Cuban Heritage Section */
        .cuban-heritage {
            background: linear-gradient(rgba(15, 37, 115, 0.85), rgba(15, 37, 115, 0.85)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="50" height="50" x="0" y="0" fill="%23266CA9" opacity="0.2"/><rect width="50" height="50" x="50" y="50" fill="%23266CA9" opacity="0.2"/></svg>');
            background-size: cover;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cuban-heritage::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ADE1FB" opacity="0.05" d="M20,20 Q40,5 60,20 T100,20 Q80,35 60,20 T20,20"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) translateX(0); }
            100% { transform: translateY(-100px) translateX(50px); }
        }
        
        .cuban-icon {
            font-size: 3rem;
            color: var(--accent-light);
            margin-bottom: 1rem;
            transition: transform 0.5s ease;
        }
        
        .cuban-icon:hover {
            transform: rotate(15deg) scale(1.2);
        }
        
        /* Interactive Elements */
        .testimonial-carousel .carousel-item {
            padding: 2rem;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            margin: 0 1rem;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 5rem;
            color: var(--accent-light);
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid var(--secondary);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .prayer-form {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .prayer-form:hover {
            transform: translateY(-5px);
        }
        
        .verse-of-day {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        .verse-of-day::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
            animation: twinkle 10s infinite linear;
        }
        
        @keyframes twinkle {
            0% { opacity: 0.3; }
            50% { opacity: 0.7; }
            100% { opacity: 0.3; }
        }
        
        /* Footer */
        .footer {
            background: var(--accent-dark);
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: white;
            text-shadow: 0 0 5px rgba(255,255,255,0.5);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatAround 15s infinite linear;
            z-index: 1;
        }
        
        @keyframes floatAround {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -20px) rotate(90deg); }
            50% { transform: translate(0, -40px) rotate(180deg); }
            75% { transform: translate(-20px, -20px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .right {
                left: 0;
            }
            
            .gate-left, .gate-right {
                width: 45%;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content h2 {
                font-size: 1.5rem;
            }
        }
    
   
