
    @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
    .headerMenu {
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 99;

    }
    .menuCUVO {
        padding-top:5px;
        padding-bottom:5px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        background-color: #000000;
        color: #fff;
        z-index: 102;
    }
    
    /* Logo */
    .menuCUVO .Logo {
        margin: 10px;
    }
    
    .menuCUVO .Logo img {
        width: 35%;
        height: auto;
    }
    
    /* Boton para Abrir Menu */
    .menuCUVO .Menu-Botones {
        position: absolute;
        right: 0;
        width: 75px;
    }
    
    .menuCUVO .Menu-Botones .menuBtn {
        cursor: pointer;
        font-size: 150%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Animacion Boton */
    .menuCUVO .Menu-Botones .fa-bars {
        cursor: pointer;
        opacity: 1;
        transition: opacity 0.5s ease;
    }
    
    .menuCUVO.active .fa-bars {
        opacity: 0;
    }
    
    .menuCUVO .Menu-Botones .fa-times {
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .menuCUVO.active .fa-times {
        opacity: 1;
    }
    
    /* Menu Principal */
    @media screen and (max-width: 768px) {
    
        .menuCUVO .Menu-Opciones {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            height: calc(100vh - 100%);
            background: #000000;
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            border-right: 2px solid #000000;
            z-index: 101;
        }
    
    }
    @media screen and (min-width: 769px) {
    
        .menuCUVO .Menu-Opciones {
            position: absolute;
            top: 100%;
            left: 0;
            width: 350px;
            height: calc(100vh - 100%);
            background: #000000;
            transform: translateX(-100%);
            transition: transform 0.5s ease;
            border-right: 2px solid #000000;
            z-index: 101;
        }
    
    }    
    
    .menuCUVO.active .Menu-Opciones {
        transform: translateX(0%);
    }
    
    /* Menu Slider */
    .menuCUVO .Menu-slider {
        background: #000000;
    }
    
    .menuCUVO .Menu-Opciones .Menu-slider a {
        display: block;
        padding: 1em;
        text-align: center;
        color: #ffff;
        background-color: #000000;
        transition: background-color 0.3s;
        text-decoration: none;
        position: relative; 
    }
    
    .menuCUVO .Menu-Opciones .Menu-slider a:hover {
        font-weight: bold;
        color: #ffff;
        background-color: #131313;
    }
    
    .menuCUVO .Menu-Opciones .Menu-slider a.actual {
        font-weight: bold;
        color: #ffff;
        background-color: #258ffe;
        pointer-events: none;
    }
    
    /* Descripción emergente */
    .menuCUVO .Menu-Opciones .Menu-slider a .descripcion {
        z-index: 1003;
        display: none;
        position: absolute;
        top: 100%;
        transform: translateX(-50%);
        left: 50%;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 5px;
        font-size: 12px;
        width: 100%;
        text-align: center;
        pointer-events: none;
    }
    
    .menuCUVO .Menu-Opciones .Menu-slider a:hover .descripcion {
        display: block;
    }
    
    /* Estilo para el menú deslizante del cliente */
    .menuCUVO .Menu-Opciones .cliente-slider {
        background: #000000;
        width: 100%;
    }
    
    .menuCUVO .Menu-Opciones .cliente-slider a {
        display: block;
        padding: 1em;
        text-align: center;
        color: #fff;
        background-color: #000000;
        transition: background-color 0.3s;
        text-decoration: none;
        position: relative;
    }
    
    .menuCUVO .Menu-Opciones .cliente-slider a:hover {
        font-weight: bold;
        color: #fff;
        background-color: #131313;
    }
    
    .menuCUVO .Menu-Opciones .cliente-slider a.actual {
        font-weight: bold;
        color: #fff;
        background-color: #258ffe;
        pointer-events: none;
    }
    /* Estilo para el submenú */
    .menuCUVO .Menu-Opciones .sub-menu {
        position: absolute;
        top: 0;
        left: 100%;
        background: #000000;
        display: none;
        width: 100%;
        z-index: 100;
    }
    
    .menuCUVO .Menu-Opciones .sub-menu a {
        display: block;
        padding: 1em;
        color: #fff;
        text-decoration: none;
    }
    
    .menuCUVO .Menu-Opciones .sub-menu a:hover {
        background-color: #131313;
    }
    
    /* Mostrar el submenú al pasar el mouse sobre el trigger */
    .menuCUVO .cliente-slider .sub-menu-trigger:hover + .sub-menu {
        display: block;
    }
    
    /* Estilo para el perfil */
    .menuCUVO .Menu-Opciones .profile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top:20px;
        padding-bottom:20px;
        cursor: pointer;
    }

    .menuCUVO .Menu-Opciones .profile:hover {
        color: #fff;
        background-color: #131313;
    }
    
    .menuCUVO .Menu-Opciones .profile img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 10px;
    }
    
    .menuCUVO .Menu-Opciones .profile div {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
