    .fixed-menu {
        position: fixed;
        padding-top: 60px;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    .barra-fija {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #eb582a; /* azul oscuro corporativo */
        color: white;
        z-index: 9999;
        padding: 0% 0% 0% 3%;
        font-family: 'Poppins', sans-serif;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    @media (max-width: 768px) {
        .barra-fija {
            flex-direction: column;
            text-align: center;
            padding: 15px;
        }
    }
 