.orchestra-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 40px auto;
            gap: 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        /* Lado Izquierdo - Imagen */
        .left-panel {
            background: linear-gradient(135deg, #1a1d3a 0%, #2a2d5a 100%);
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .title-section {
            margin-bottom: 30px;
        }

        .main-title {
            font-size: 3rem;
            font-weight: 300;
            color: #d4af37;
            line-height: 1.2;
            margin-bottom: 20px;
            text-align: left;
        }

        .title-divider {
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #d4af37, transparent);
            margin: 20px 0;
        }

        .subtitle {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .orchestra-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            margin-bottom: 30px;
        }

        .event-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 20px;
        }

        .event-card {
            background-color: #ffd700;
            padding: 20px;
            text-align: center;
            border-radius: 4px;
        }

        .event-card h3 {
            color: #1a1d3a;
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .event-card p {
            color: #1a1d3a;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* Lado Derecho - Video */
        .right-panel {
            background: linear-gradient(135deg, #1a1d3a 0%, #2a2d5a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .video-container {
            width: 100%;
            max-width: 640px;
            aspect-ratio: 16 / 9;
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .orchestra-section {
                grid-template-columns: 1fr;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .left-panel {
                padding: 40px 30px;
            }

            .event-info {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .left-panel {
                padding: 30px 20px;
            }

            .event-card h3 {
                font-size: 1.1rem;
            }

            .event-card p {
                font-size: 0.85rem;
            }
        }