
        /* Estilos generales y del fondo fijo */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: #ffffff;
        }

        .fondo-fijo {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1; /* Envía la imagen detrás de todo el contenido */
            background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2608/14/photo/fondopagina-dcad.png');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Contenido de prueba para verificar el scroll */
        .contenido {
            padding: 50px;
            max-width: 800px;
            margin: 0 auto;
        }

        section {
            background: rgba(0, 0, 0, 0.7);
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
        }
    