        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
        }

        .content-overlay {
            position: relative;
            z-index: 1;
            background-color: rgba(255, 255, 255, 0.9);
        }

        body {
            background-color: rgba(0, 0, 0, 0.5);
        }

        /* Fallback para móviles */
        @media (max-width: 768px) {
            .video-background {
                object-fit: cover;
                width: 100%;
                height: 100%;
                position: fixed;
            }
        }