      /* Reset y configuración base */
        :root {
            --primary-color: #000000;
            --secondary-color: #ffd700;
            --text-color: #333333;
            --background-color: #ffffff;
            --accent-color: #ff4d4d;
            --transition-speed: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.6;
            overflow-x: hidden;
            color: var(--text-color);
            background-color: var(--background-color);
        }

        /* Header y Navegación */
        .header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
            color: #ffffff;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all var(--transition-speed) ease;
        }

        .header.scrolled {
            padding: 0.5rem 0;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            transition: all var(--transition-speed) ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 40px;
            width: auto;
        }

        .logo:hover {
            color: var(--secondary-color);
            transform: translateY(-2px);
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all var(--transition-speed) ease;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: all var(--transition-speed) ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--secondary-color);
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Menú Hamburguesa */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 5px 0;
            transition: all var(--transition-speed) ease;
        }

        /* Sección Hero */
        .hero {
            height: 80vh;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            filter: brightness(0.8);
            transform: scale(1.1);
            animation: zoomOut 20s forwards;
        }

        @keyframes zoomOut {
            from { transform: scale(1.1); }
            to { transform: scale(1); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            padding: 2rem;
            background: rgba(0,0,0,0.6);
            border-radius: 10px;
            max-width: 800px;
            margin: 0 20px;
            backdrop-filter: blur(5px);
            animation: fadeIn 1s ease;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .hero-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--secondary-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all var(--transition-speed) ease;
            text-shadow: none;
        }

        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Contenido Principal */
        .main-content {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 20px;
        }

        .section {
            margin-bottom: 6rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            color: var(--primary-color);
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            position: relative;
            font-size: 2.5rem;
            text-align: center;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--secondary-color);
        }

        .section-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .card {
            background: #ffffff;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all var(--transition-speed) ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        /* Formulario de Contacto */
        .contact-form {
            display: grid;
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            position: absolute;
            left: 1rem;
            top: 0.8rem;
            color: #666;
            transition: all var(--transition-speed) ease;
            pointer-events: none;
        }

        .form-group input:focus ~ label,
        .form-group input:valid ~ label,
        .form-group textarea:focus ~ label,
        .form-group textarea:valid ~ label {
            top: -0.5rem;
            left: 0.5rem;
            font-size: 0.8rem;
            color: var(--secondary-color);
            background: #ffffff;
            padding: 0 0.5rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: all var(--transition-speed) ease;
            background: transparent;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
        }

        .contact-form button {
            background: var(--primary-color);
            color: #ffffff;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all var(--transition-speed) ease;
        }

        .contact-form button:hover {
            background: var(--secondary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
            color: #ffffff;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary-color);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-section {
            padding: 1rem;
        }

        .footer-section h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #ffffff;
            margin-bottom: 0.8rem;
            text-decoration: none;
            transition: all var(--transition-speed) ease;
            display: block;
        }

        .footer-section a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section a i {
            width: 20px;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-bottom p {
            margin-bottom: 1rem;
        }

        .footer-bottom a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: all var(--transition-speed) ease;
        }

        .footer-bottom a:hover {
            color: #ffffff;
        }

        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .section h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
                z-index: 1001;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max width: 400px;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                padding: 80px 40px;
                transition: all var(--transition-speed) ease;
                justify-content: flex-start;
                gap: 2rem;
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(8px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -5px);
            }

            .hero {
                height: 60vh;
                margin-top: 60px;
            }

            .hero-content {
                padding: 1.5rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .section {
                margin-bottom: 4rem;
            }

            .section h2 {
                font-size: 1.8rem;
            }

            .card {
                padding: 1.5rem;
            }

            .footer-section {
                text-align: center;
            }

            .footer-section h3::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-section a {
                justify-content: center;
            }
        }
        
            .swiper-container {
        width: 100%;
        height: 500px;
        margin: 2rem 0;
    }

    .swiper-slide {
        position: relative;
        overflow: hidden;
    }

    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .swiper-slide:hover img {
        transform: scale(1.05);
    }

    .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .swiper-slide:hover .slide-content {
        transform: translateY(0);
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--secondary-color);
    }

    .swiper-pagination-bullet {
        background: var(--secondary-color);
    }

    .swiper-pagination-bullet-active {
        background: var(--primary-color);
    }
    
    /* Estilos para la sección de eventos */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.evento-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.evento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.evento-image {
    position: relative;
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
    overflow: hidden;
    background: #f5f5f5; /* Color de fondo mientras carga la imagen */
}

.evento-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Cambiado de 'cover' a 'contain' */
    transform: translate(-50%, -50%); /* Centra la imagen */
    transition: transform 0.3s ease;
}

/* Opcional: efecto hover suave */
.evento-card:hover .evento-image img {
    transform: translate(-50%, -50%) scale(1.05);
}

.evento-content {
    padding: 1.5rem;
}

.evento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.evento-fecha {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background: #f5f5f5;
    border-radius: 20px;
}

.evento-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-ver-mas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ver-mas:hover {
    background: #e6c200;
    transform: translateX(5px);
}

.eventos-footer {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}