  
        .contenedor-menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .item-menu {
            display: flex;
            align-items: center;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            width: calc(35% - 30px);
            transition: transform 0.3s;
        }
        
        .item-menu:hover {
            transform: translateY(-5px);
        }
        
        .imagen-item {
            width: 80px;
            height: 80px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .imagen-item img {
            max-width: 60%;
            max-height: 60%;
        }
        
        .texto-item {
            padding: 15px;
            font-size: 16px;
            color: #333;
            flex-grow: 1;
        }
        
        @media (max-width: 768px) {
            .item-menu {
                width: 100%;
                min-width: auto;
            }
        }