/* Estilos específicos para la galería (sin cambios) */
        .gallery-hero {
            position: relative;
            min-height: 40vh;
            background: linear-gradient(135deg, #0A1628 0%, #1A2A4A 100%);
            padding-top: 300px;
            margin-top: -80px;
        }

        .gallery-filter-btn {
            background: #0F1A2E;
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 9999px;
            padding: 0.5rem 1.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: #C4D0E8;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-filter-btn:hover,
        .gallery-filter-btn.active {
            background: #D4AF37;
            color: #0A1628;
            border-color: #D4AF37;
            transform: translateY(-2px);
        }

        .gallery-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .gallery-item:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
            padding: 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Modal de galería (sin cambios) */
        .gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .gallery-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-image {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            color: #D4AF37;
            cursor: pointer;
            transition: all 0.2s;
            background: none;
            border: none;
        }

        .modal-close:hover {
            transform: scale(1.1);
            color: #F5C842;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(8px);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .modal-nav:hover {
            background: #D4AF37;
            color: #0A1628;
            transform: scale(1.1);
        }

        .modal-prev {
            left: 20px;
        }

        .modal-next {
            right: 20px;
        }

        .modal-caption {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: #D4AF37;
            font-size: 1rem;
            padding: 1rem;
            background: rgba(10, 22, 40, 0.8);
            backdrop-filter: blur(8px);
            margin: 0 auto;
            width: fit-content;
            border-radius: 9999px;
        }

        /* Categorías destacadas */
        .category-card {
            background: linear-gradient(135deg, #0F1A2E 0%, #0A1628 100%);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        .category-card:hover {
            transform: translateY(-5px);
            border-color: #D4AF37;
            box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.3);
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .video-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
        }

        .video-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .video-card:hover img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: #F5C842;
        }

        @media (max-width: 768px) {
            .gallery-item img {
                height: 200px;
            }

            .modal-nav {
                width: 40px;
                height: 40px;
            }

            .gallery-filter-btn {
                padding: 0.4rem 1rem;
                font-size: 0.8rem;
            }
        }