
/*//////////////// barra superior ////////////////////////////////////////////////////*/

        /* ESTILOS PRINCIPALES */
        .barra--superior {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-color: rgb(231, 231, 231);
            overflow: hidden;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
        }

        .contenedor-deslizante {
            display: flex;
            animation: desplazar 30s linear infinite;
            white-space: nowrap;
        }

        .texto-item {
            padding: 0 40px;
            font-size: small;
            color: #333;
            flex-shrink: 0;
        }

        /* ANIMACIÓN PERFECTA */
        @keyframes desplazar {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .iconos {
            position: absolute;
            top: 30px;
            right: 20px;
            display: flex;
            gap: 10px;
        }